Hi Quentin,
I see this issue executing via the conductor isql UI but it does not occur
when run against the command line isql
SQL> create procedure test.test.testUserDrop ( )
test.test.testUserDrop(0) {
test.test.testUserDrop(1) DB.DBA.USER_CREATE('testUser','badpassword');
test.test.testUser
Two interesting but ultimately trivial errors.
The documentation merely has USER_CREATE() but this will error if the
schema context is not DB.DBA. A trivial enough issue.
create procedure test.test.testUserDrop ( )
{
DB.DBA.USER_CREATE('testUser','badpassword');
};
test.test.testUserDrop();
use