ORA-06519

Error: ORA-06519: active autonomous transaction detected and rolled back

Causa: Before returning from an autonomous PL/SQL block, all autonomous transactions started within the block must be completed (either committed or rolled back). If not, the active autonomous transaction is implicitly rolled back and this error is raised.

Acción: Ensure that before returning from an autonomous PL/SQL block, any active autonomous transactions are explicitly committed or rolled back.

COMENTARIOS:

por Anónimo | 23/04/2007 23:21:02

RE: ORA-06519

poniendo el commit o rollback al final del bloque autonomo

por Anónimo | 23/04/2007 23:22:04

RE: ORA-06519

Put the commit or rollback at the end of autonomous block