Interview Questions and Answers pdf free download for freshers beginners experienced, Multiple Choice Questions with Answers Practice, Placement Papers
Friday, 25 May 2012
Suppose a procedure, a_proc, is defined with a number parameter as input within a package called a_package in the a_user schema. Write the statement to invoke the a_proc procedure on the SQL prompt from the user, b_user. | PL SQL
The statement is given as follows:EXECUTE a_user.a_package.a_proc(10);