I want to know the command for running a procedure present in a package in SQL. How to achieve this?
Printable View
I want to know the command for running a procedure present in a package in SQL. How to achieve this?
The syntax for doing this is
pacakge name.procedure or function name That is package name followed by a dot followed by procedure or function name is used for running a procedure present in a package.