↧
Answer by Justin Cave for Dynamic SQL and ORA-00911
1) As @Bob Jarvis suggested, when you build a SQL statement that you intend to pass to EXECUTE IMMEDIATE, that SQL statement should not contain a trailing semicolon ;2) Since CREATE USER and GRANT are...
View ArticleDynamic SQL and ORA-00911
I have a database named Tamaris, which contains a table User. I created a trigger to create a new user in database each time a row is inserted in my User table. Here's the PL/SQL code :CREATE OR...
View Article