更换数据库后,tempdb需进行以下调整

1、修改自动增长比例,修改为20MB的增长

1 USE [master]
2 GO
3 ALTER DATABASE [tempdb] MODIFY FILE ( NAME = N'tempdev', FILEGROWTH = 20480KB )
4 GO

 

参考文档

http://www.cnblogs.com/Athrun/archive/2010/05/12/1733557.html

http://msdn.microsoft.com/zh-cn/library/ms175527.aspx

http://msdn.microsoft.com/zh-cn/library/ms345368.aspx

http://www.cnblogs.com/changbluesky/archive/2010/04/15/1711733.html

http://support.microsoft.com/kb/307487/zh-cn

SQL Server has encountered NN occurrence(s) of I/O requests taking longer than 15 seconds

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2021-09-12
  • 2021-07-20
  • 2021-12-15
  • 2021-07-31
  • 2021-09-18
猜你喜欢
  • 2022-03-07
  • 2021-10-21
  • 2022-12-23
  • 2021-05-18
  • 2021-12-02
  • 2022-01-14
  • 2022-02-14
相关资源
相似解决方案