在 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 實例。