Forum Replies Created

Viewing 15 posts - 8,656 through 8,670 (of 8,760 total)

  • RE: Nesting xml

    Jeff Moden (4/1/2014)


    Eirikur Eiriksson (4/1/2014)


    Please post proper DDL and enough data, the problem is straight forward from there.

    If you're going to tell people that, then you need to tell them...

  • RE: LINQ vs SQL Questions

    Sean Lange (4/2/2014)


    JoshDBGuy (4/2/2014)


    I've run into issues in the past dealing with extremely poorly written queries with LINQ.

    Ditto 😎

    Using stored procedures is a good practice, a) how it retrieves the...

  • RE: DBCC CHECKDB fails to run

    First thing that comes to mind is a disk space or (EDIT) VM max size config kind of problem.

  • RE: Database and its Objects Naming Standards

    MY_TWO_CENTS

    Naming conventions are primarily to enforce consistency, readability and prevent ambiguity. A good solid naming convention is worth hundreds of pages of documentation on a large system.

    😎

  • RE: How do I select all or multiple rows from a typed xml variable?

    This should work on 2K5

    DECLARE @XML XML = N'<DetailRows>

    <DetailRow>

    <MonthNumber>1</MonthNumber>

    <Amount>1000</Amount>

    </DetailRow>

    <DetailRow>

    <MonthNumber>11</MonthNumber>

    ...

  • RE: The new 3D Joins in SQL Server 2014

    Koen Verbeeck (4/2/2014)


    I believe this is a late April Fools topic...

    Correct 😛 found everything about it on BOL under AFD....

  • RE: Are cursors hard on servers?

    Luis Cazares (4/1/2014)


    I'm not sure that I agree with Eirikur about saying "it depends". I'm sure that cursors are always hard on servers, but some methods can be worse (e.g....

  • RE: Script out passwords

    0x42657474657220746F2072656D61696E2073696C656E7420616E642062652074686F75676874206120666F6F6C207468616E20746F20737065616B206F757420616E642072656D6F766520616C6C20646F7562742E

    😎

  • RE: Are cursors hard on servers?

    Most of the time cursors can be avoided but it's not a religion, there are tasks which do justify the use of cursors. Obviously if an operation can be achieved...

  • RE: Nesting xml

    lmnorms (4/1/2014)


    Sorry for posting in the wrong forum. I can move it if necessary.

    No worries, but do you have any sample data and table structure? Makes it easier to...

  • RE: Nesting xml

    Please post proper DDL and enough data, the problem is straight forward from there.

  • RE: SSIS Package not failing?

    Hard to tell what is wrong without inspecting the code, can you share it?

  • RE: SSIS Package not failing?

    Do you have any event handlers configured in the package, sometimes those are overlooked?

  • RE: Help With WHERE Statement

    Luis Cazares (3/31/2014)


    Eirikur Eiriksson (3/31/2014)


    Luis Cazares (3/31/2014)


    Here are 2 other options.

    WITH Contacts AS(

    SELECT INS.INSPNO, CNT.FIRSTNAME, CNT.LASTNAME, CNT.CAPACITY,

    ROW_NUMBER() OVER( PARTITION BY INS.INSPNO ORDER BY CASE WHEN Capacity = 'Contractor' THEN -1...

  • RE: VB6 application connection timeout errors on Sql Server 2000

    dmbaker (3/31/2014)


    I'm not saying that you should debug the code, I'm saying that you should *insist* that the developers give you the queries being executed when a timeout occurs. Is...

Viewing 15 posts - 8,656 through 8,670 (of 8,760 total)