在 SQL Server 中,恢复模式决定了数据库在发生故障时的恢复行为。设置恢复模式通常涉及更改 SQL Server 服务器的当前恢复模式配置。以下是设置 SQL Server 恢复模式的步骤:
您还可以使用 T-SQL 脚本来设置恢复模式。以下是一个示例脚本:
USE [msdb]
GO
EXEC sp_configure 'show advanced options', 1;
RECONFIGURE;
EXEC sp_configure 'Ole Automation Procedures', 1;
RECONFIGURE;
EXEC sp_configure 'SQL Server Agent XPs', 1;
RECONFIGURE;
EXEC sp_configure '恢复模式', 2; -- 设置为完整恢复模式(2)或批量恢复模式(3)
RECONFIGURE;
EXEC sp_configure 'Ole Automation Procedures', 0;
RECONFIGURE;
EXEC sp_configure 'SQL Server Agent XPs', 0;
RECONFIGURE;
EXEC sp_configure 'show advanced options', 0;
RECONFIGURE;
GO
请注意,将 sp_configure 'recovery mode', 2;
中的 2
替换为 3
可以设置为批量恢复模式。
虽然 SQL Server Configuration Manager 主要用于配置 SQL Server 服务器的物理和逻辑组件,但它也可以用来设置恢复模式。以下是步骤:
请注意,通过 SQL Server Configuration Manager 设置恢复模式通常不是推荐的方法,因为它不直接与数据库级别的恢复模式设置相关联。
通过以上方法,您可以根据需要选择适当的恢复模式来配置 SQL Server 实例。