Forum Replies Created

Viewing 15 posts - 1,261 through 1,275 (of 18,926 total)

  • RE: Help with a Select against sys.databases

    Ninja's_RGR'us (11/14/2011)


    P.S. Check the default trace, I think it holds that information (except maybe who did it).

    I can find it if it was restored, but not if it was made...

  • RE: Unnecessary SORT operation

    rewrite the query to NOT use views and only the minimum amount of objects and the optimiser will most likely pick a better plan (if possible).

  • RE: Help with a Select against sys.databases

    P.S. Check the default trace, I think it holds that information (except maybe who did it).

  • RE: Help with a Select against sys.databases

    SELECT

    DATEADD(D , 0 , DATEDIFF(D , 1 , GETDATE())) AS CreatedSince

    , create_date AS CreatedOn

    , *

    FROM

    sys.databases

    WHERE

    ...

  • RE: database file size growing but rows / tables not

    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/13/2011)


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


    I know I did. Just not sure if it was this exact version :-D.

    So, i checked my email and...

  • RE: Today's Random Word!

    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    crookj (11/14/2011)


    Ninja's_RGR'us (11/11/2011)


    SQLRNNR (11/11/2011)


    Ninja's_RGR'us (11/11/2011)


    Confusing with Britney?

    Well they did kiss. I could see how that mistake could be made.

    Good point! 😀

    Adds a whole new meaning...

  • RE: Why is "Select *" bad in any SQL code?

    You mean aside from ddl change, performance, network overuse, column order change, performance, indexes being useless, not seing the list of columns when working on the code?

    so aside from bad...

  • RE: database file size growing but rows / tables not

    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/13/2011)


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


    I know I did. Just not sure if it was this exact version :-D.

    So, i checked my email and the blog...

  • RE: Today's Random Word!

    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    crookj (11/14/2011)


    Ninja's_RGR'us (11/11/2011)


    SQLRNNR (11/11/2011)


    Ninja's_RGR'us (11/11/2011)


    Confusing with Britney?

    Well they did kiss. I could see how that mistake could be made.

    Good point! 😀

    Adds a whole new meaning to lip...

  • RE: Why is my SELECT query slower when the table is indexed?

    Those are estimated plans, we need to real (actual) plans. There's critical info in there to debug this.

  • RE: database file size growing but rows / tables not

    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/14/2011)


    Ninja's_RGR'us (11/14/2011)


    SQLRNNR (11/13/2011)


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


    I know I did. Just not sure if it was this exact version :-D.

    So, i checked my email and the blog and didn't...

  • RE: Conditionally updating columns cross-table in a very large dataset

    Any news? I thought this was urgent! 😉

  • RE: report calling report... which ignores the parameters?

    Drop both reports on the server and redeploy. There's a bug about parameters in 2K5. I don't know if or when it was fixed.

  • RE: A virtual copy of a database is that possible?

    Any reason why they can't do a copy of the db overnight (backup / restore).

    Then during the day do everything AS begin tran, rollback tran so that they keep it...

  • RE: Is this possible? Two questions by a newbie.

    Classic demand / mistake.

    Either return the date of the first of the month or return YEAR and month in 2 separete columns.

    Then sort by those values, but present the month...

Viewing 15 posts - 1,261 through 1,275 (of 18,926 total)