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);