Viewing 15 posts - 16,276 through 16,290 (of 22,211 total)
Just so you know, this can frequently result in slower backups that cause some visible load on the server. I prefer to backup locally and then move the file across...
October 21, 2009 at 6:26 am
There must be an error message reported in the maintenance job or in the logs. Find that error. If it doesn't tell you exactly what the problem is, post it...
October 21, 2009 at 6:23 am
Funny, I'm going to come down just the opposite and say that I like option B for the same reasons that Jeff likes option A. I don't like having to...
October 21, 2009 at 6:21 am
No accountants here either... Nurses, Receptionists, Sales people... those I've seen try to be DBA's. Nurses weren't so bad, neither were the receptionists... keep the sales people away from the...
October 20, 2009 at 7:36 pm
It sounds like a classic case of parameter sniffing. Try updating your statistics. If that doesn't resolve the issue, you may need to use an OPTIMIZE FOR hint on the...
October 20, 2009 at 11:13 am
And I've seen the opposite. Until a recent bug fix, it was missing indexes that were blatant and obvious that resulted in major performance improvements. There's an MS Connect issue...
October 20, 2009 at 8:50 am
I like the OUTPUT mechanism for batch inserts, but if you're doing single row inserts, you should be fine with SCOPE_IDENTITY() in almost all cases. If you read through the...
October 20, 2009 at 8:06 am
Thanks. We'll try that too.
For some reason when we turned implicit transactions off, we were able to get the install to run. I'm still trying to find out why one...
October 20, 2009 at 6:24 am
Layne-812700 (10/19/2009)
Grant Fritchey (10/16/2009)
Layne-812700 (10/15/2009)
October 20, 2009 at 6:09 am
maperkins (10/19/2009)
Thousands of experiments, many resulting in useful ( or delicious) products. He even made a diamond out of...
October 19, 2009 at 12:08 pm
GilaMonster (10/16/2009)
Bob Hovious 24601 (10/16/2009)
Black IceShadowrun?
Fallen Angels
October 16, 2009 at 12:54 pm
If it's making calls to the database you should be to see them. If you're not seeing them, there must be something wrong with your trace configuration, server settings, filters......
October 16, 2009 at 8:05 am
Slick84 (10/16/2009)
Slick84 (10/15/2009)
Thanks for the input. You definately are making sense and yes the requirement you described is how I want it. I'm basically inserting records from tblRegularItems into tblProductSizeWidthColor...
October 16, 2009 at 7:24 am
SQL Server will manage it's own memory, so from the OS all you'll see is that SQL Server is using X, in this case 5gb. You can limit the amount...
October 16, 2009 at 6:38 am
First, I'd strongly suggest switching to ANSI 92 syntax
SELECT...
FROM a
JOIN B
ON a.id = b.id
Second, you don't have any kind of filtering, so the query is going scan all the...
October 16, 2009 at 6:34 am
Viewing 15 posts - 16,276 through 16,290 (of 22,211 total)