restore database 数据库名称 from disk='备份文件路径' with RECOVERY,REPLACE,move '数据库名称' to '为 数据库名称.mdf 文件指定的存放路径',move '数据库名称_log' to '为 数据库名称_log.ldf 文件指定的存放路径';
示例:
restore database test from disk='E: est.bak' with RECOVERY,REPLACE,move 'test' to 'E:dbFile est.mdf',move 'test_log' to 'E:dbFile est_log.ldf';