Forum Replies Created

Viewing 15 posts - 54,211 through 54,225 (of 59,068 total)

  • RE: is there any difference between != and <>

    Shaun McGuile (11/9/2007)


    != is th inequality in C# get used to it as CLR programming takes off!:hehe:

    Heh... good point. But have had this argument with many other folks... there's...

  • RE: Tale of <> Operator

    Although the "OR" in your example allows each value to be matched and displayed, it does not form a Cartesian product...

    DECLARE @TableA TABLE (SNo CHAR(1),ENo INT)

    INSERT INTO @TableA (SNo,ENo)

    SELECT...

  • RE: Best practice for applying set based updates

    Sure... how many rows in the temp table?

  • RE: Querying remote database

    I don't know for sure... but I think it's highly unlikely that MySQL will have the same nameing structure convention... never mind a user called "dbo".

  • RE: Loop Query of Data

    SO... what does all of that mean? Did you use Ramesh's solution or not? If not, would you post your solution, please?

  • RE: Aggregate Function

    Perfect, John...

  • RE: Add 3 columns into another column

    You give up too soon 😉

    [font="Courier New"]DECLARE @CrLf char(2)

    SET @CrLf = Char(13) + Char(10)

    SELECT COALESCE(NULLIF(Add1,' ') + @CrLf, '') + COALESCE(NULLIF(Add2,' ') + @CrLf, '') + COALESCE(NULLIF(Add3,' ') + @CrLf,...

  • RE: Case expression problem

    Jason Selburg (11/8/2007)


    Thanks Jeff! I've never worked with Oracle so that info was very informative ... :hehe:

    You bet, Jason... thanks for the feedback...

    ps. I hate Oracle 😛

  • RE: Having problem deleting through a cursor - newbie

    Heh... thanks for the feedback... I actually wrote a cursor once or twice... it was to show how slow they were... 😉

  • RE: Need input on how to combine queries that return counts

    Greg,

    I'm working on a couple of work arounds and a full "wish list" to Tony... I'll get back on these formatting issues... just not right now...

  • RE: Script

    edit math error...

    Ummm... what's that mean? :blink:

  • RE: Parallel Processing of Large Volume ETL Jobs

    RAGHAVENDRA NARAYANA (11/8/2007)


    Large volume means number of rows and data size of source(s) that need to be processed into the target system by applying good amount of complex validation/filtration/transformation logics....

  • RE: INSERT A Record Based on Count

    Actually, after you asked, I did a bit more testing and I was completely backwards in my statement.

    Using the testing code below I got a 3% to 97% comparison.

    Where the...

  • RE: tempdb ballooned

    Heh... sounds to me like someone wrote an accidental Cartesian join and decided to wait for it to complete...

  • RE: INSERT A Record Based on Count

    Jason Selburg (11/8/2007)


    Wow, that's pretty nice PW!

    Trigger, can you run both of these against your data and get the execution stats. My test shows PW's is a HUGE amount faster.

    First,...

Viewing 15 posts - 54,211 through 54,225 (of 59,068 total)