What are the types of indexes available with SQL Server?
Answers were Sorted based on User's Feedback
Answer / guest
There are basically two types of indexes that we use with
the SQL Server. Clustered and the Non-Clustered.
Is This Answer Correct ? | 12 Yes | 1 No |
Answer / nagabhushan
Indexes are of two types,Clustered Index and non Clustered
Index,when you create Clustee index on tables all the rows
in the tables are stored in the order of the clustered
Index key,So there will one cluster index in the table.Non
Clustered Index have there own storage seperate from the
table data storage.Non Clustered Index is stored in the
form of B-trees.
Is This Answer Correct ? | 8 Yes | 1 No |
When should you use an instead of trigger?
from the table display the 2nd highest salary? and also the least 2nd salay?
Which system tables contain information on privileges granted and privileges obtained
What is the difference between upgrade and migration in sql server?
Explain system views?
How to link up the text file to a Database table?
What is difference beteen Migration and Upgrdation?
After the SQL installation what are the jobs will you configure?
1 Answers G7 CR Technologies, IBM, Satyam,
How many types of dimensions are there and what are they? : sql server analysis services, ssas
What is partition, how will you implement it? : sql server analysis services, ssas
How to create a view with data from multiple tables?
Can we write trigger for view?