首页 / 数据库 / SQLServer / SQL Server2000数据库系统表的应用
SQL Server2000数据库系统表的应用2007-12-261:获取当前数据库中的所有用户表select Name from sysobjects where xtype="u" and status>=02:获取某一个表的所有字段select name from syscolumns where id=object_id("表名")3:查看与某一个表相关的视图、存储过程、函数select a.* from sysobjects a, syscomments b where a.id = b.id and b.text like "%表名%"4:查看当前数据库中所有存储过程select name as 存储过程名称 from sysobjects where xtype="P"5:查询用户创建的所有数据库 select * from master..sysdatabases D where sid not in(select sid from master..syslogins where name="sa")或者select dbid, name AS DB_NAME from master..sysdatabases where sid <> 0x016:查询某一个表的字段和数据类型select column_name,data_type from information_schema.columnswhere table_name = "表名"