Viewing 15 posts - 2,911 through 2,925 (of 14,953 total)
I've never met a computer yet that had any sort of judgement or wisdom, but we do keep trusting more and more decisions to them.
This has good and bad aspects...
November 8, 2011 at 9:33 am
Jan Van der Eecken (11/8/2011)
GSquared (11/8/2011)
Roy Ernest (11/8/2011)
I am planning on a presentation for my user group "DBA MythBusters" (Courtesy...
November 8, 2011 at 8:53 am
Manie Verster (11/6/2011)
I honestly do not understand why people, in any sphere of life, has to spice their words with swearing and bad language. It is bad taste.
I grew up...
November 8, 2011 at 8:40 am
Roy Ernest (11/8/2011)
I am planning on a presentation for my user group "DBA MythBusters" (Courtesy Paul Randal) His idea is...
November 8, 2011 at 6:49 am
L' Eomot Inversé (11/7/2011)
Gianluca Sartori (11/7/2011)
I think this is a very bad habit to kick and I...
November 8, 2011 at 6:48 am
PaulB-TheOneAndOnly (11/5/2011)
GSquared (11/4/2011)
... I had a rollback command once that took over a week to finish. On a command that had been running for about 30 seconds.
Most probably something...
November 8, 2011 at 6:30 am
Compare the execution plans for the Cross Apply and the join to a list of months.
November 8, 2011 at 6:24 am
You guys do realize that selecting into a table variable, and then running a cursor on the table variable, is pretty much what a Static cursor does all by itself,...
November 8, 2011 at 6:19 am
Are you setting identity_insert in the same session as the insert statement? That's the scope it's got.
November 4, 2011 at 2:05 pm
Actually, I have seen cases where simple looking queries would run for days at a time.
Heck, I had a rollback command once that took over a week to finish. ...
November 4, 2011 at 1:39 pm
The values that aren't in the table, like ProcessID, where do they come from? Or are those static?
Other than that, it looks like:
select *
from dbo.ArrayOfStudentMoveSummary
for XML path('StudentMoveSummary'), type
That would...
November 4, 2011 at 1:36 pm
Build a table with constants in it.
Move it to a read-only filegroup, so that it avoids locks/blocks/et al, in terms of contention.
Select from it when you need to use a...
November 4, 2011 at 11:10 am
The problem isn't the concatenation. It's the use of "RETURN".
The Return operator can only return an integer value. It's supposed to be an error code or similar item.
That's...
November 4, 2011 at 9:58 am
SQLRNNR (11/4/2011)
What is this query plan operator?
8-bit cactus
November 4, 2011 at 9:54 am
Viewing 15 posts - 2,911 through 2,925 (of 14,953 total)