Viewing 14 posts - 1 through 14 (of 14 total)
If people can post questions to a wide audience without bothering to test them you worry what state their database code must be in.
April 8, 2011 at 9:45 am
The database is in simple recovery so there are no log backups. I can run the query above every couple of seconds and the amount of space used in all...
March 4, 2011 at 2:16 am
I didn't read beyond the CREATE PROCEDURE. It wasn't the first line of the batch so I assumed "procedure would not run" would be the answer.
November 18, 2010 at 5:31 am
A very similar script is in BOL if you look up CHAR.
April 30, 2010 at 4:15 am
You may want to consider differentiating between types of backups. You may have log backups running fine but no full backups taking place.
Also I would consider including databases which do...
April 22, 2010 at 9:01 am
Has anyone experience of using Lab Manager for multi-streamed development with different data recency requirements? That's a stumbling block we're trying to plan for in a planned implementation.
Let's say...
August 22, 2008 at 3:46 am
The easiest way is to make the disk "unavailble". I'd do this by denying the MSSQLServer login account read permission to the disk which stores the data file.
Hope that helps
May 7, 2004 at 2:13 pm
Yes as mentioned, try to avoid believing that cursors are always bad. Sometimes their performance can be as good as, if not better than other approaches. However, when using them...
April 7, 2004 at 2:08 am
Was the spid running any extended stored procedures such as xp_Sendmail? If the external process has hung and SQL has lost concept of it's state (success/fail) then you can see...
March 31, 2004 at 2:40 am
I misunderstood part of this question
"You'd like to also have a server kept in the same room as your primary server to act...
February 19, 2004 at 2:30 am
If you run sp_helpdb does the compatibility_level always read 80?
February 2, 2004 at 7:41 am
If the vendor has come up with this as their technical solution I'd seriously worry about their technical aptitude!! Imagine what your backups and maintenance routines are going to be ...
January 16, 2004 at 9:05 am
Likewise:
Where
Col1 = @Param1
and Col2 = COALESCE(@Param2, COl2)
and Col3 = COALESCE(@Param3, COl3)
etc etc
October 29, 2003 at 3:26 am
Viewing 14 posts - 1 through 14 (of 14 total)