How to warm up a sleeping SQL Server database

。_饼干妹妹 提交于 2020-01-10 19:32:16

问题


We have a job which runs every morning in CruiseControl.net to import a datafile into a DB. Our problem seems to be that some nights the DB goes to sleep over night. When we run the script in the morning our connection times out while we wait for the DB to warm up. We've tried upping timeouts etc. but with no luck. Is there a way to tell SQL Server to warm up at a set time or to tickle it to keep it warm?

So far we run the job twice, once at 9am to warm it up which fails 80% of the time but at least it warms the server up and again an hour later which nearly always works.

I'd rather not run it twice as its a big job and very CPU intensive. Any ideas?


回答1:


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.




回答2:


ALTER DATABASE myDB SET AUTO_CLOSE OFF
go



回答3:


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.



来源:https://stackoverflow.com/questions/1750373/how-to-warm-up-a-sleeping-sql-server-database

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