Forum Replies Created

Viewing 15 posts - 676 through 690 (of 821 total)

  • RE: NULL Values and Joins

    vk-kirov (12/20/2010)


    No rows were inserted into table2? B not C is the correct answer? Terrible, terrible explanation 🙂

    The explanation is more terrible than the question: I should read it at...

  • RE: T-SQL

    There could be a super-secret release that offers the expression of a day number in base nineteen.;-):hehe::-D:-)

    The date 21 december 2012 depends on the fact that mayan DBA are still...

  • RE: T-sql

    Old question and repeated many times.

  • RE: Nested Temporary Tables

    Richard M Karpel (12/16/2010)


    Now, I read the section highlighted in BOL, and I expected to get the not defined error message, but I would need to look further and see...

  • RE: T-SQL

    cengland0 (12/16/2010)


    Carlo Romagnano (12/16/2010)


    the Mayan calendar shows the world will end on December 21, 2012 anyway.

    Mayan calendar BUG: 12/12/2012 is the end.

    :-D:-D:-D

    Actually, it's 12/21/2012

    It depends on "Regional Settings".

    :-D:-D:-D:-D

  • RE: Nested Temporary Tables

    The QOtD asks for what is the output of a specific script and this generates this error:

    Insert Error: Column name or number of supplied values does not match table definition.

    and...

  • RE: T-SQL

    the Mayan calendar shows the world will end on December 21, 2012 anyway.

    Mayan calendar BUG: 12/12/2012 is the end.

    :-D:-D:-D

  • RE: T-SQL

    We recommend specifying four-digit years.

    It's best to use the format 'yyyymmdd' because it's indipendent from "regional setting".

  • RE: Hidden Formatting Troubles with STR() (SQL Spackle)

    I always use this this syntax:

    RIGHT('0000000000' + CAST(SomeNumber AS VARCHAR(10)),10)

    Because I didn't know that STR() is also used for formatting, I thought it only converts string to number.

  • RE: Printing Lengths

    This is an old kind of COBOL bug:

    using bad datatype to hold integer:

    01 IDX PIC 9.

    PERFORM LBL VARYING IDX BY 1 UNTIL IDX > 10.

    Endless loop

  • RE: LIKE and = Operators

    When I realize that a command or option is deprecated, I stop to waste my time to use it.

  • RE: LIKE and = Operators

    Nils Gustav Stråbø

    Now, I understand because

    set ansi_padding off is deprecated, it's buggy.

  • RE: LIKE and = Operators

    Nils Gustav Stråbø (12/6/2010)


    Good question, thanks!

    Is it just me, or is there a bug in SQL Server when ANSI_PADDING is OFF (not that I've ever used it)?

    Let me demonstrate, and...

  • RE: LIKE and = Operators

    dawryn (12/6/2010)


    How can result have more rows than number of inserted rows :blush:

    The INSERT SCRIPT should be executed twice: one with ANSI_PADDING option set to ON and another one to...

  • RE: LIKE and = Operators

    Thank you! Finally a very good question.

Viewing 15 posts - 676 through 690 (of 821 total)