Viewing 15 posts - 6,946 through 6,960 (of 7,636 total)
leonp (5/8/2008)
May 8, 2008 at 10:45 am
bcronce (5/7/2008)
May 7, 2008 at 5:51 pm
Well it is reading the transaction log sequentially and it cannot tell ahead of time which transactions will ultimately be committed and which will not be.
So instead it just "Rolls...
May 7, 2008 at 5:27 pm
What kind of SAN is it? Are there other servers using it also?
If so, then your slowdown could be caused by contention with those other servers for the same...
May 7, 2008 at 5:18 pm
The best "quick" solution would be for you to take the identity property off of the audit table.
May 7, 2008 at 5:09 pm
post the SQL code for the proc and the views. also attach the xml for the good & bad query plans.
May 7, 2008 at 5:02 pm
Let us know how it works out.
May 6, 2008 at 11:51 pm
Well, you can always use an OR:
SELECT ITEMNAME
FROM ITEMS
WHERE ITEMNAME LIKE '%Good%'
Or ITEMNAME LIKE '%Bike%'
To do this with a parameter, you would have to split...
May 6, 2008 at 11:25 pm
Actually, I've discovered recently that that does not in fact script everything in the database. For instance there are no Service Broker objects on the list.
Kind of disturbing, if...
May 6, 2008 at 5:00 pm
It worked before because you didn't have any records with CustomerCode='XX'. Now you do.
May 6, 2008 at 4:47 pm
Well, the Cursors are probably killing any ability to parallelize so your 2x4 core desktop is probably using the same number of cores as you dual-core laptop: 1.
And cursors tend...
May 6, 2008 at 4:39 pm
Well, there's a lot of differences between triggers in Oracle and SQL Server, such as:
1) SqlServer triggers as always per-statement and never per-row. So if one UPDATE statement modifies...
May 6, 2008 at 4:24 pm
It's more than just the math, Gus. The source and output column names actually indicate that it is going from Hectares to Square Meters.
May 6, 2008 at 3:35 pm
TheSQLGuru (5/6/2008)
...Also the best practice on (properly tuned) OLTP systems is to set max dop = 1.
Really?!? Could you site a reference for this? The only general "Best...
May 6, 2008 at 2:35 pm
Viewing 15 posts - 6,946 through 6,960 (of 7,636 total)