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 |
List out the components of logical database structure of oracle database.
What happens if recursive calls get out of control?
26. Display the earliest shipping date in the format: DD/MON/YYYY
what is the difference between functional dependecy and multilevel dependency?
what is null value?
What is an Oracle index?
I have a table like this Table Name:Products Productid Price 1 10 1 10 2 20 3 30 3 30 But i want to output like this. productid price 2 20. please replay me.
What would you use to improve performance on an insert statement that places millions of rows into that table?
How to start instance with a minimal initialization parameter file?
What are named parameters?
What is an oracle recycle bin?
Does oracle partitioning improve performance?