Forum Replies Created

Viewing 15 posts - 3,061 through 3,075 (of 7,164 total)

  • RE: Question about sys.dm_os_process_memory

    Perry Whittle (9/25/2012)


    opc.three (9/25/2012)


    I didn't think locked pages were part of the working set which is why Task Manager lies to us but maybe locked_page_allocations_kb is not what I am...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Database analisys tool

    vyas (9/25/2012)


    Use available DMV's it will not harm the perormence of the servers.

    Please be careful handiing out that advice. There are most certainly some DMFs that can cause issues and...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Reindex daily Job..

    If you have found fragmentation or low scan density and you want to run a daily job to remediate it I would recommend looking into this:

    http://ola.hallengren.com/sql-server-index-and-statistics-maintenance.html

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Question about sys.dm_os_process_memory

    dbasql79 (9/25/2012)


    One doubt.. Will above query include MemtoLeave memory also?

    As far as I know MemToLeave should be part of the working set, so yes, if I am understanding the columns...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Question about sys.dm_os_process_memory

    Perry Whittle (9/25/2012)


    No, it's not. This value

    locked_page_allocations_kb

    is a part of

    physical_memory_in_use_kb

    I didn't think locked pages were part of the working set which is why Task Manager lies to us but maybe...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SSIS - Connection Problem when outputting to an Excel Binary Workfile (.xlsb)

    You're welcome.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: db_owner and sysadmin unexpected behavior

    GilaMonster (9/25/2012)


    Any member of the sysadmin role has all permissions across the instance, is implicitly db_owner of all databases and cannot be denied anything.

    To be clear sa is implicitly the...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: database integration tasks

    A little Google never hurts either:

    Integration Services Tasks

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: db_owner and sysadmin unexpected behavior

    The dbo of a database has full rights in that database, including the ability to drop the database. Also being a member of the db_owner role offers no additonal permissions.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: ms standards doc?

    sqlguy-736318 (9/19/2012)


    I think it's unfortunate that MS doesn't provide an automated tool to review a SS database for standards compliance. The nice thing about FXCop is that it's somewhat...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: convert from 2005 to 2012

    Install SSDT and open the SSIS package in SQL 2005 format.

    From Upgrade Integration Services Packages Using the SSIS Package Upgrade Wizard:

    When you open an Integration Services project that contains SQL...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Degree of parallelism in SQL Server

    We get various dials and switches to tweak and adjust, it's up to you to apply them appropriately for your system:

    - MAXDOP query hint

    - Max Degree of Parallelism

    - Cost Threshold...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Degree of parallelism in SQL Server

    DLathrop (9/24/2012)


    I've wondered at the optimal setting also.

    We have a problem with MAXDOP=0 in our environment. We are very lightly loaded at night, and only have a few large queries...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: How to know SQL Server Memory Utilization

    Amount of memory being used for the buffer pool:

    SELECT CAST((bpool_committed * 8) / (1024.0 * 1024.0) AS DECIMAL(20, 2)) AS BufferPoolCommittedMemoryGB

    FROM sys.dm_os_sys_info;

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Scheduled job error after making a change to SSIS

    It looks like you're running into an issue with a stored password. Are you saving the sa password in the Connection Manager in the SSIS package? If so then what...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 3,061 through 3,075 (of 7,164 total)