Viewing 15 posts - 346 through 360 (of 1,161 total)
I doubt how you connect to instance (Windows\SQL) would cause performance issues. You may want to check if any other processes running on the instance are slowing down this process.
November 20, 2010 at 11:25 am
If VSS is causing issues, it can be disabled from running. Instead you may want to increase the number of transaction log backups that you take, to make up for...
November 20, 2010 at 11:03 am
I have seen issues with VSS but it used to have "I/O is frozen..." messages in SQL Server Error Log. This is because VSS Writter issues BACKUP DATABASE ...with SNAPSHOT...
November 20, 2010 at 10:36 am
This article explains it nicely and it is the right place to start with.
November 20, 2010 at 10:27 am
This should work.
EXEC master.dbo.xp_instance_regwrite N'HKEY_LOCAL_MACHINE', N'SOFTWARE\Microsoft\MSSQLServer\SQLServerAgent', N'DatabaseMailProfile', N'REG_SZ', N'MailProfileName'
November 19, 2010 at 1:06 pm
It is always a best practice to restore system databases like master and msdb when you are moving SQL Server instance. It also avoids recreating the logins,jobs etc. If DTS...
November 19, 2010 at 12:36 pm
As a temporary work around, it is ok to rely on file group backups. But it is always safe to have a full backup at regular intervals. You never know...
November 19, 2010 at 12:17 pm
When the Volume Shadow Copy is running on the server, do you see any Error Messages in SQL Server Error Log/ Application Event Log?
November 19, 2010 at 9:10 am
There must be an open transaction running on the database which is filling up the database. Try running the below query to check if there are any running transactions.
SELECT *...
November 19, 2010 at 9:08 am
Yes there are quite a lot of new things introduced in SQL Server 2008 R2. Some of them are listed here[/url]
November 19, 2010 at 3:49 am
Mukunth-444251 (11/19/2010)
November 19, 2010 at 1:55 am
November 18, 2010 at 9:40 pm
If the name in Services is SQL Server (MSSQLServer) then it is a default instance. Hence the instance name in the connection string would be ServerName
If the name in Services...
November 18, 2010 at 8:15 pm
Also make sure that the job owner is "sa" or some other user with sufficient privileges. Also ensure that the SQL Server/Agent startup account has privileges on the folder\files that...
November 18, 2010 at 7:48 pm
Viewing 15 posts - 346 through 360 (of 1,161 total)