Forum Replies Created

Viewing 15 posts - 11,326 through 11,340 (of 19,560 total)

  • RE: how to find the Space consumed by a each column in sql server 2005?

    That will take a bit of extrapolation. If you know the data types, and by knowing the storage requirements for the data types you can begin calculating the space...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: How to know who made the changes in Table structure

    David Benoit (12/21/2010)


    If the default trace is enabled (default is on) then you can use the script HERE [/url]to read through that and find out possibly.

    That is an excellent recommendation.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Index usage in a server

    This should get you going in the right direction. Make sure to read the linked articles in this link.

    http://www.sqlservercentral.com/blogs/stratesql/archive/2010/12/14/can-you-dig-it_3F00_-_1320_-missing-indexes.aspx

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Professional Ethics

    bitbucket-25253 (12/21/2010)


    Anthony Johnson-756248 (12/21/2010)


    Please provide data access controls that should be a standard to the database administration and data control areas of the community.

    Your question is rather vague, however you...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: How to know who made the changes in Table structure

    Two options are:

    1. Have Auditing enabled

    2. Ask around to find out who changed it.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Acceptable value for 'Rows Per Page'

    upstart (12/21/2010)


    I stumbled across an interesting script at SQLFOOL[/url] for Estimating the number of Rows Per Page. The article mentioned that 'if you have a low number of...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: 64 bit

    paul.knibbs (12/21/2010)


    I wonder just how many SQL Server Express installations there are out there doing major workloads--that's 32-bit only (and limited to 1Gb of RAM to boot)! So long as...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Automate Sliding Window Partition Maintenance: Part II

    Thanks for continuing the series on this subject.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Are the posted questions getting worse?

    Roy Ernest (12/21/2010)


    Our resident Kiwi, Paul being recongnized in the 12 days of Christmas series[/url].

    Well done Paul.

    Yes - well done.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Summary data - TSql

    stewartc-708166 (12/21/2010)


    This is possible in T-SQL,

    SELECT CustomerName, CustRefNo, InvNo, invoiceamount

    FROM #customer

    UNION ALL

    SELECT CustomerName, CustRefNo, 'Total' AS InvNo, SUM(invoiceamount) AS invoiceamount

    FROM #customer

    GROUP BY CustomerName, CustRefNo

    ORDER BY 1,3

    However, if this is to...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Today's Random Word!

    Kit G (12/21/2010)


    Full Lunar Eclipse on the Winter Solstice

    (in the wee hours of the morning)

    Been about 460 years or so (round to an even 500 for ease) since that happened!

    Was...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: problem with CTE

    I'm not a fan of these kinds of PITAs either. Can you add more conditions to your where clause inside the CTE? When I add the fieldid column...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: Summary data - TSql

    Do you need to have the results displayed just the same as what you displayed in your original post? Basically all the records for each customer and then the...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: SELECT TOP

    Thanks for the question.

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

  • RE: 64 bit

    I wonder how this statement holds up now.

    I think SQL Server will see more and more 64-bit installations, but they'll be the minority of installations

    I know that a vast majority...

    Jason...AKA CirqueDeSQLeil
    _______________________________________________
    I have given a name to my pain...MCM SQL Server, MVP
    SQL RNNR
    Posting Performance Based Questions - Gail Shaw[/url]
    Learn Extended Events

Viewing 15 posts - 11,326 through 11,340 (of 19,560 total)