Forum Replies Created

Viewing 15 posts - 21,076 through 21,090 (of 26,484 total)

  • RE: Concurrency Question

    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...

  • RE: Concurrency Question

    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...

  • RE: Are the posted questions getting worse?

    GilaMonster (5/8/2009)


    Lynn Pettis (5/8/2009)


    Speaking of which, Gail, I had a couple of UBD moments with your article

    UBD?

    Thanks, I'll send it to Steve over the weekend.

    UBD -- User Brain Damage ...

  • RE: Concurrency Question

    noeld (5/8/2009)


    Julius,

    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...

  • RE: Are the posted questions getting worse?

    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)...

  • RE: Are the posted questions getting worse?

    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....

  • RE: Concurrency Question

    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...

  • RE: General Network Errors

    Roy, can you post the exact error messages you are getting please.

  • RE: Are the posted questions getting worse?

    Roy Ernest (5/8/2009)


    Not all Indians are Mor**s like him with a MSA degree (I know MSc but not MSA) ...heheheh Me, I am an Indian with just one Bachelors degree...

  • RE: Are the posted questions getting worse?

    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...

  • RE: Are the posted questions getting worse?

    RBarryYoung (5/7/2009)


    Lynn Pettis (5/7/2009)


    The really sad part, he is probably working on an off-shore project for some sap company here in the US that thinks they have someone with a...

  • RE: Are the posted questions getting worse?

    The really sad part, he is probably working on an off-shore project for some sap company here in the US that thinks they have someone with a Masters degree working...

  • RE: Are the posted questions getting worse?

    RBarryYoung (5/7/2009)


    Lynn Pettis (5/6/2009)


    I refuse to post a link, but I really want to know what our favorite PhD candadate learned while in school for his current degrees.

    I'm also curious...

  • RE: DECIMAL,calculation,truncation

    karthikeyan (5/7/2009)


    Lynn Pettis (5/6/2009)


    karthikeyan (5/6/2009)


    I tried the below code

    DECLARE @Fixed1 decimal(8,4), @Fixed2 decimal(8,4), @Fixed3 decimal(16,8);

    SET @Fixed1 = 5444.32;

    SET @Fixed2 = 12121.03; <-- Problem is here. decimal(8,4) means you...

  • RE: DECIMAL,calculation,truncation

    karthikeyan (5/7/2009)


    Lynn,

    Yes.It will work.. But I have more than one row in the table,so i can't use local variable here, becuase it lead us to use 'LOOP'.

    Really, and you know...

Viewing 15 posts - 21,076 through 21,090 (of 26,484 total)