Hi,
i have a database in sql 2000. When i open the system table sysindexkeys, I see many records. However, when i use dbcc ind command for this table, i do not get any information regarding the table. i also used DBCC TRACEON (3604)
heres what i did : -
Declare @DBID Int, @TableID Int Select @DBID = db_id(), @TableID = object_id('sysindexkeys') DBCC ind(@DBID, @TableID, -1) GO
This does not give any information.However if i use this command for other tables, I get the page no details for those tables. Can anybody help me figure this out.
Thanks, Jude