Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 SQL Server 2000 中,我注意到sysbojects存在于每个数据库中。每个非系统数据库中的这个和其他系统表是否是该表以及其他系统表的一个分区master sysobjects?
sysbojects
master
sysobjects
不,它不是master..sysobjects表的分区。您会注意到,如果您在用户数据库中创建表:
master..sysobjects
USE whatever; GO CREATE TABLE dbo.floob(splunge INT); GO
该表出现在 中whatever..sysobjects,但没有出现在 中master..sysobjects。
whatever..sysobjects
为什么您现在要学习 SQL Server 2000 元数据?派对有点晚了,不是吗?:-)