Viewing 15 posts - 901 through 915 (of 8,416 total)
DBA Rafi (1/30/2012)
saying putting NOLOCK is not a good practice sometimes.
As i was not...
January 30, 2012 at 1:41 am
jethrojet (1/30/2012)
January 30, 2012 at 1:28 am
Gabriel P (1/29/2012)
I keep reading people saying an update is essentially a delete combined with an insert. How true is this as far as physical I/O?
Any update that changes an...
January 30, 2012 at 1:01 am
Another example:
WITH
-- On the fly numbers table
N1 AS (SELECT N1.n FROM (VALUES (1),(1),(1),(1),(1),(1),(1),(1),(1),(1)) AS N1 (n)),
N2 AS (SELECT...
January 30, 2012 at 12:28 am
Shcherbunov Neil (1/29/2012)
January 30, 2012 at 12:17 am
XploreBI (1/29/2012)
January 29, 2012 at 4:02 pm
LutzM (1/28/2012)
Star Trek (1/28/2012)
I do not have access to execution plans. This is what my manager sent me.
If the number of rows is really representative (a few hundred at max)...
January 28, 2012 at 5:03 am
Opinions vary on this, but my own view is that it is only worth creating extra equally-sized tempdb files if you are experiencing allocation contention. Some people prefer to...
January 28, 2012 at 4:58 am
Details help very much with this sort of question. As a minimum, please provide actual execution plans (*.sqlplan files) for quick and slow runs. Output from STATISTICS IO...
January 27, 2012 at 9:47 pm
aitchkcandoo (1/27/2012)
What is the advised way within SQL Server Management Studio to assess relative cost or performance of running each of these queries?
There is no one right answer to this...
January 27, 2012 at 5:42 pm
Well new table A and new table B can be CROSS JOINed to give old table A...
January 27, 2012 at 10:30 am
Khades (1/27/2012)
Ok, looks like the compatibility level of some databases are set to 2005, found the issue, thanks!
Aha! Thanks for letting me know, I'll remember that.
January 27, 2012 at 10:29 am
Khades (1/27/2012)
I ran your script in 4 environments and it only passes in 1 without the Z, it passes all with the Z.Can this be server version issue?
Could be, I...
January 27, 2012 at 10:28 am
jbhatt2 (1/27/2012)
January 27, 2012 at 10:13 am
The one at the end is awesome.
January 27, 2012 at 10:11 am
Viewing 15 posts - 901 through 915 (of 8,416 total)