BACKUP and RESTORE 备份还原数据库

you will want to make certain that if you take a backup of master on a server in your environment that you aren’t interfering with any existing backup plan:

BACKUP DATABASE [master] TO  DISK = N‘C:\SQL\Backups\master.bak‘

Next we will create a test login as part of our practice run:

USE [master]
 GO
 CREATE LOGIN [master_restore_test]
 WITH PASSWORD=N‘test‘,
 DEFAULT_DATABASE=[master],
 CHECK_EXPIRATION=OFF,
 CHECK_POLICY=OFF

Just for fun, we will create a new database as well:

CREATE DATABASE [restore_test]

Since the login and database were created after the backup they won’t be there after the restore is complete.

 RESTORE DATABASE master FROM DISK = ‘C:\SQL\Backups\master.bak‘ WITH REPLACE
1
2
3
4
CREATE DATABASE [restore_test] ON
( FILENAME = N‘C:\SQL\Data\restore_test.mdf‘ ),
( FILENAME = N‘C:\SQL\Logs\restore_test_log.ldf‘ )
FOR ATTACH

BACKUP and RESTORE 备份还原数据库,布布扣,bubuko.com

BACKUP and RESTORE 备份还原数据库

上一篇:linux 怎么完全卸载mysql数据库


下一篇:os路径拼接时,比如os.path.join(base_dir,"Outputs\logs")后半段斜杠请小心被识别为转义字符\,所以请用/,因为windows都能识别到此路径。