Forum Replies Created

Viewing 8 posts - 1,531 through 1,539 (of 1,539 total)

  • RE: Backups and Transactions Log relationships

    My understanding was that in Full Recovery mode you should try and back up you log say every 30 minutes in case your log became corrupt

    I guess u've not...



    Pradeep Singh

  • RE: Disable user access before doing a backup

    To put your database in single user mode immediately, fire this.. Note that all incomplete transactions will be rolled back immediately.

    ALTER DATABASE [yourDatabase]

    SET SINGLE_USER WITH

    ROLLBACK IMMEDIATE

    If you wish to...



    Pradeep Singh

  • RE: Development and Production Database

    writing triggers on all tables would be little cumbersome and as said earlier would hit production.

    You can also think of implementing log shipping. keep log backup interval relatively higher and...



    Pradeep Singh

  • RE: locking

    If you're monitoring through enterprise manager, it does get into hung state when there is intensive IO activity.. you can see these activities and locks by querying syslocks and sysprocesses...



    Pradeep Singh

  • RE: Log Shipping - Reverting back to Primay Server

    Thanks Jerry. My question gets answered in that link.



    Pradeep Singh

  • RE: udate problem

    Also this statement looks confusing..

    you're trying to update org_id in LOCATIONS table with uname ( i assume it's meant to store person's first name) from PERSON Table....



    Pradeep Singh

  • RE: Change database to read only

    alter database DB_NAME set read_only



    Pradeep Singh

  • RE: Change database to read only

    alter database set read_only



    Pradeep Singh

Viewing 8 posts - 1,531 through 1,539 (of 1,539 total)