Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 c#.Net 中恢复 Sql 的备份(.bak)文件
我可以备份我的数据库,但是当我尝试恢复时,它给了我“正在使用的数据库”的错误
您正在恢复的数据库已经在服务器中。您需要在语句中添加 WITH REPLACE 以替换现有语句。例如
RESTORE DATABASE AdventureWorks FROM DISK = 'C:\AdventureWorks.BAK' WITH REPLACE GO