表数目:select count(1) from sysobjects where xtype='U' 视图数::select count(1) from sysobjects where xtype='V' 存储过程数: select count(1) from sysobjects where xtype='P' 表详细信息:SELECT * FROM sysobjects WHERE xtype = 'U' C = CHECK 约束 D = 默认值或 DEFAULT 约束 F = FORE
在sql查询时,需要关联2个服务器上的不同数据库,只需要在所需查询的表名前加上服务器地址即可. 例如:在 192.168.0.15,8020的db110库 和 192.168.0.150,8082的db120库 中有同一张user表,现需要union这2张表的数据,操作如下: select * from [192.168.0.15,8020].[db110].[dbo].[user] union select * from [192.168.0.150,8082].[db120].[dbo].[