還原差異備份資料庫

2021-04-12 21:00:09 字數 780 閱讀 1123

---建立備份檔案

backup database northwind to disk='c:/a.bak'

backup database northwind to disk='c:/b.bak' with differential

---測試如下(還原完敕備份)

restore database northwind

from disk='c:/a.bak'

with norecovery,

move 'northwind' to 'd:/microsoft sql server/mssql/data/northwnd.mdf',   ---主資料檔名

move 'northwind_log' to 'd:/microsoft sql server/mssql/data/northwnd_log.ldf', --日誌檔名

file=1---這裡輸入完全備份的檔案號

--還原差異備份

restore database northwind

from disk='c:/b.bak'

--move 'mynwind' to 'c:/program files/microsoft sql server/mssql/data/newnwind.mdf',   ---主資料檔名

--move 'mynwindlog1' to 'c:/program files/microsoft sql server/mssql/data/newnwind.ldf' --日誌檔名

with file=1---這裡輸入差異備份的檔案號

Mysql資料庫備份資料庫與還原資料庫

mysql資料庫備份資料庫與還原資料庫 一 備份資料庫 1 進入資料庫 mysql uroot p 密碼123 2 檢視資料庫 show databases 3 備份資料庫 mysqldump hlocalhost uroot p123 hterp ding ht orders f ht sun.s...

備份資料庫

參考 sql如何備份到異機 寫成儲存過程,建立作業定時備份 在sql中對映一下就可以了 exec master.xp cmdshell net use z yizhi d module user yizhi administrator 說明 exec master.xp cmdshell net u...

備份資料庫

命令在dos的 url file mysql bin mysql bin url 目錄下執行 1.匯出整個資料庫 匯出檔案預設是存在mysql bin目錄下 mysqldump u 使用者名稱 p 資料庫名 匯出的檔名 mysqldump u user name p123456 database n...