SQLSERVER2005中维护计划有什么用
sqlserver维护计划的必要性和用途是什么以及如何配置?
What is the need and use of sqlserver maintenance plans and how to configure them?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
Google 解释了所有内容:http://www.sql-server-performance。 com/articles/dba/creating_backup_jobs_p1.aspx
Google explains all: http://www.sql-server-performance.com/articles/dba/creating_backup_jobs_p1.aspx
它们使创建计划备份、重新索引和其他维护任务变得更加容易。 它是一个简单的向导,会询问您想要执行什么操作、对哪些数据库执行操作以及执行频率。
They make it easier to create scheduled backups, reindexing and other maintenance tasks. Its a simple wizard that asks you what you want to do, to which databases and how often.
维护计划
Maintenance plans
维护计划为您提供本机工具,使您的 SQL Server 保持正常运行。 您可以通过维护计划安排索引维护、数据库备份等任务(另请参阅 SQL Server 代理)。 检查 StackOverflow 的孪生站点 ServerFault,了解相关问题。 我见过 ServerFault 的专家回答类似的问题。 查看 http://sqlserverpedia.com/ 您可以在该网站中找到有用的信息。 ;-)
Maintenance Plan provides you native tools that will keep your SQL Server up and running. You can schedule tasks such as Index maintenance, database backup, etc through a Maintenance Plan (see SQL Server Agent also). Check the twin site of StackOverflow, ServerFault, for related questions. I have seen gurus at ServerFault responding to queries similar to this. Check out http://sqlserverpedia.com/ you can find useful information in the site. ;-)
简而言之,维护计划是使用 SQL Server 集成服务 (SSIS) 组件自动执行特定 SQL Server 管理任务的基本工具。
典型的使用场景包括:
它们还处理辅助组件(例如作业和计划)的创建。
如果您有一个直接或简单的数据库平台,那么维护计划通常可以满足您的所有需求。 更复杂环境的数据库管理员 (DBA) 通常更喜欢针对这些场景实施自己的自定义解决方案。
Simply put, maintenance plans are a basic tool for automating specific SQL Server administrative tasks by using SQL Server Integrations Services (SSIS) components.
Typical usage scenarios include:
They also handle the creation of ancillary components such as jobs and schedules.
If you have a straightforward or simple database platform then maintenance plans can usually accommodate all of your needs. Database Administrators (DBA’s) of more complex environments usually prefer to implement their own custom solutions for these scenarios.