摘要: //服务器硬盘分区大小EXEC master..xp_fixeddrives//查询当前数据库为所有表名select Name from sysobjects where xtype='u' and status>=0//查询当前数据库为存储所有名称select name as 存储过程名称 from sysobjects where xtype='P' AND //获取表名所有字段SELECT c.nameFROM sysobjects tJOIN syscolumns cON t.id = c.idWHERE t.name = '表名' 阅读全文
posted @ 2012-10-15 02:14 bert.zeng 阅读(171) 评论(1) 推荐(0)