How to warm up a sleeping SQL Server database

喜欢而已 提交于 2019-11-30 20:13:45

Which version of SQL Server is this? It sounds like the database has the Auto Close setting on, which is the default for EXPRESS but can lead to behaviour like this.

ALTER DATABASE myDB SET AUTO_CLOSE OFF
go

Could you schedule a query 30 minutes before your build process runs to "warm up" the server?

Also- is this database running on a server or desktop? If it's a desktop you might check the power management settings.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!