ASP.Net SQL Server SessionState (ASPState) 数据库的维护计划
我想澄清为 ASP.Net SQL Server 会话状态使用的 ASPState 数据库设置的最佳维护计划是什么。
标准的用户数据库维护计划似乎不合适。 我永远不需要对会话数据进行时间点恢复,因此备份数据库和事务日志文件似乎毫无意义。 但是我仍然需要截断事务日志、运行完整性检查和更新统计信息。
那里一定有现有的指导,但我的谷歌现在让我失望。
I'd like to clarify what the optimal maintenance plan set up is for the ASPState database that is used by ASP.Net SQL Server session state.
The standard user database maintenance plan doesn't seem suitable. I'll never need to do a point-in-time restore of session data so it seems pointless to back up the database and transaction log files. However I still need to truncate the transaction log, run integrity checks and update statistics.
There must be existing guidance out there somewhere but my google-fu is failing me right now.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
确保数据库恢复模型是“简单”的
使用以下选项创建维护计划:
- 检查数据库完整性
- 重组索引
- 清理历史
记录 每周安排一次,你应该没问题。
Make sure the database recovery model is 'Simple'
Create a maintenance plan with these options:
- Check database integrity
- Reorganize index
- Clean up history
Schedule this once a week and you should be fine.