Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


When do you create cluster and noncluster index?

Answers were Sorted based on User's Feedback



When do you create cluster and noncluster index?..

Answer / jerry joseph

A table can have 1 clustered index and 249 non-clustered indexes

indexes make sorting efficient

generally clustered index is ideal for the Primary Key

non-clustered indexes are ideal for columns which are used
in sorting (the columns in OrderBy)

Is This Answer Correct ?    3 Yes 1 No

When do you create cluster and noncluster index?..

Answer / monal

Indexes are mainly used for faster retrival of the data
from the table or view.
Primary key is best candidate for creation of clustered
key: reason all the values in Primary Key column would be
unique. Also you can create clustered index on foreign key
column of table which is used quite frequently in the join
condition and on the column which is used frequently in the
where clause of the table.

Is This Answer Correct ?    3 Yes 1 No

When do you create cluster and noncluster index?..

Answer / krimish shah

Table can have only one clusert index. When we create
primary key on a table , it will generate a Cluster index
based on this primary key and physically sort and store the
data in order of clusterd index.

Non Cluster index are used to make search more effiecient
on table for given columns on which we have speicfied non
clustered index. Non cluster index have their own separate
storage.

Is This Answer Correct ?    3 Yes 2 No

When do you create cluster and noncluster index?..

Answer / naren

If there is primary key in table clustered index created by
default ,other wise non cluster index created .

Is This Answer Correct ?    2 Yes 1 No

When do you create cluster and noncluster index?..

Answer / nandkumar karlekar

Create the Clustred index when your data are divided into
some countable infinite limited sets which helps to retrive
the set of date from continus data pages from h/d.
because the clustred index stores data physically.

we can create only one clustred index for a table.

reaming searching field can be included in to the non
clust.. index

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More SQL Server Interview Questions

Can a cursor be updated? If yes, how you can protect which columns are updated?

0 Answers  


What are .mdf files?

0 Answers  


What is sub query and its properties?

0 Answers  


I have cleared sbi clerk examination. I am Bachelor in computer application (BCA) graduate. so which type of question related bca in sbi clerk interviews. pls answers me at sejalvaghela@yahoo.co.in.. and also tell me which type of question asked in sbi clerk interview.

1 Answers  


Explain what is “asynchronous” communication in sql server service broker?

0 Answers  


What is sql stored procedure?

0 Answers  


Mention the differences between sql server and mysql.

0 Answers  


Differences between logshipping and mirroring

1 Answers   Microsoft, Syntel,


create table with fields ID, reserved_by,res_date res_date is datefield like 2010-03-09 00:00:00.000 from 2005 to 2006 any date assume based on res_date need to slect table and display based on month (full jan details in database irrespective of date and year

3 Answers  


How do we return a record set from a Stored Procedure in SQl server 2000?

3 Answers  


What are the results of running this script?

0 Answers  


How fixed length strings are truncated and padded?

0 Answers  


Categories