且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

尝试还原数据库时收到错误

更新时间:2023-02-02 15:33:55

请检查MSDN网站的语法。

RESTORE(Transact-SQL) [ ^ ]
Please check MSDN site for the syntax.
RESTORE (Transact-SQL)[^]

>

restore database CorruptDemoDataPurityfrom disk=...



如果这是您实际键入的内容,那么您在数据库名称和 FROM 之间缺少空格:


If that's what you actually typed, then you're missing a space between the database name and the FROM:

restore database CorruptDemoDataPurity from disk=...