Forum Replies Created

Viewing 15 posts - 4,801 through 4,815 (of 19,564 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.

  • RE: HIgh CPU usage by SQLserver.exe

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

  • RE: Passing Tables as Parameters

    thanks for the question

  • 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...

  • 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

  • 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...

  • 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...

  • 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...

  • 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...

  • 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.

    ...

  • 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...

  • 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...

  • 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.

  • 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...

  • RE: CASCADE - 1

    Thanks Ron

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