Forum Replies Created

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

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

  • RE: Script

    Do you have a script to do this one at a time?

  • RE: Converting a query with *= to ansi conform join operators

    Do you know what *= means?

  • RE: Performance Tuning

    I just started going through the free chapter... glad to see there's some consideration for writing good code in there... maybe there's more in the rest of the book, but...

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