gpt4 book ai didi

Northwind 数据库安装错误 : Msg 2812, 级别 16,状态 62,第 1 行找不到存储过程 'U'

转载 作者:行者123 更新时间:2023-12-01 08:59:52 24 4
gpt4 key购买 nike

我正在尝试从文件 Northwind.sql 安装示例 Northwind 数据库。当我在 SQL Server Express Management Studio 上运行脚本时,我收到一条错误消息:

消息 2812,第 16 级,状态 62,第 1 行找不到存储过程“U”。

我已经搜索了网络,但找不到易于遵循的解决方法。请问有什么想法吗?我使用的是 Windows 8/SQL Server 2012 Express。

最佳答案

基于 Microsoft here 的回答它需要使用 alter database 代替。

打开脚本并在 2 行之后添加注释。

exec sp_dboption 'Northwind','trunc. log on chkpt.','true'
exec sp_dboption 'Northwind','select into/bulkcopy','true'

然后在其下方添加以下行

alter database Northwind set recovery simple

让它看起来像这样:

-- exec sp_dboption 'Northwind','trunc. log on chkpt.','true'
-- exec sp_dboption 'Northwind','select into/bulkcopy','true'
alter database Northwind set recovery simple

关于Northwind 数据库安装错误 : Msg 2812, 级别 16,状态 62,第 1 行找不到存储过程 'U',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19694092/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com