Viewing 11 posts - 1 through 11 (of 11 total)
I have a similar issue.. I want all my steps in a job to go to the next step even if the step fails but I want it to...
August 28, 2014 at 5:21 pm
I use a Free product called SQL Heartbeat by SQL solutions. It lets you see visually the deadlocks as they happen and with graphic links of who is causing the...
September 19, 2011 at 9:44 am
The SQL dedicated admin connection, so your Management app does not lock up and hang when something goes wrong in SQL. So needed over the years.
December 17, 2010 at 12:06 pm
I used to manage a huge casino management system and was forced to use triggers to audit tables that were updated by stored procedures. Altering vendor code is never a...
November 12, 2010 at 9:39 am
Ron Porter (11/12/2010)
Steve Jones - SSC Editor (11/12/2010)
November 12, 2010 at 9:03 am
Don't forget, Americans love cars. It's built into us since childhood. Driving is convenient and you don't have to pay a fee each time you get into the car. You...
November 10, 2010 at 9:22 am
How come my Sim City 3 never seamed to work out that way? π
November 10, 2010 at 9:14 am
Here is another way I calculate age.
SELECT @AGE = ' '+CAST(((datediff(ss, @DOB,GETDATE())) /31536000) AS NVARCHAR(MAX)) +
' Years, ' +
CAST((((datediff(ss, @DOB,GETDATE())) %31536000) /2628000) AS NVARCHAR(MAX)) +
' Months, ' +
CAST((((datediff(ss, @DOB,GETDATE())) %2628000)...
October 23, 2009 at 11:01 am
No matter where you backup to, the key is making sure your Backup software backups and verifies the SQL backup file correctly. The worst thing in the world is when...
March 19, 2009 at 11:30 am
In SQL 2005 you will most likely want to add a Maintenance Clean up Task into your Backup Plan. Set the task to delete files with .bak extensions in your...
March 18, 2009 at 12:44 pm
I don't think itβs a permissions issue. I have fought with this many times. It may be a minor bug with your 2005 Server Management Studio Application.
I noticed that in...
December 15, 2008 at 11:36 am
Viewing 11 posts - 1 through 11 (of 11 total)