Viewing 15 posts - 21,076 through 21,090 (of 26,490 total)
Dave (5/8/2009)
May 8, 2009 at 5:47 pm
Jamie Julius (5/8/2009)
Paul White (5/8/2009)
Jamie Julius (5/7/2009)
May 8, 2009 at 3:39 pm
Does this mean creating a view using the OPENROWSET function didn't work? It is how I got around not being able to use NEWID() in a function, I put...
May 8, 2009 at 11:22 am
Stepping back a moment, dealing with difficult users - the flip side (yes, my post dealing with us (me)).
The best way to "defeat" us is with information. The more...
May 8, 2009 at 10:49 am
Bob Hovious (5/8/2009)
For clarity, note that Bob's example also fails if READ_COMMITTED_SNAPSHOT is on.
Are you real sure about that Paul?
Did you try it? ...
May 8, 2009 at 10:40 am
Paul,
The problem we are having is that the OP is apparently dismissing everything without considering it in context. Yes, I have tested your devils advocate position and if you...
May 8, 2009 at 10:28 am
I'll accept the devils advocate position. But, can you make it fail when the optimistic concurrency features are not in use.
At this point, we actually don't know what transaction...
May 8, 2009 at 9:58 am
GilaMonster (5/8/2009)
Lynn Pettis (5/8/2009)
Speaking of which, Gail, I had a couple of UBD moments with your articleUBD?
Thanks, I'll send it to Steve over the weekend.
UBD -- User Brain Damage ...
May 8, 2009 at 9:30 am
noeld (5/8/2009)
Coding this way ( with exists ... ) is NOT needed at all.
Set up a primary key and if there is a collision handle the error accordingly.
Leave locking...
May 8, 2009 at 9:20 am
Florian Reischl (5/8/2009)
Bob Hovious (5/8/2009)
Flo, I'm really looking forward to your article... errr articles... errrr book.... I just hope it doesn't turn into your life's work.
The (first)...
May 8, 2009 at 9:16 am
Well, nothing wrong with a Masters by course work, that was my MA as well. Trust me, though, there was plenty of research work involved outside of the classes....
May 8, 2009 at 9:12 am
This:
begin transaction
select @rows = count(*) from dbo.SomeTable where SomeID = @SomeID;
if @rows = 0
insert into dbo.SomeTable values (@SomeID)
commit transaction
WILL NOT PREVENT two sessions from entering the...
May 8, 2009 at 7:58 am
Roy, can you post the exact error messages you are getting please.
May 8, 2009 at 7:46 am
Roy Ernest (5/8/2009)
May 8, 2009 at 7:41 am
I'd have to do some searching, might be in that thread he started when he mentioned he wanted to get his PhD, that the M.C.A. is a Master in Computer...
May 8, 2009 at 7:03 am
Viewing 15 posts - 21,076 through 21,090 (of 26,490 total)