自动备份SQL Server数据库
我需要备份 SQL Server 数据库。
是否可以在无需人工定期干预的情况下自动执行此操作?如果是的话,请建议我如何做,我正在使用 SQL Server 2005 Express Edition。
I need to backup SQL Server database.
Is it possible to do this automatically without human intervention at regular intervals? If so yes then please suggest me how to do it and I'm using SQL Server 2005 Express Edition.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您将需要这个:
http://www.codeplex.com/ExpressMaint
然后您可以创建一个.cmd 文件来运行它并使用计划任务来安排它。我无法为您提供确切的命令行,因为您的设置将与我的不同,但文档位于:
http://www.sqldbatips.com/showarticle.asp?ID=27
http://www.sqldbatips.com/showarticle.asp?ID=29
You'll need this:
http://www.codeplex.com/ExpressMaint
Then you can create a .cmd file to run it and schedule it using Scheduled Tasks. I can't give you an exact command line because your setup will be different from mine, but the docs are here:
http://www.sqldbatips.com/showarticle.asp?ID=27
http://www.sqldbatips.com/showarticle.asp?ID=29
有一个关于备份 SQL Server Express 的演练 此处
There's a walkthrough on backing up SQL Server Express here
在 sql 2005 脚本模板中,您会
在代码中找到备份脚本,在您想要备份数据库时运行此脚本,
我猜就是这样
in sql 2005 scripts templates you will find backup script
from your code run this script in the time you want to backup your database
thats it i guess