Forum Replies Created

Viewing 15 posts - 9,436 through 9,450 (of 19,560 total)

  • RE: In-CASE you need to SUM...

    nice 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: Today's Random Word!

    pipe

    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: Would you change to a better job for a lot less money?

    GSquared (7/11/2011)


    If the only problem were boredom, I'd say stay with the current job and work on honing your skills and knowledge during your "downtime". The primary duty 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: i need some links for competative questions.

    Welsh Corgi (7/10/2011)


    Someone ask me if Kaplan's Self Test Software and Transender violate the NDA?

    Your input is greatly appreciated.

    http://www.selftestsoftware.com/generic.asp?page_id=p00579

    I would dare say they appear to but Microsoft does not think...

    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: Help SQL Query

    You're welcome.

    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: Help SQL Query

    This should work for you

    Declare @asofDate Date = '1/1/2011'

    ;

    With accesslevel as (

    Select Custid,AccessLevel,DateTimeChanged

    ,rowid = ROW_NUMBER() over (PARTITION by custid order by datetimechanged desc)

    From #Customers

    Where DateTimeChanged <= @asofDate

    )

    Select Custid,AccessLevel,DateTimeChanged

    From accesslevel

    Where rowid...

    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: shut down SQL server

    First make sure there are no more connections being made to the database.

    Then shut down the service.

    Then go ahead and shut down the server.

    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: Restore DB manually

    Copy the files from that location to any location you wish. You will then need to attach those files inside of SSMS.

    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: Error when generating script from SSMS

    You can query the sys.sql_expression_dependencies catalog view.

    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: Performance Dashboard

    Sessions refers to users connected during that time-frame to the database.

    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: Error when generating script from SSMS

    There is an object (in the db you are scripting) that is referencing an object in that other database. That reference creates a dependency and the user scripting this...

    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!

    Brandie Tarvin (7/8/2011)


    crookj (7/8/2011)


    SQLRNNR (7/8/2011)


    Brandie Tarvin (7/8/2011)


    SQLRNNR (7/8/2011)


    STUMPED

    Floured.

    Tarred

    Feathered

    Boa

    Constrictor

    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: Restore DB manually

    \Program Files\Microsoft SQL Server\MSSQL10.<InstanceID>\

    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!

    Brandie Tarvin (7/8/2011)


    SQLRNNR (7/8/2011)


    STUMPED

    Floured.

    Tarred

    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: Self-aware Instances

    Elliott Whitlow (7/8/2011)


    ...If you have things that you want to monitor often it makes sense to have the instance gather and store that information for later pickup. For most...

    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 - 9,436 through 9,450 (of 19,560 total)