Forum Replies Created

Viewing 15 posts - 4,801 through 4,815 (of 19,560 total)

  • RE: Query to get list of SSIS packges in a Server

    The best solution for that problem is good documentation. You need to know where the packages are being stored and what processes use said packages.

    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: HIgh CPU usage by SQLserver.exe

    Is this a newer physical server that you have SQL installed on?

    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: Passing Tables as Parameters

    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: Query to get system databases

    SELECT name

    FROM sys.databases

    WHERE database_id <= 4

    /*

    Report Services where collation has not been changed from default

    Inclusion of SSRS dbs is questionable as system databases

    */

    OR (name LIKE '%ReportServer%'

    AND collation_name = 'Latin1_General_CI_AS_KS_WS')

    /*

    Catch...

    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: guide me

    Along the same vein as Grant started:

    Who does the performance tuning for your SQL Server (tsql etc)?

    That will give you a lot more experience

    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: Add data file in mirroring

    opc.three (3/23/2013)


    gantavasu (3/23/2013)


    Here i have configured the mirroring. after that i want to add the data file to primary.

    can we add the data file?

    if we add is there any impact...

    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: Alias / CTE alternative

    Generally, I'd opt for a single update statement. If that means retyping the calculations for dependent columns - so be it. You create a stored procedure and your...

    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: guide me

    It largely depends on what your future plans are. If you intend to continue with SQL Server or with creating reports in SQL Server - then the experience should...

    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: Toggle Switches

    ijtroquim (3/22/2013)


    Now, DBAs come and go and systems get updated. Switches are good. But sometimes more importantly is you know what and more importantly why you want to toggle a...

    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: Zettabytes and Beyond

    Eric M Russell (3/21/2013)


    Eric M Russell (3/21/2013)


    majorbloodnock (3/21/2013)


    What I'd like to know is how much the sum of human knowledge has grown in the same time.

    . . .

    Good point.

    ...

    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: Serious Storage

    Here we are talking about the massive storage and where it might be in 10 yrs or so. I am sitting on the other hand thinking that these large...

    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: Implementing RBAC

    Steve Jones - SSC Editor (3/22/2013)


    Are you saying you want a read only and a read/write role? Separate from db_Datereader/writer?

    That's easy to script.

    loop through all tables in all databases, grant...

    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 store SQL Server job code and stored procedure in SVN Repository

    Use stored procedures for any jobs and store the stored procedure in SVN

    or

    Script the job as a drop create and store that statement in SVN.

    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!

    crookj (3/22/2013)


    Stuart Davies (3/22/2013)


    L' Eomot Inversé (3/22/2013)


    Revenant (3/22/2013)


    Terry300577 (3/22/2013)


    Yegg

    Scrambled Yeggs

    Not permitted in the USA: scambling a Yegg would be a cruel and unusual punishment.

    True - but they might deserve it

    May...

    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: CASCADE - 1

    Thanks Ron

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