Can we create a table using with Procedure or Function?wat is the Mutating trigger error?

Showing Answers 1 - 8 of 8 Answers

santo

  • Oct 9th, 2006
 

Ya, we can create table with procedure by using 'EXECUTE IMMEDIATE' command.

Mutating error:- occurs when row level trigger accesses same table on which it is based while executing or the table currently being modified by the DML statements.

  Was this answer useful?  Yes

rani

  • Oct 9th, 2006
 

mutating trigger error number is ORA-04091

  Was this answer useful?  Yes

sankari

  • Jan 9th, 2007
 

We can do as shown below... in the same way we can drop the table..



DECLARE

BEGIN




EXECUTE IMMEDIATE 'create table employee(empno number(3),ename varchar2(10))';



END;

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions