Forum Replies Created

Viewing 15 posts - 196 through 210 (of 321 total)

  • RE: Sort Order - Include Null al last

    Lynn,

    Well put. I couldn't have said it better myself.

    (I considered doing a quoted reply, but I wasn't sure whether or not we get points for acreage.)

    😀

  • RE: Cloning

    Steven Cameron (6/25/2008)


    How many shops don't have a development or testing server to clone it to?

    How much is SQL Server Developer Edition? $150.00? Something like that. Doesn't have to run...

  • RE: Cloning

    Why not just throw it on to a Developer instance?

  • RE: Sort Order - Include Null al last

    I suppose we could probably put our subscription fees to better use.

    :smooooth:

  • RE: Sort Order - Include Null al last

    Steve must be off for a couple of days. The newsletter was published today, but I didn't get it by email. The editorial was by Tony. After he sees this...

  • RE: The Core

    All you really need to know is how to open a command window and type "HELP".

  • RE: The Core

    It does require an understanding of the Command language (formerly DOS). Do they even teach that any more?

  • RE: Sort Order - Include Null al last

    Perhaps they figured out how much fun we have reviewing them ourselves.

    :hehe:

  • RE: Create Temporary Tables Dynamically in cursor loop

    elmerbotha (6/23/2008)


    Thanks a lot! I will see how I can implement all that you've given me. Regarding throwing away useless values and replacing them: The store procedure returning the result...

  • RE: Sort Order - Include Null al last

    sl.sajeev (6/23/2008)


    Yes you are correct. Actually i posted it as a question with only the second one as correct answer.

    sl.sajeev (6/23/2008)


    Yes you are correct. Actually i posted it as a...

  • RE: Sort Order - Include Null al last

    smunson (6/23/2008)


    This is despicable - a QOTD where the supposedly correct answer is quite clearly incorrect, unless you happen to take an extraordinarily ODD interpretation of the question and assume...

  • RE: Sort Order - Include Null al last

    evifra (6/23/2008)


    "You have a table with EmpName and DateOfLeaving columns. The EmpName column is mandatory, but DateOfleaving will have null value for those employees who have not left the company....

  • RE: Sort Order - Include Null al last

    Select EmpName, DateOfLeaving from Employees order by DateOfLeaving desc, EmpName asc

    That's just wrong. :hehe:

    DECLARE @Employees table (

    EmpName varchar(5),

    DateOfLeaving datetime

    )

    insert into @Employees select 'Abc', '10 Oct 1999'

    insert into...

  • RE: The Core

    After losing a 10 minute reply to some kind of session timeout :w00t:, I'm going to just brief it now.

    Great, true, and positive stuff has already been posted.

    I'm a .NET...

  • RE: Best Practices for Database Design

    paulhunter (6/21/2008)


    What a let down. I was expecting an article on good database design practices. Instead we're treated to another diatribe on naming conventions. About the only...

Viewing 15 posts - 196 through 210 (of 321 total)