GeekInterview.com
   Home |  Tech FAQ  |   Interview Questions |  Placement Papers |  Tech Articles |  Learn |  Freelance Projects |  Online Testing |  Geeks Talk |  Job Postings |  Knowledge Base | Site Search |  Add/Ask Question

  GeekInterview.com  >  Interview Questions  >  Oracle  >  PL/SQL

 Print  |  
Question:  Package Function

Answer: You have a package called A and one function in that packgae called XYZ.
If you need to call that function in second packaged B, How will you call?


April 04, 2009 15:29:16 #4
 OraclePassport   Member Since: April 2009    Total Comments: 2 

RE: Package Function
 
Call the package.procedure (A.XYZ) in the other procedure. This is not possible if XYZ is a private procedure.
     

 

Back To Question