SQLSERVER2005中维护计划有什么用

发布于 2024-07-20 09:30:46 字数 37 浏览 5 评论 0原文

sqlserver维护计划的必要性和用途是什么以及如何配置?

What is the need and use of sqlserver maintenance plans and how to configure them?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

懵少女 2024-07-27 09:30:46

它们使创建计划备份、重新索引和其他维护任务变得更加容易。 它是一个简单的向导,会询问您想要执行什么操作、对哪些数据库执行操作以及执行频率。

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.

游魂 2024-07-27 09:30:46

维护计划

维护计划创建了一个工作流程
确保所需的任务
您的数据库已优化,是
定期备份,并且免费
不一致。 这些保养
任务可以手动运行或
按预定的时间间隔自动进行。
-- 来源:MSDN

Maintenance plans

Maintenance plans create a workflow of
the tasks required to make sure that
your database is optimized, is
regularly backed up, and is free of
inconsistencies. These maintenance
tasks can be run manually or
automatically at scheduled intervals.
-- Source:MSDN

做个ˇ局外人 2024-07-27 09:30:46

维护计划为您提供本机工具,使您的 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. ;-)

从来不烧饼 2024-07-27 09:30:46

简而言之,维护计划是使用 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:

  • Index Optimization
  • Database Backups
  • Job History Cleanup

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文