数据库
exec sp_helpdb www_abc_com
mysql 查询数据库使用情况语句
SHOW TABLE STATUS FROM db_adc_com
清除事务日志
backup log [www_domain_com] with no_log
再执行:dbcc shrinkfile(2,0)
数据库改密码
sp_password "旧密码","新密码"
改属主
sp_changeobjectowner "表名全称", "dbo"
查空间大小
sp_helpdb [数据库名]
查询数据库表名, 表的列名
select name from sysobjects where xtype="u"
读取指定表的所有列名
select name from syscolumns where id=(select max(id) from sysobjects where xtype="u" and name="表名")
查看事务日志语句