what purpose of Indexing creating? directly we can search
the reqired row with the help of query?what is the use of
indexing?
Answers were Sorted based on User's Feedback
Answer / madhunathanv
Main Purpose of Index creation is the for the Quick
retrieval of data ie.., speed up searching, from the
Table,where by it is created in the page index ,so that
instead of searching out for whole records from the table
when the query is executed it goes to page id and finds the
index id created and retrieves out the data based on
indexid ,so that time it takes becomes less when compared
to non creation of index.
By default when index is not created primary key will be
the default index.
The sysindexes table, which exists in every database,
tracks table and index information
AFAIK
Is This Answer Correct ? | 7 Yes | 1 No |
Answer / d. shyamala
Indexing is helpful when you have data which is used for
retrieval rather than transactions. Indexing results in
quick retrieval of data. But Indexing should be minimized
in the database where you have lots of transactions.
Indexes are of two types Clustered and non-clustered.
Is This Answer Correct ? | 4 Yes | 1 No |
Answer / madhunathanv
Apart from Clustered index def:
Indexes should be used to the column where frequently data
is retrieved.
AFAIK
Is This Answer Correct ? | 1 Yes | 1 No |
Differnces between oracle 9i and sql server?
2 Answers College School Exams Tests, Microsoft,
What is the use of connection object in ado.net?
0 Answers TryTechnicals Pvt Ltd,
What are the main differences between classic ado and ado.net?
What are the advantages using ado.net?
Explain the difference between an ado.net dataset and an ado recordset?
What are basic methods of dataadapter?
What is the use of parameter object?
How to store data in memory?
Which is faster sqldataadapter and sqldatareader?
What is method to get XML and schema from Dataset? getXML() and get Schema ()
What is the significance of CommandBehavior.CloseConnection ?
Explain why edit is not possible in repeater?