What is autonomous transaction?
Answers were Sorted based on User's Feedback
Answer / narender sharma
Autonomous Transaction is an independant transaction that
is intiated by parent transaction.It can modify data,
commit or rollback independent of the state of parent
transaction.It must be commited or rollback before it ended.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / karthik
Hi,
this is a independent transaction done irrespective f
parent transcation.
ex:
i hv a procedure for updating the rows in a table.but
wether it updates or not i need this attempt of updating
the rows to be noted in a log table so i will write that as
a autonomous transaction(of course using the pragma)and so
it will be written in log table wether or not the main
table is updated.
Note:if ur using some dml in autonomous block then u HV to
COMMIT it else this transaction wil not get commited.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sohini
Autonomous transactions let you suspend the main
transaction, do SQL operations in the procedure or function
in which it has been declared, commit or roll back those
operations, then resume the main transaction.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / sudipta kumar dhal
Autonomous transaction is an independent transaction started by another transaction,the main transaction.it can modify data,commit or rollback independent of the parent transaction is called autonomous transaction.
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / bernard raj
It is independent transaction.It will executes with out
interfering the parent transaction.
An autonomous transaction is an independent transaction started by another transaction, the main transaction. Autonomous transactions let you suspend the main transaction, do SQL operations, commit or roll back those operations, then resume the main transaction.
| Is This Answer Correct ? | 0 Yes | 0 No |
There is a big table with "n" of rows and 40 + columns .It doesn't have primary key.How do you select the primary key. In other words how do you get the duplicate records.
What happens if you set the sga too low in oracle?
How to drop an existing view in oracle?
Differentiate between post-database commit and post-form commit?
How to delete multiple rows from a table in oracle?
which institute and which faculty is providing best training for oracle sql, plsql in hyderabad
what is a cartition product?
What is tns service name?
How to create a table index in oracle?
Whats the benefit of dbms_stats over analyze?
what are the things that you consider while creating indexes on partitioning tables?
Can the query output be sorted by multiple columns in oracle?