Nếu ta muốn đặt database ở một thư mục khác thì thay vì sử dụng câu lệnh restore thông thường, sử dụng đoạn lệnh mẫu sau để chỉ định thư mục chứa database sau khi restore:
- USE master
- GO
- -- First determine the number and names of the files in the backup.
- -- AdventureWorks2008R2_Backup is the name of the backup device.
- RESTORE FILELISTONLY
- FROM AdventureWorks2008R2_Backup
- -- Restore the files for MyAdvWorks.
- RESTORE DATABASE MyAdvWorks -- có thể đổi tên mới ở chỗ này
- FROM AdventureWorks2008R2_Backup
- WITH RECOVERY,
- MOVE 'AdventureWorks2008R2_Data' TO 'D:\MyData\MyAdvWorks_Data.mdf',
- MOVE 'AdventureWorks2008R2_Log' TO 'F:\MyLog\MyAdvWorks_Log.ldf'
- GO
Không có nhận xét nào :
Đăng nhận xét