摘要:
清理数据库日志 -- 注意清理完成后要运行下面的还原为完全模式 USE [master] GO ALTER DATABASE 数据库名 SET RECOVERY SIMPLE WITH NO_WAIT GO ALTER DATABASE 数据库名 SET RECOVERY SIMPLE --简单模式 阅读全文
摘要:
1 SELECT st.text as sql_statement, 2 qs.creation_time as plan_last_compiled, 3 qs.last_execution_time as plan_last_executed, 4 qs.execution_count as p 阅读全文