Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
pprithvi05
Starting Member
3 Posts |
Posted - 2011-05-31 : 08:55:11
|
Hi,I am trying to access pages of table sysindexkeys in sql server 2000.I used the following command to list the pages corresponding to this tableDBCC TRACEON (3604)GODeclare @DBID Int, @TableID IntSelect @DBID = db_id(), @TableID = object_id('sysindexkeys')DBCC ind(@DBID, @TableID, -1)GOBut could not succeed. The tables in the database has indexes and i am also able to view the sysindexkeys table using the query select * from sysindexkeysAre there no data pages allocated to this table in the database? |
|
|
|
|