Viewing 15 posts - 41,941 through 41,955 (of 49,562 total)
Since it's SQL 2005, can you get the deadlock graph using traceflag 1222 instead of 1204 please? The information's a lot more detailed and far easier to read.
January 6, 2009 at 1:01 pm
nitinpatel31 (1/6/2009)
By the way sql server uses nested loops and indexnested loops join.
Not true. Nested loops, merge and hash are the three algorithms that SQL uses to do joins. Nested...
January 6, 2009 at 12:57 pm
For a summary: http://sqlinthewild.co.za/index.php/2007/12/30/execution-plan-operations-joins/
For the really technical details, follow the links on that page.
January 6, 2009 at 12:55 pm
Duplicate post. No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic630887-1063-1.aspx
January 6, 2009 at 12:54 pm
RBarryYoung (1/6/2009)
GilaMonster (1/6/2009)
Grant Fritchey (1/6/2009)
I must be old, D&D used lots (and lots and lots) of six-sided dice. Now, Traveller, there were the decimal dice at work.
Which edition was that?...
January 6, 2009 at 12:51 pm
GSquared (1/6/2009)
January 6, 2009 at 12:49 pm
James Zhang (1/6/2009)
do you think the problem is on the OS side or on the storage side?
< Shrug > Out of my area of expertise. Absolutely no idea.
Anything interesting...
January 6, 2009 at 12:47 pm
kathyoshea (1/6/2009)
Select the data and use the order by in the loading of the table that is returned.
This works in all the testing I've done....
January 6, 2009 at 11:47 am
IO sub-system glitch? It's pretty much the only thing that comes to mind.
I assume there's all sorts of errors in the error log about 'cannot open file', etc.
Got a...
January 6, 2009 at 11:32 am
Please don't cross post. It just wastes peoples time and fragments replies.
No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic630817-266-1.aspx
January 6, 2009 at 11:31 am
tfifield (1/6/2009)
Wow! I never thought about the parallel problem. It gets uglier all the time. I'd have to tweak MAXDOP in order to guarantee that it was...
January 6, 2009 at 11:27 am
Franco_1 (1/6/2009)
VALUES (@ProjectName,@Description,@RequestedBy,(select deptID from Department where Department=@Dept) as @DeptID)
The source for an insert can be either VALUES or SELECT, not a combination.
Try this:
INSERT INTO tblProject...
January 6, 2009 at 11:21 am
Lowell (1/6/2009)
you need to track changes in the TEMPDB? maybe you mentioned the wrong db?
In 2005/2008, the inserted and deleted tables are materialised from the row version store that's...
January 6, 2009 at 11:14 am
branovuk (1/6/2009)
Gail, for me time is not crucial, most important is valid restoration to the point of time. So, I think to go with full + (often) diff backup.
In that...
January 6, 2009 at 11:13 am
Marios Philippopoulos (1/6/2009)
DECLARE @ActionType char(1)SELECT @ActionType = CASE
...
January 6, 2009 at 10:22 am
Viewing 15 posts - 41,941 through 41,955 (of 49,562 total)