Forum Replies Created

Viewing 15 posts - 496 through 510 (of 1,034 total)

  • RE: Disable print in a stored procedure - TSQL - Example: Print 'This is my result'

    siddharth.malhotra (11/4/2011)


    Yes, Lowell

    That is the problem. I need to disable the outputs like the ones you specified.

    Regards,

    Sid

    Did you try putting SET NOCOUNT ON before the stored procedure is executed?

  • RE: Parameters

    MarkusB (11/3/2011)


    I agree with Philip, non of the given answers is correct.

    The question explicitly says 2005 or higher, but the result on a 2005 server is different from a 2008...

  • RE: Update table

    Carla Wilson-484785 (10/24/2011)


    Hugo Kornelis (10/24/2011)


    PS: There's even one more way to achieve the intended change:

    UPDATE TOP(1) Table1

    SET Column1 = 0

    WHERE Column1 = 1;

    Since row order in...

  • RE: Update table

    hakan.winther (10/24/2011)


    charlietuna (10/23/2011)


    The solution seems a bit opaque. Something like this is (to me) much more straightforward for the next person who has to read it:

    update #t

    set col1 = case...

  • RE: Wide table performance issue

    Ninja's_RGR'us (10/20/2011)


    Just to make this 100% clear : UNION ALL.

    Sorry, but yes. UNION ALL, UNION except when actually needed is bad ju-ju 🙂

  • RE: SSMS R2 - want all copy/pastes and exports "NULL" -> blank

    Rather than copy/pasting into excel, why not use Excel's Microsoft Query option and have Excel run the query and do the import?

    When that happens Excel will blank out the NULL...

  • RE: Wide table performance issue

    rajiv.varma (10/20/2011)


    Thats a design issue that I need to take up with my boss. He wants all the data (Yes, the entire 7 years) ready to be reported. No archival....

  • RE: Resource Pools

    DugyC (10/20/2011)


    I knew we were in trouble with this one when it asked for 3 answers but I could find only 2 that were clearly true.

    Went with 2 answers hoping...

  • RE: Elementary Key Attributes

    L' Eomot Inversé (10/6/2011)


    mtassin (10/5/2011)


    I think a big part of this is the flavor of Normalization Kool-aid we're using.

    For instance, this paper that's referenced isn't necessarily Normalization Form mainstream.

    I find...

  • RE: Elementary Key Attributes

    L' Eomot Inversé (10/6/2011)


    mtassin (10/5/2011)


    Another note.. go to http://www.google.com and type in EKNF and BCNF. I know which one you'll get an immediate hit on.

    I was pretty sure that...

  • RE: Elementary Key Attributes

    L' Eomot Inversé (10/5/2011)


    I'm not particularly upset, just a bit worried that people don't appear to remember this stuff. And if there is a better known terminology that the...

  • RE: Rebuilding The Master Database

    Good question,

    I had it right, then I thought to double check myself and searched out rebuildm.exe

    didn't realize I hit the Msdn article for SQL 2000 and picked the wrong answer...

  • RE: Table variable vs temp table

    Thomas Abraham (10/3/2011)


    I got it wrong, so I tested it on my own system. (2008 R2 - 2005 not available)

    Results for table variable, in ms: 80800, 80203, & 79523

    Results for...

  • RE: An interview with Jeff Moden: Exceptional DBA of 2011 and natural helper

    He calls himself an “Accidental DBA.” His title at DiscoverReady is Lead Application DBA and Data Architect. He’s known as a writer for SQLServerCentral.com whose articles are often...

  • RE: No column informatin was returned by the SQL command

    I finally solved this...

    After all my attempts using an OLE DB Data Source,

    I changed the data source for the queries that gave me this trouble to ado.net data sources,...

Viewing 15 posts - 496 through 510 (of 1,034 total)