on 2011 May 06 3:54 PM
I thought it was controlled using the -os option on the dbeng12/dbsrv12 command line, but from what I've read, -os seems to be for the console log. ???
A general approach to automate this task would use an event of the GrowLog type:
Here is an example from the 12.0.1 docs:
Limit the transaction log size to 10 MB:
CREATE EVENT LogLimit TYPE GrowLog WHERE event_condition( 'LogSize' ) > 10 HANDLER BEGIN IF EVENT_PARAMETER( 'NumActive' ) = 1 THEN BACKUP DATABASE DIRECTORY 'c:\\\\logs' TRANSACTION LOG ONLY TRANSACTION LOG RENAME MATCH; END IF; END;
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've answered my own question.... it's not the start command at all. Oops! I have to use the -r option on the dbbackup command.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
68 | |
8 | |
8 | |
7 | |
7 | |
6 | |
6 | |
6 | |
6 | |
5 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.