Question: : I am running a PL/SQL function
with a commit, and I am getting this ORA-14552 error:
ORA-14552: Cannot Perform a DDL Commit or
Rollback Inside a Query or DML
How do I avoid this ORA-14552 error? Is it safe to make my
function contain an autonomous transaction?
Answer: : To diagnose the ORA-14552 error, we
use the
oerr utility to look up the
ORA-14552 error message, cause and action:
ORA-14552: cannot perform a
DDL, commit or rollback inside a query or DML
Cause: DDL operations like creation tables, views
etc. and transaction control statements such as commit/rollback
cannot be performed inside a query or a DML statement.
Action: Ensure that the offending operation is
not performed or use autonomous transactions to perform the
operation within the query/DML operation.
In your case, you are getting the ORA-14552 error because you are
issuing a commit.
If you must use a commit, you can avoid the ORA-14452 error
by making your function into an autonomous transaction using "PRAGMA
AUTONOMOUS_TRANSACTION;" in the function:
CREATE OR REPLACE
FUNCTION rebuildSequence
return number
as
v_loc number;
pragma
autonomous_transaction;
begin . . .
See these notes on using
autonomous transactions.
|
|
|
|
Guarantee your Success!
Oracle is the
world's most complex, robust and flexible database, considered
impossible to master without a mentor.
That's why all BC
Oracle trainers are working professionals, experts in Oracle who
share their tips and secrets. |
|
| |
|
Burleson is the American Team

Note:
This Oracle
documentation was created as a support and Oracle training reference for use by our
DBA performance tuning consulting professionals.
Feel free to ask questions on our
Oracle forum.
Verify
experience!
Anyone
considering using the services of an Oracle support expert should
independently investigate their credentials and experience, and not rely on
advertisements and self-proclaimed expertise. All legitimate Oracle experts
publish
their Oracle
qualifications.
Errata?
Oracle technology is changing and we
strive to update our BC Oracle support information. If you find an error
or have a suggestion for improving our content, we would appreciate your
feedback. Just
e-mail:
and include the URL for the page.
Copyright ? 1996 - 2012
All rights reserved.
Oracle ?
is the registered trademark of Oracle Corporation.
|
|