TheGreenOne
Programmer
Does SQL Server 2000 tag records in a table with anything to indicate the sequence that the records were inserted?
I have a clustered index on this table.
I understand that as records are added they are not appended to the end of the table, but inserted into the table according to the clustered index.
Now I need to know what sequence that the records were added in. Its too late now to add a sequence column.
I know its a strech, but does sqlserver store, behind the scenes, any information that might help me?
If not the sequence, perhaps the modification date.
I've been searching through the online books, but have not found anything yet. All comments appreciated.
I have a clustered index on this table.
I understand that as records are added they are not appended to the end of the table, but inserted into the table according to the clustered index.
Now I need to know what sequence that the records were added in. Its too late now to add a sequence column.
I know its a strech, but does sqlserver store, behind the scenes, any information that might help me?
If not the sequence, perhaps the modification date.
I've been searching through the online books, but have not found anything yet. All comments appreciated.