0% of people found this useful
Hi,
I want to call oracle stored procedure in package.I used like this returns error.
Call PKG.GET_EMPLOYEES()
Then i remove the procedure from package and defined outside the package as global procedure .Then it works
Call GET_EMPLOYEES()
So how to call procedure with package name. Please help.