Forum Replies Created

Viewing 14 posts - 46 through 59 (of 59 total)

  • RE: Memory usage

    SQL Server wont release memory even if it is not using all of it.

    you should leave sufficient amount of memory to the OS for its functioning.

    By using max memory setting,...

  • RE: Job History

    SKYBVI (11/8/2011)


    You can look :-

    C:\Program Files (x86)\Microsoft SQL Server\MSSQL.1\MSSQL\LOG

    that's default location of it, if you haven't changed it

    This is not where job history are stored. They are in msdb...

  • RE: Sending an email from inside a trigger...

    Does the service account have required privileges?

  • RE: How to copy a table (with data) to another database?

    Simplest way is to use Import-Export wizard. Right click your database>Tasks>Export data.

    follow the instructions by the wizard.

  • RE: DBCC LOGINFO has a status 2 that I can''t seem to get rid of

    Option 1 is much better. your lsn chain is not broken. 🙂

  • RE: Big Script can't be loaded

    try running the script using sqlcmd. -i parameter allows you to use the script.

  • RE: restore database "with file" option

    The backup file may contain multiple backups within the file. "With File=n" clause allows you to restore a particular backup from the file.

  • RE: Transaction Log Backup

    In simple recovery mode, log space is marked for reuse after SQL Server issues a checkpoint. In full/bulk logged recovery mode, only backup log marks the used space for reuse...

  • RE: tempdb memory

    you can query sys.dm_db_session_space_usage to see which session utilized tempdb heavily. The session(s) using huge IO will be the one using large amount of memory.

    also check for open transactions.

  • RE: Sqlcluster

    Yes. do it from cluster admin and not from services.msc

  • RE: Log backups Not running

    If there is a job to purge bakup history, the query *might not* give you database names whose log backups have been taken.

  • RE: Identity value Reset

    No this is not possible. You can manually update the Ids though (identity_insert=on)

  • RE: Pivot

    Thank you. This is very handy trick. Will learn more about xml 🙂

  • RE: Database Mirroring Basic Question

    smallmoney (10/29/2011)


    With DB Mirroring, do transactions get applied to the mirror first then the principle? Or is it the other way around?

    Thanks

    If mirroring is in asynchronous mode, transactions are committed...

Viewing 14 posts - 46 through 59 (of 59 total)