We have a new installation of SQL Server 2005. The server doesn't have access to the internet and we've disabled the checks for certificate revocation but don't want to continue to do this as it is dangerous. But are still having these really slow start times (upwards of 60 seconds).
feedback
|
|
In Tools - Options, go to the Environment - General section and for the At Startup option, select Open empty environment. See if that improves anything. | |||
feedback
|
|
I hate using SSMS because it is slow and cumbersome. The older Enterprise Manager in SQL 2000 was quick to load and much snappier in reponse to actions. That's progress for you. | |||||
feedback
|
|
change your SQL Server Management Studio shortcut to have the nosplash switch at the end. This will prevent the SSMS Splash window from appearing on loading, which reduces loading time a bit. the default would be:
| |||
|
feedback
|
|
It's normally slow to open the first time after you start up your computer, but should get faster after that. The reason is that it uses the .Net framework for some things, and that's probably the only .Net framework app you use on your machine. So the first time, all those assemblies (dlls) need to be loaded as well. But this happens only once. From then on they're cached, and even if that cache is paged to disk the retrieval isn't too bad. | |||
|
feedback
|
|
Have you applied a service pack to your instance and tools? | |||
|
feedback
|
|
This might work...
| |||||
feedback
|
|
Here's what we did. Since our proxy server is a white-list only, we set the connection in IE to use the proxy which then send a failure back immediately rather than waiting upwards of 60 seconds. | |||||||
feedback
|
|
This won't be the final solution, but it sure helps: Edit the short cut for SQL Server Management Studio and add " /nosplash" to the end of the target field (without the quotes, of course). That's assuming it is SSMS that is starting slowly. (edit: must be, just noticed the tag for it) | |||
|
feedback
|
|
Another way to really speed up SSMS opening is right-click the shortcut for it, choose properties. Change the Target to this: "C:\Program Files\Microsoft SQL Server\100\Tools\Binn\VSShell\Common7\IDE\Ssms.exe" -nosplash The change is the addition of the -nosplash flag at the end. This will speed you up quite a bit opening. I learned this trick at SQL Saturday. | |||
|
feedback
|