Forum Replies Created

Viewing 15 posts - 4,936 through 4,950 (of 19,560 total)

  • RE: Eliminate duplicate in the same column

    Here's an article on how to do that

    http://jasonbrimhall.info/2011/03/21/dedupe-data-cte/

    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!

    john.arnott (3/8/2013)


    Revenant (3/8/2013)


    SQLRNNR (3/8/2013)


    opc.three (3/8/2013)


    JAZZ Master (3/8/2013)


    crookj (3/8/2013)


    SQLRNNR (3/7/2013)


    crookj (3/7/2013)


    Daniel Bowlin (3/7/2013)


    Help

    Support

    Truss

    Tether

    Tie

    Bolo

    Whip

    Rawhide

    Eastwood

    West Side

    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: Move Primary Key to File Group?

    If you feel you must move them, then script out the drop statements for the FKs, script out the table move to the new filegroup, and then script out 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: Move Primary Key to File Group?

    Quick article on how to do this here

    http://saveadba.blogspot.com/2012/02/move-clustered-index-new-filegroup.html

    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: Query optimization

    You can probably get better performance by creating an index on intID and bintTimeStamp.

    But you really should not do select * in these queries for better performance.

    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: My FIrst Web Report Problem

    alan_lynch (3/8/2013)


    ok I seem to have got a little further with the deploy thing past the permissions problem I am now facing another problem which is

    Cannot deploy the report because...

    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!

    opc.three (3/8/2013)


    JAZZ Master (3/8/2013)


    crookj (3/8/2013)


    SQLRNNR (3/7/2013)


    crookj (3/7/2013)


    Daniel Bowlin (3/7/2013)


    Help

    Support

    Truss

    Tether

    Tie

    Bolo

    Whip

    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 can you issue a full backup and not interrupt the LSN's

    GilaMonster (3/8/2013)


    UncleBoris (3/7/2013)


    Very happy to be corrected but is it true that the Log Chain is only interrupted by the full backup IF the backup regime does Differential backups?...

    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: SubQuery

    mtassin (3/8/2013)


    SQLRNNR (3/7/2013)


    Looks like we may have a fun day with this question.

    Well.... probably.... I got it right... I noticed the backwardsness... but the other two were obviously wrong... always...

    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: SubQuery

    Christian Buettner-167247 (3/8/2013)


    I like the question as it leads to some interesting observations 🙂

    Upfront: The MSN article is for SQL Server 2000! Here is the link to the version for...

    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: Page life expectancy diving to sub-10 on a 128 GB server

    Which Patch level of 2012 are you running?

    RC0

    RTM

    or SP1?

    I ran into an issue like this on a Win7 box with RC0 that was excessively frustrating. In the end, I...

    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: Query optimization

    And please post index definitions.

    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: SQL Express 2005 instance is not starting up

    The size of that database is not preventing your instance from starting. Check the logs and see if you have another error when you try to start the service...

    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: Maintenance Plan issue

    What is the error?

    What is the message from the maintenance plan log?

    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: SQL Express 2005 instance is not starting up

    Manually grow your log file (it seems your instance is started since you were able to retrieve those db settings already).

    USE [master]

    GO

    ALTER DATABASE [DatabaseName] MODIFY FILE ( NAME = N'DATABASENAME_Log',...

    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 - 4,936 through 4,950 (of 19,560 total)