答:SQL SERVER查詢數(shù)據(jù)庫(kù)使用情況語(yǔ)句
exec sp_helpdb www_abc_com
mysql 查詢數(shù)據(jù)庫(kù)使用情況語(yǔ)句
SHOW TABLE STATUS FROM db_adc_com
清除事務(wù)日志
backup log [www_domain_com] with no_log
再執(zhí)行:dbcc shrinkfile(2,0)
數(shù)據(jù)庫(kù)改密碼
sp_password "舊密碼","新密碼"
改屬主
sp_changeobjectowner '表名全稱', 'dbo'
查空間大小
sp_helpdb [數(shù)據(jù)庫(kù)名]
查詢數(shù)據(jù)庫(kù)表名, 表的列名
select name from sysobjects where xtype='u'
讀取指定表的所有列名
select name from syscolumns where id=(select max(id) from sysobjects where xtype='u' and name='表名')
查看事務(wù)日志語(yǔ)句