Re: [Virtuoso-users] Exception thrown when deleting existing user

2014-03-01 Thread Hugh Williams
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

[Virtuoso-users] Exception thrown when deleting existing user

2014-02-20 Thread Quentin
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