Viewing 15 posts - 136 through 150 (of 272 total)
A general approach to performance tuning is to first find out which part of the process is taking the longest and attack that first. Then repeat. Each bottleneck...
April 28, 2010 at 7:54 am
As long as CUs are being released, there should be a regular SP release.
When the product becomes so stable that no CUs are created, then no SP is needed.
April 28, 2010 at 7:42 am
Good question. I've learned the hard way not to assume I know the answer. I would not have expected the error in this case, and something else new...
April 28, 2010 at 7:34 am
You could use a unique index or constraint.
April 27, 2010 at 11:18 am
I agree. I would say more but I think my manager reads these.
Hi Boss! 😀
April 27, 2010 at 7:19 am
Dan Fran (4/21/2010)
I am curious to know if there is a way to determine the size of a specific row/record in a given table. I know that sqlserver only...
April 21, 2010 at 1:36 pm
John, I would say that is not normal, but not that uncommon. If the lead DBA would ever like to take some time off, he should make sure you...
April 21, 2010 at 9:34 am
OK, I so did not understand this question. It wasn't until I read the explanation that I recognized that field1 and field2 were parts of the name!! (Wow,...
April 16, 2010 at 9:09 am
It's showing the same thing for me. We are at SP1, CU7.
April 15, 2010 at 8:59 am
You have to configure a different profile for each sender.
April 13, 2010 at 1:19 pm
Something like this :
DECLARE @ProcessCount int
SELECT @ProcessCount = COUNT(id)
FROM MyTable
WHERE ProcessStamp < DATEADD(MM,-60,GETDATE())
IF @ProcessCount <> 0
BEGIN
EXEC msdb..sp_send_dbmail
@recipients = 'Bozo.D.Clown@MyCompany.com',
@subject = 'Process Update Status',
@body = 'Process Failed to update...
April 13, 2010 at 9:31 am
Either tune your query (assuming it's a query) in your job to run in less time, or increase the interval between job starts. Jobs will not restart if they...
April 13, 2010 at 8:32 am
Viewing 15 posts - 136 through 150 (of 272 total)