Viewing 15 posts - 1 through 15 (of 28 total)
Thanks, a blindingly obvious solution, only you need to know about it. I didn't know you could filter the index because the last time I REALLY looked at an index,...
January 4, 2012 at 11:40 pm
Just noticed your by-line ...for "Row-By-Agonizing-Row"
Don't you just "curse OR" rant when that happens?:-)
January 3, 2012 at 9:59 pm
I certainly am not arguing with Phil, or the two posters. Maybe I'm just frustrated with some deadlock investigations where neither transaction was doing anything wrong, and if both had...
January 1, 2012 at 11:29 pm
Tom.Thomson (8/30/2011)
August 30, 2011 at 6:54 pm
I understand a page is 8000 bytes (close to but less than 8KB, close enough to call it 8k) and it reads pages to get the information from the DB,...
August 30, 2011 at 12:21 am
A big deal was made that a B+ tree isn't anything like a binary tree, so it isn't a modified binary tree.
1. A binary tree is a method of...
August 29, 2011 at 3:04 pm
Tom.Thomson (8/27/2011)
August 29, 2011 at 1:50 pm
OK, in my case there was a tinyint field, in the entire table, and that field had only one value. I know what that value is. The second field was...
August 28, 2011 at 4:48 pm
GilaMonster (8/28/2011...
If it is defined as the first column of the primary key, then it is the leading column of the index key. Order of columns in an index key...
August 28, 2011 at 2:41 pm
It sounds like you are getting hit with conversion of string in VB to Decimal in SQL as a problem.
Executing:
declare @val varchar(20) = '-83.911', @bval DECIMAL(20,15)
set @bval=@val
select @bval,...
August 28, 2011 at 12:39 pm
I agree that all fields in the index are stored in the index binary tree structure, in fact, I believed that when I set up the primary key of the...
August 28, 2011 at 11:25 am
Great, I replied to a newbie and the engine goes to the end of the queue.
June 4, 2011 at 4:46 pm
Your query does make sense, but because you are new, you didn't realize this is not a deadlock situation, it is a blocking situation. In order for a deadlock to...
June 4, 2011 at 4:42 pm
In this example you imply both queries are locked by the other in the first set of queries. The first query has achieved all the locks needed to complete the...
June 4, 2011 at 4:07 pm
Craig Farrell (3/21/2011)
March 21, 2011 at 6:32 pm
Viewing 15 posts - 1 through 15 (of 28 total)