In SQL Server 2000 I noticed that the sysbojects exists in each database. Is this and other system tables in each non system database a partition of the master sysobjects table as well as the other system tables?
In SQL Server 2000 I noticed that the sysbojects exists in each database. Is
Share
No, it is not a partition of the
master..sysobjectstable. You’ll notice that if you create a table in a user database:That table shows up in
whatever..sysobjects, but not inmaster..sysobjects.Why are you learning about SQL Server 2000 metadata now? A little late to the party, no? 🙂