Requires Free Membership to View
CREATE OR REPLACE PROCEDURE create_new_user (usernm IN VARCHAR2, passwd IN VARCHAR2) AS sql_stmt VARCHAR2(100); BEGIN sql_stmt := 'CREATE USER '||usernm||' IDENTIFIED BY '||passwd EXECUTE IMMEDIATE sql_stmt; END; /Now that you have the procedure defined, you can call it in your application, passing the username and passwords as parameters.
This was first published in November 2006

Join the conversationComment
Share
Comments
Results
Contribute to the conversation