我有一个具有文件流的 SQL Server 2008 数据库。
我需要备份此数据库(不包括文件流)并在 SQL Server 2012 上恢复数据库。
我对此进行了研究并发现:
当我按照 URL 的说明在没有文件流的情况下备份数据库并恢复到 SQL Server 2008 时,这很有效。
但是,当我运行脚本以恢复到 2012 年时,出现以下错误:
Msg 3634, Level 16, State 1, Line 3
The operating system returned the error '3(The system cannot find the path specified.)' while attempting 'FindFirstFile' on X
Msg 5520, Level 16, State 1, Line 3
Upgrade of FILESTREAM container ID 65537 in the database ID 10 failed because of container size recalculation error. Examine the previous errorlog entries for errors, and take the appropriate corrective actions.
Msg 5056, Level 16, State 6, Line 3
Cannot add, remove, or modify a file in filegroup 'FileStreamFileGroup' because the filegroup is not online.
Msg 3013, Level 16, State 1, Line 3
RESTORE DATABASE is terminating abnormally.
我认为这与 SQL 将数据库从 2008 年升级到 2012 年有关。
有任何想法吗?任何帮助将非常感激。