what is physical sort data and logical sort data in index?
Answer Posted / rajesh b patil
As it is explained in the Answer #1, The Clustered Index
uses the Physical Sorting, just like the Page Index at the
Beginning of your book, but The Logical sorting means it
will be done with the Non Clustered Indices, as you all know
the data in the server stored on the multi page files,
because the amount of data stored on the database is huge,
So in case of the logical sorting depending upon say query
results the records are at your disposal which you have got
after filtering using a where clause, then the data is
coming from different pages and there is no continuation
like SNO column in case case of select *, So the pages where
the desired data is found are actually will hold the
references, means the record say #3, from page #3, will hold
the address of the Previous record address as well as the
next record address just like your Double Linked List Nodes,
I hope now logical sorting is explained by me here.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Which is the best place or learning center for MS SQL?????In Bangladesh?????
How do we upgrade from SQL Server 6.5 to 7.0 and 7.0 to 2000?
How to list all triggers in the database with sys.triggers in ms sql server?
I create a separate index on each column of a table. What are the advantages and disadvantages of this approach? : Sql server database administration
What are the advantages of passing name-value pairs as parameters?
What is Sqlpaging in SqlServer 2005 ?
Who developed sql server?
Explain how to send email from sql database?
Describe in brief sql server monitoring ways.
What is 1nf 2nf and 3nf?
Where are sql server usernames and passwords stored in the sql server?
When would you use sql joins?
What is executereader?
query processing
What is difference between index and primary key?