Valid 1Z0-146 Dumps shared by ExamDiscuss.com for Helping Passing 1Z0-146 Exam! ExamDiscuss.com now offer the newest 1Z0-146 exam dumps, the ExamDiscuss.com 1Z0-146 exam questions have been updated and answers have been corrected get the newest ExamDiscuss.com 1Z0-146 dumps with Test Engine here:
A procedure is created in the SYS schema to allow users to change the password as follows: CREATE OR REPLACE PROCEDURE change_password(p_username VARCHAR2 DEFAULT NULL, p_new_password VARCHAR2 DEFAULT NULL) IS v_sql_stmt VARCHAR2(500); BEGIN v_sql_stmt := 'ALTER USER '||p_username ||' IDENTIFIED BY ' || p_new_password; EXECUTE IMMEDIATE v_sql_stmt; END change_password; The SYS user has granted EXECUTE privilege on the procedure to the OE user. But OE is able to change the password for SYS by using this procedure. How would you protect this?