Viewing 15 posts - 76 through 90 (of 162 total)
Excellent. It was the [sp_delete_log_shipping_secondary_database] sp which I needed.
Thanks
Nick
September 2, 2010 at 2:29 am
You can set the isolation level to be serializable at the start of your batch IE-
[SET TRANSACTION ISOLATION LEVEL SERIALIZABLE]
September 1, 2010 at 6:58 am
You could try something like this:
DECLARE
@Year INT,
@Month INT,
@Day INT
SET @Day = 3
SET @Month = 5
SET @Year = 2009
SELECT
CAST(@Year AS CHAR(4)) +
RIGHT('00' + CAST(@Month AS VARCHAR(2)),2) +
RIGHT('00'...
September 1, 2010 at 3:22 am
Have a look in the [MSDB].[dbo].[backupmediafamily] table to see where the last backup was placed for each DB
August 31, 2010 at 8:15 am
Try running a SQL Profiler trace and watching what happens when you call the SP from your web application. Include the deadlock graph to see if you're experiencing deadlocks too
August 31, 2010 at 5:33 am
If you want SQL to have access to more than 2Gb of RAM on a 32BIT installation, you'll need to configure the 3GB switch in the boot.ini file. Depending on...
August 31, 2010 at 5:19 am
This list is not exhuastive, but some reasons you may want to place user tables / data on seperate user created filegroups are:
Admin - you can backup and restore filegroups...
August 31, 2010 at 5:05 am
You should still determine the cause to prevent further failure.
August 31, 2010 at 4:59 am
Can you post table definitions, sample data, and query?
August 27, 2010 at 8:59 am
Have you checked DEFAULT LANGUAGE for the connection/login running this query?
August 27, 2010 at 8:54 am
Are you actually experiencing IO bottlenecks etc? A disk queue length of 1.86 doesn't indicate a problem on its own. A disk queue length > 2 (per spindle / indivual...
August 27, 2010 at 8:24 am
Check you have the "Shared Memory" protocol enabled for that instance. You can check this by opening SQL Server Config Manager -> SQL Native Client Config -> Client Protocals. May...
August 27, 2010 at 7:07 am
If your table is on a seperate filegroup, you can back up the filegroup
August 27, 2010 at 2:48 am
Viewing 15 posts - 76 through 90 (of 162 total)