Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chris Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

where are plsql stored procedres stored?

Status
Not open for further replies.

jfdabiri

MIS
Feb 27, 2007
282
US
hi, i have this code (vbscript/asp) that refers to a stored procedure. my question is, where are stored procedures stored in oracle?
Code:
objCmd.Properties("PLSQLRSet") = TRUE
objCmd.CommandText = "oms_owner.pk_popcount.getinsttotals"
Set objSearch = objCmd.Execute
 
That depends. Are you talking about the text of the code? If so, you can find this in the user|all|dba _source data dictionary tables. If you are talking about the compile m-code of the proc, this is transparent and you don't really need to know, if you are talking about interpreted compilation of code, these are stored on the OS in C libraries.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top