如何使用命令备份和还原MSSQL数据库?谢谢

如何使用cmd命令备份和还原microsoft sql server数据库?谢谢
2024-12-26 02:51:16
推荐回答(1个)
回答1:

SQL Server 整库备份

E:\>sqlcmd -S "localhost\SQLEXPRESS"
1> use master
2> go
已将数据库上下文更改为 'master'。

备份
1> backup database test to disk='e:\test.dat'
2> go

恢复
1> restore database test from disk='e:\test.dat'
2> go
已为数据库 'test',文件 'Test' (位于文件 1 上)处理了 232 页。
已为数据库 'test',文件 'Test_log' (位于文件 1 上)处理了 2 页。
RESTORE DATABASE 成功处理了 234 页,花费 0.184 秒(9.898 MB/秒)。