Viewing 8 posts - 1,531 through 1,538 (of 1,538 total)
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...
December 10, 2008 at 12:09 pm
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...
December 10, 2008 at 9:58 am
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...
December 5, 2008 at 10:42 am
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...
December 5, 2008 at 9:54 am
Thanks Jerry. My question gets answered in that link.
December 5, 2008 at 9:21 am
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....
December 5, 2008 at 6:55 am
Viewing 8 posts - 1,531 through 1,538 (of 1,538 total)