Forum Replies Created

Viewing 15 posts - 346 through 360 (of 455 total)

  • RE: The Office

    I always take surveys like this with a sizeable helping of salt. People in general are not good at self-assessment (see for example http://en.wikipedia.org/wiki/Illusory_superiority).

    I'd guess that if 60% of people...

  • RE: Slipstreaming SP\CU During Setup

    Most of us by now have encountered the issues with the RTM SQL Server 2008 installation media...

    Therefore some of us have not.

    In the interest of sating my (perhaps irrational)...

  • RE: sp_tables

    Hugo, I do hope that you've posted the same excellent analysis as a comment to the Microsoft documentation... 😛

  • RE: T-SQL GO statement

    da-zero (11/23/2010)


    I like the point the question tried to make, namely using the GO statement as an instrument to loop, but I do not like the trickery with the #...

  • RE: temp table in sysobjects

    Carlo Romagnano (11/22/2010)


    Carlo Romagnano (11/22/2010)


    WayneS (11/22/2010)


    BTW, the best way to check for the existance of a temporary table in your current session is:

    IF OBJECT_ID('tempdb..#YourTempTable') IS NOT NULL

    Note that in SQL...

  • RE: Indexed Views

    jts_2003 (11/16/2010)


    A good introductory article, but I think people need to be careful when looking into using Indexed Views.

    I recently added a view to a 3rd party application and thought...

  • RE: Creating Dynamic Outputs in SSIS to an SQL Database

    Samuel Vella (11/10/2010)


    fszendzielarz (11/10/2010)


    Oh yes. I forgot about that.

    Doesn't it seem ridiculous that functionality that is already implemented is disabled for those who cannot pay for it? The irony...

  • RE: Working with null values in SQL XML

    Of course, if you're storing your value in an attribute, NULL is represented by the absence of the attribute in the record element, and SQLXML deals with that fine.

    Except for...

  • RE: Fun with IDENTITY - Part I

    Good question. It would have been more difficult if there had been an option for 1-Boston;2-New Delhi

  • RE: ISNUMERIC

    jlennartz (9/27/2010)


    ...With Hugo's explaination it all became clear.

    It generally does. 😀

  • RE: ISNUMERIC

    jlennartz (9/27/2010)


    The discussion usually answer my questions but not this time. Doesn't "isnumeric(char(32)) as n" return 0? And if so wouldn't "select sum(n) from l" also...

  • RE: ISNUMERIC

    Thanks for the good discussion. For the record, I agree with Hugo -- ISNUMERIC doesn't give you very good information because it's test is overly broad.

    For example,

    \- ...

  • RE: ISNUMERIC

    foxxo (9/27/2010)


    Does the CTE with UNION ALL increment i? It needs to increment in each column? I no comprehende

    Yes. This technique is called a recursive CTE. It's a...

  • RE: Design

    Hugo Kornelis (9/24/2010)


    tommyh (9/23/2010)


    Have to agree with UMG Developer. The "Multiple identifier columns" shouldnt be part of the answer for 2 reasons.

    1. Its not part of MS recommendations (atleast not...

  • RE: backup database

    Dave62 (9/22/2010)


    sknox (9/22/2010)


    ... --other data changes (e.g, by other users) are not rolled back. In this case, the items related to a backup are the backup file itself, and the...

Viewing 15 posts - 346 through 360 (of 455 total)