SQL_Database_Restore - 蒲池 晃, 2019/03/20 06:03
USE [master]
RESTORE DATABASE [RESTORE????DB] FROM
DISK = N'D:\BackupFiles\xxxxxxx.bak' WITH FILE = 1,
MOVE N'????DB??' TO N'D:\DATABASE\xxxxxx.mdf',
MOVE N'????DB??_log' TO N'D:\DATABASE\xxxxxx.ldf',
NOUNLOAD, REPLACE, STATS = 5
GO