- 1、本文档共19页,可阅读全部内容。
- 2、原创力文档(book118)网站文档一经付费(服务费),不意味着购买了该文档的版权,仅供个人/单位学习、研究之用,不得用于商业用途,未经授权,严禁复制、发行、汇编、翻译或者网络传播等,侵权必究。
- 3、本站所有内容均由合作方或网友上传,本站不对文档的完整性、权威性及其观点立场正确性做任何保证或承诺!文档内容仅供研究参考,付费前请自行鉴别。如您付费,意味着您自己接受本站规则且自行承担风险,本站不退款、不进行额外附加服务;查看《如何避免下载的几个坑》。如果您已付费下载过本站文档,您可以点击 这里二次下载。
- 4、如文档侵犯商业秘密、侵犯著作权、侵犯人身权等,请点击“版权申诉”(推荐),也可以打举报电话:400-050-0827(电话支持时间:9:00-18:30)。
查看更多
sql server数据库备份和恢复操作详解与命令(国外英文资料)
sql server数据库备份和恢复操作详解与命令(国外英文资料)
Enterprise manager
- manage
- the SQL Server agent
right-right-click
New job
Enter the job name in the regular item
The step item
- new
Enter the step name in the step name
The type selects transact-sql script (TSQL)
The database selects the database to execute the command
-- command to enter the statement to execute:
Declare @ STRSQL varchar (1000).
Declare @ strdirname varchar (50)
Declare @ STRCMD varchar (50)
Declare @ strsend varchar (1000).
Declare @ strdate varchar (50)
The exec master.. Xp_cmdshell net use \ \ 192.168.0.151 \ d $Password/user: 192.168.0.151 \ administrator
Set @strsql = backup database new_his to disk = \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \
Set @strdirname = replace (convert (varchar (20), getdate (), 120), -, ) + 12
Set @strcmd = md \ \ 192.168.0.151 \ d $\ serverd \
Set @strcmd = @strcmd + @strdirname
The exec master.. Arbitrary @ STRCMD
- print @ STRSQL
Set @strsql = @strsql + @strdirname + \ new_hisbackup. Dat with init, nounload, noskip, noformat
- print @ STRSQL
The exec (@ STRSQL)
-- the IP address and the Shared directory are written, and the user changes the Password, and the Password must be correct
- make sure
-- scheduling items
New scheduling
The name is the input scheduling name
Select your job execution schedule in the scheduling type
If you choose repeat.
Click change to set your schedule
Then start the SQL Agent service and set it to start automatically, otherwise your job will not be executed
Set the method:
My computer, control panel, management tools, services, right-click SQL server - property - start type - select start automatically - sure.
A backup database
Open the SQL enterprise manager and click Microsoft SQL Server in the console root directory
The SQL Server group - double-click to open your Server - double-click to open the database directory
Select your database name (for example, BBS database Forum) - and then click on the tool in the menu above -
文档评论(0)