• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Tim Cooke
  • paul wheaton
  • Paul Clapham
  • Ron McLeod
Sheriffs:
  • Jeanne Boyarsky
  • Liutauras Vilda
Saloon Keepers:
  • Tim Holloway
  • Carey Brown
  • Roland Mueller
  • Piet Souris
Bartenders:

SP calling SPs in another pkg

 
Ranch Hand
Posts: 365
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
hi all-

Does someone have a snippet for a stored procedure that calls stored procedures in another package?

I want to write a copy function that calls a series of inserts in another package.

thank you
Max Tomlinson

[ September 09, 2005: Message edited by: Max Tomlinson ]
[ September 09, 2005: Message edited by: Max Tomlinson ]
 
Ranch Hand
Posts: 1143
1
Eclipse IDE Oracle Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Max,
Just prefix the package name to the procedure name, for example:

Here SOME_PACKAGE is the name of the package that contains a procedure called SOME_PROCEDURE.

Or am I missing something?

Good Luck,
Avi.
 
reply
    Bookmark Topic Watch Topic
  • New Topic