- 1、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。。
- 2、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 3、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
- 4、该文档为VIP文档,如果想要下载,成为VIP会员后,下载免费。
- 5、成为VIP后,下载本文档将扣除1次下载权益。下载后,不支持退款、换文档。如有疑问请联系我们。
- 6、成为VIP后,您将拥有八大权益,权益包括:VIP文档下载权益、阅读免打扰、文档格式转换、高级专利检索、专属身份标志、高级客服、多端互通、版权登记。
- 7、VIP文档为合作方或网友上传,每下载1次, 网站将根据用户上传文档的质量评分、类型等,对文档贡献者给予高额补贴、流量扶持。如果你也想贡献VIP文档。上传文档
查看更多
还原数据库的经典做法(Restore the classic database practices)
还原数据库的经典做法(Restore the classic database practices)
Restore the classic database practices (assuming that a complete database backup has been performed), A. restore the integrity of the database
Explains the MyNwind database for illustration purposes only.
The following example shows restore full database backup.
RESTORE DATABASE MyNwind
FROM MyNwind_1
B. restore complete database backup and differential backup
The following example restores the full database backup and restores differential backups. In addition, the following example explains how to restore another backup set on the media. The differential backup is appended to the backup device that contains the full database backup.
RESTORE DATABASE MyNwind
FROM MyNwind_1
WITH NORECOVERY
RESTORE DATABASE MyNwind
FROM MyNwind_1
WITH FILE = 2
C. uses the RESTART syntax to restore the database
The following example uses the RESTART option to restart the RESTORE operation interrupted by a server power failure.
- This, database, RESTORE, halted, prematurely, due,, to, power, failure.
RESTORE DATABASE MyNwind
FROM MyNwind_1
-- Here, is, the, RESTORE, RESTART, operation.
RESTORE DATABASE MyNwind
FROM MyNwind_1 WITH RESTART
D. restore the database and move the file
The following example restores the full database and transaction log, and moves the restored database to the C:\Program Files\Microsoft SQL Server\MSSQL\Data directory.
RESTORE DATABASE MyNwind
FROM MyNwind_1
WITH NORECOVERY,
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
RESTORE LOG MyNwind
FROM MyNwindLog1
WITH RECOVERY
E. creates a copy of the database using BACKUP and RESTORE
The following example shows a copy of the Northwind database created using the BACKUP and RESTORE statements. The MOVE statement restores the data and log files to the specified location. The RESTORE FILELISTONLY statement is used to determine the number and name of
您可能关注的文档
- 语文听力训练的尝试 - 台州市双语学校(An attempt at Chinese Listening Training - Taizhou Bilingual School).doc
- 详细的ab血型分析(Detailed AB blood group analysis).doc
- 语文精选重点(Selected highlights of Chinese).doc
- 语文论文语文教学语言风格浅说_2621(Chinese language style the Chinese teaching on _2621).doc
- 语文论文语文教学中词语读音的教学_3393(Teaching Chinese words and phrases in Chinese language teaching _3393).doc
- 语段压缩技巧(Paragraph compression technique).doc
- 语润叶(Leaf moistening).doc
- 语言学概论》复习资料(Introduction to Linguistics).doc
- 语言学概论试题库(Introduction to Linguistics).doc
- 语文版九年级上第六单元诗词五首(Chinese language version nine, unit sixth, poetry, five).doc
- 还原文件夹加密狗加密的文件(转帖)(Restore folder encryption dog encrypted file (Reprint)).doc
- 还原精灵卸载(Restore Wizard uninstall).doc
- 还原糖,脂肪,蛋白质鉴定(Identification of reducing sugar, fat and protein).doc
- 还原论和整体论必要的张力——对当代西方科学哲学方法论的反思(Reductionism and Holism Necessary Tension -- Reflections on the methodology of contemporary western philosophy of Science).doc
- 这个世纪的创业(Entrepreneurship in this century).doc
- 这五种食物泡水喝最养肝护肝-苹果园(The five kinds of food soaked in water to drink apple orchard - the liver).doc
- 这些可让男人们更长寿(These can make men live longer).doc
- 这些流产征兆孕妈们必知晓(These abortion symptoms, pregnant mothers will know).doc
- 这会激励我到大学毕业(It will motivate me to graduate from college).doc
- 这20种吃法会吃垮身体(These 20 kinds of eating will eat up your body).doc
文档评论(0)