backup log 数据库 with no_log --清空日志
dbcc shrinkdatabase( '数据库 ',0,notruncate) --压缩数据库
企业管理器--右键你要压缩的数据库--所有任务--收缩数据库--收缩文件
--选择日志文件--在收缩方式里选择收缩至XXM,这里会给出一个允许收缩到的最小M数,直接输入这个数,确定就可以了
--选择数据文件--在收缩方式里选择收缩至XXM,这里会给出一个允许收缩到的最小M数,直接输入这个数,确定就可以了
删除数据库中表或者清空月表
select 'drop table '+name+';' from sysobjects where name like '%2012%' and xtype=’U’;
select 'truncate table '+name+';' from sysobjects where name like '%2012%' and xtype=’U’;