【SQLServer2019管理】备份环境包含数据库

发布时间 2023-12-07 11:52:28作者: HelonTian

恢复报错信息:

sp_configure 值 'contained database authentication' 必须设置为 1 才能 创建 包含的数据库。您可能需要使用 RECONFIGURE 设置 value_in_use。 (Microsoft SQL Server,错误: 12824)

exec sp_configure 'contained database authentication',1
GO
reconfigure;
Go