Forum Replies Created

Viewing 15 posts - 3,076 through 3,090 (of 7,168 total)

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

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

  • RE: Degree of parallelism in SQL Server

    Perry Whittle (9/24/2012)


    braju (9/24/2012)


    From what I have seen as reponses, I think we should set the MAXDOP to default to 0 and adjust cost threshold of parallelism if needed or...

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

    Look for ACEOLEDB.DLL on your machine. It should be in an Office14 folder in one location or another depending on whether you have Office installed or whether you installed the...

  • RE: French characters into SQL Server

    Sorry I misunderstood the scenario. Try changing the input file encoding from UTF-16LE (what Microsoft calls "Unicode") to UTF-32 and see if passing that file works. It's a workaround but...

  • RE: Agent service

    I have worked with Idera sqlDM, nagios & SCOM. It might be the most basic of monitoring tool functions, i.e. monitoring if a service is alive, so pretty much any...

  • RE: Agent service

    I would recommend setting up monitoring from atmleast one other machine. You could use WMI to check the service status periodically and email if there is a problem. There are...

  • RE: Created package on one server, how to use it in another server ?

    The short answer is yes, the settings in the configuration file will be used instead of the info hardcoded into the Connection Manager object.

    There is an order of precedence on...

  • RE: An Indexing Discussion

    GilaMonster (9/23/2012)


    opc.three (9/23/2012)


    In a heap, when an existing row is updated and that row no longer fits on the page where it lives a forwarding record is created to hold...

  • RE: SQL ReTry Logic

    I could see that for restoring a snapshot in a production rollback scenario.

    To be fair and complete you have to be out of the DB to restore WITH REPLACE...

  • RE: How frequently should an update stats job run

    Sapen (9/21/2012)


    Currently I am updating statistics on specific tables (identified them based on modified rows) daily at 2:00AM.

    Just curious, are you applying your own algortihm using sys.sysindexes.rowmodctr?

  • RE: An Indexing Discussion

    The tables sound like good candidates for havaing their non-clustered PK converted to a clustered PK.

    I'd like to expound on a couple points in your post.

    If the PK is turned...

  • RE: SQL ReTry Logic

    Dave Ballantyne (9/23/2012)


    Done the same sort of thing, but when there are apps that fire continously then they can get the single user connection .

    Had to re-sort to pausing the...

  • RE: Data replication between view and table within same database

    You cannot replicate a regular view because in a regular view the data is not materialized. You can however replicate an indexed view for that same reason.

    It sounds like one...

  • RE: SQL ReTry Logic

    This technique works for me. It guarantees success when there are apps are running with sysadmin-level permissions:

    USE YourDatabase;

    ALTER DATABASE YourDatabase SET SINGLE_USER WITH ROLLBACK IMMEDIATE; -- forcefully kills all user...

Viewing 15 posts - 3,076 through 3,090 (of 7,168 total)