Forum Replies Created

Viewing 15 posts - 9,886 through 9,900 (of 10,144 total)

  • RE: Human Power

    I have to admit, when I saw

    Wally Wallington...(Thanks Curtis Curtington)

    it crossed my mind that this was an early April Fools prank, but no, not at all. Very impressive...

  • RE: Inserting a Row into a recordset

    Tomm Carr (3/19/2008)


    Yes. But in reading your original post, I thought that's what you wanted when you said, "regardless if they have data for them."

    Yep Tomm, you're right: But the...

  • RE: Inserting a Row into a recordset

    Tomm Carr (3/19/2008)


    Am I missing something or are you guys making this much more difficult than it should be? In general, you can do this:

    select

    from whatever-to-get-original-resultset

    union

    select

    from...

  • RE: Inserting a Row into a recordset

    Hi Art

    Does the query give you the results you are expecting and have you checked that they are correct? Can you post the whole query please?

    Cheers

    ChrisM

  • RE: Scheduling data extraction to excel

    Ahmad Osama (3/19/2008)


    Thanks chris.. y dont u write an article for the same....:)

    You're welcome, Ahmad. Hope it helps. I'm sure people will chip in with their expertise in the areas...

  • RE: I got burned today at a SQL Server Interview!

    Brandie Tarvin (3/19/2008)[hr

    Oooohhh. Idea!!! :exclamationmark: Let's build our own maturity test. We've already got some of the basics in this very thread (RPG / Exotic Foods / Etc.)......

  • RE: Inserting a Row into a recordset

    Art

    If you switch your LEFT JOIN to dbo.OrderFormLineItem for a derived table which performs the aggregate to obtain the most recent shipping date, then you could get lucky and lose...

  • RE: I got burned today at a SQL Server Interview!

    jburkman (3/19/2008)


    Four years teaching master's level Oracle Application Development

    Erm, Oracle Application Developer? The only one of these I know is rarely off-piste at around £500-£700 per day. Yep, them's British...

  • RE: Scheduling data extraction to excel

    Hi Ahmad

    Your original question arises so frequently that it it would be worth answering your last question in a formal manner, as a permanent reference. But for now, as I...

  • RE: I got burned today at a SQL Server Interview!

    :Whistling:

  • RE: I got burned today at a SQL Server Interview!

    Tim Mitchell (3/18/2008)


    Geoduck.... I think my wife drove one of those back in college. Great gas mileage...

    Nope, that was a Moden 😛

  • RE: Scheduling data extraction to excel

    It comes down to using a tool you feel comfortable with to do the job really doesn't it?

    Jeff, you like playing with macros in Excel - I used to...

  • RE: I got burned today at a SQL Server Interview!

    Roy Ernest (3/18/2008)


    How in heavens name did we end up with exotic food when talking about interview:D

    Since the topic is already there, has anyone had Bat? You know , the...

  • RE: Scheduling data extraction to excel

    Good luck, Ahmad!

    To be honest, this isn't how I write to Excel using SQL Server, as I mentioned earlier. I use TSQL to copy/rename an Excel template, then server linking...

  • RE: how to filter data from storeprocedure

    Use derived tables in preference to temporary tables, and as Grant states, avoid using DISTINCT:

    SELECT *

    FROM FIRSTTABLE s

    INNER JOIN (SELECT PKID

    FROM SECONDTABLE

    GROUP BY PKID) d

    ON d.PKID = s.PKID...

Viewing 15 posts - 9,886 through 9,900 (of 10,144 total)