Viewing 15 posts - 91 through 105 (of 280 total)
YSLGuru (7/27/2012)
Steve Jones - SSC Editor (7/26/2012)
SpringTownDBA (7/26/2012)
If the VM host is ONLY going to host 1 VM EVER, then what is the value...
July 27, 2012 at 12:48 pm
YSLGuru (7/26/2012)
"What does it mean that "only the OS would be on the VM and the database files would be on local drives"?
Its my understanding that the Windows...
July 26, 2012 at 11:19 am
allmhuran (7/25/2012)
"If the file path (including the drive letter) of a secondary database differs from...
July 26, 2012 at 10:04 am
YSLGuru (7/25/2012)
July 25, 2012 at 3:26 pm
joseph.devereaux (7/25/2012)
I have always a file creation size, file growth amount and max file size. Usually this is 1st...
July 25, 2012 at 1:47 pm
detach the database files before moving the luns.
July 12, 2012 at 1:46 pm
You are having performance issues on the SQL server. This is the root cause of your problem.
As a side effect, your application is opening additional connections to service requests...
June 29, 2012 at 10:44 am
There ia a problem with what you're trying to accomplish.
Basically, you can't do it. Sql doesn't allow dynamic naming of columns in views.
You have to do something like...
June 29, 2012 at 1:08 am
This is a different way to chunk your deletes. It populates a temp table of keys, then picks the first N keys, and deletes rows associated with them, then...
June 29, 2012 at 12:45 am
yes, but on a smaller scale (table < 1 gb).
good luck!
June 28, 2012 at 10:03 pm
easy ones first:
non-default configuration for "locks"?
SELECT * FROM sys.configurations AS c WHERE name = 'locks'
another spid using tons of locks?
SELECT request_session_id, COUNT(*) FROM sys.dm_tran_locks AS dtl GROUP BY...
June 27, 2012 at 11:59 pm
Take the total size of the clustered and non-clustered indexes (include non-leaf pages) and add 30%. I pulled that figure out of thin air, but it should be sufficient
though,...
June 27, 2012 at 11:39 pm
Tom Van Harpen (6/27/2012)
We have a...
June 27, 2012 at 11:25 pm
hard to say without the execution plan.
June 26, 2012 at 9:11 pm
oh, and to answer your second question, a primary key exists to enforce uniqueness, nothing else.
June 22, 2012 at 10:06 pm
Viewing 15 posts - 91 through 105 (of 280 total)