vote up 3 vote down star
2

DISCLAIMER: Let's just say I have a pet project to satisfy my insane desire to write a decent Oracle client that isn't based on Java, while appeasing my coding hobby. END OF DISCLAIMER

What I'd like to be able to do is retrieve the schema information for subprograms, functions, package specifications and package bodies from an Oracle 9i database so that I can present them to the user in a C# client using the classes in the System.Data.OracleClient namespace.

So far, I've been able to display the high level schema data far faster than Java applications can, but the packages and functions are beyond my grasp. I can show the columns, their types, the indexes, table- and column level comments, and all sorts of really useful information in really useful ways. Now, if I could just get to the procedures.

Unfortunately, Google has been less than helpful in this regard, and StackOverflow's search feature (to my overwhelming dismay) has been sorely disappointing.

Come on, guys. Don't let me down! Is there a way to do this?

flag

I feel your pain - hated the Oracle java IDE when I was forced to use that DB. Good luck! – Jarrod Dixon Feb 16 at 18:42

2 Answers

vote up 4 vote down check

Query the data dictionary table ALL_SOURCE http://download.oracle.com/docs/cd/B10501_01/server.920/a96536/ch2124.htm#1300946

link|flag
Awesome link. Thank you very much! – Mike Hofer Feb 16 at 19:49
vote up 3 vote down

Does this help? Not clear whether you wanted to get this via System.Data.OracleClient or via SQL?

SELECT TEXT
FROM   ALL_SOURCE
WHERE  NAME = <proc_name>
AND    OWNER = <schema>
link|flag
At some point, I have to get the data out of Oracle, so there will be some SQL involved. If this does the trick, I'll send ya some girl scout cookies. – Mike Hofer Feb 16 at 18:48

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.