options you have:
-A set the following database(s) to ansi logging
-B set the following database(s) to buffered logging
-N set the following database(s) to no logging
-U set the following database(s) to unbuffered logging
A little explanation:
-A : DML and DDL works only with ANSI SQL standards, theoretically if you develop your application over this standard, you can migrate to ANY database easily
-B : Works with IDS standards, transaction(*) is actived , flush of any modified data to disk is buffered (**)
-N : Works with IDS standards, transaction(*) is NOT actived , flush of any modified data to disk are executed immediately
-U : Works with IDS standards, transaction(*) is actived, the flush of any modified data to disk are executed immediately when the transaction is commited, don't matter if the buffer is full or not..
(*) begin/commit/rollback
(**) look for LOGBUFF and PHYSBUFF on your $ONCONFIG file ; see the command "onstat -l"