Viewing 15 posts - 346 through 360 (of 1,157 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.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 20, 2010 at 10:36 am
This article explains it nicely and it is the right place to start with.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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'
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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?
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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 *...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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]
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 19, 2010 at 3:49 am
Mukunth-444251 (11/19/2010)
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 19, 2010 at 1:55 am
Yes it is to a tape or Virtual Device
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 18, 2010 at 9:45 pm
You may find this article[/url] useful.
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
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...
Pradeep Adiga
Blog: sqldbadiaries.com
Twitter: @pradeepadiga
November 18, 2010 at 7:48 pm
Viewing 15 posts - 346 through 360 (of 1,157 total)