Viewing 15 posts - 16 through 30 (of 51 total)
Good question on sysobjects table. You could also have added a distinct to the select statement, so I would only get any table having multiple constraints only once.
July 31, 2014 at 10:56 am
Question should have been "In SQL Server 2014, which of these is not a valid resource pool argument?".
June 10, 2014 at 6:06 am
That happens if you are monitoring a named instance. See my earlier post to modify the script to work in both default and named instances.
Its still a helpful script.
May 13, 2014 at 5:19 pm
This doesn't work with named instances. It will if you change the where clause as follows:
WHERE ([object_name] = N'MSSQL$' + @@Servicename + N':Buffer Manager '
...
May 13, 2014 at 10:58 am
If you are using transactions, you can put the rollback statement at the beginning of the catch as follows:
BEGIN CATCH;
ROLLBACK;
SET @Result = 0;
-- re-raise the...
March 28, 2013 at 6:49 am
I think that before we get there storage/RAM on a laptop will become a moot point. We will have virtual machines in a cloud that we will access with...
January 18, 2013 at 7:29 am
I would suggest data security. If you combine that with advanced database management skills, you would become very valuable.
December 21, 2011 at 6:58 am
I don't think that anyone should be penalized for createing a QOTD even if the answer is not totally correct. At least they were contributing to the SQL Server community....
September 14, 2011 at 6:26 am
I believe that the second select statement will return 1 instead of 0 or 2.
September 14, 2011 at 5:30 am
Really critical systems: Air Traffic Control System, NORAD.
May 6, 2011 at 5:21 am
I thought I learned something, but when I ran the script, I found that my original answer was correct.
April 8, 2011 at 6:42 am
It looks like a pretty common problem. I found the following link for it. It doesn't look like anything to be concerned about:
March 7, 2011 at 1:08 pm
Probably the equivilant of a DBA 100 years ago was a millwright. That was someone that built and maintained machinary for a factory or assembly line.
October 29, 2010 at 5:26 am
The statements that you provided appear to be correct. Are you sure that the set command is getting the error? Could you be assigning the PVC_APPLICATION_NAME variable...
October 27, 2010 at 5:53 am
Thanks for the information. I was not aware that you could also set the query window color through the connection dialogue box. I did discover a quirk when...
October 15, 2010 at 9:01 am
Viewing 15 posts - 16 through 30 (of 51 total)