我有一个SQL2005 Express数据库,我想在同一个实例上创建一个副本。你如何用脚本来做这件事?
我已经有一个用于生成备份的脚本,但恢复失败了......
错误:
Msg 3234,Level 16,State 2,Line 2 逻辑文件'MyDB_data'不是其中的一部分 数据库'MyDB_Test'。使用RESTORE FILELISTONLY列出逻辑文件 名。
Msg 3013,Level 16,State 1, 第2行RESTORE DATABASE正在终止 异常。
解决方案:
RESTORE DATABASE [MyDB_Test]
FROM DISK = 'C:\temp\SQL\MyDB.bak'
WITH
MOVE 'MyDB' TO 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\MyDB_Test.mdf'
, MOVE 'MyDB_log' TO 'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\MyDB_Test_log.ldf'
, REPLACE;
原因:
我第一次尝试时没有正确识别逻辑路径。
答案 0 :(得分:40)
RESTORE FILELISTONLY
是一个信息命令,不需要执行还原。用户可以使用它来确定数据文件的逻辑名称,可以与MOVE
命令一起使用,以将数据库还原到新位置。
根据错误消息的建议,您需要使用RESTORE FILELISTONLY
来查看数据库的逻辑名称。您的恢复命令有这些错误。
以下是您需要做的工作示例:
--backup the database
backup database test1 to disk='c:\test1_full.bak'
-- use the filelistonly command to work out what the logical names
-- are to use in the MOVE commands. the logical name needs to
-- stay the same, the physical name can change
restore filelistonly from disk='c:\test1_full.bak'
--------------------------------------------------
| LogicalName | PhysicalName |
--------------------------------------------------
| test1 | C:\mssql\data\test1.mdf |
| test1_log | C:\mssql\data\test1_log.ldf |
-------------------------------------------------
restore database test2 from disk='c:\test1_full.bak'
with move 'test1' to 'C:\mssql\data\test2.mdf',
move 'test1_log' to 'C:\mssql\data\test2.ldf'
答案 1 :(得分:6)
答案 2 :(得分:0)