Oracle/orecal

Advertisement


Question
v can see the procedure that v created by select * from user_object where user_object ='procedure'.. but my question is how can v see the particular procedures code in from our orecal server..
plz reply me...

Answer
Hi Sneha,

To check your procedure code, you can check the table user_source or all_source.

select line, text
from user_source
where name = 'XXXX'
order by line;

Here XXXX is the procedure name (in caps). You will get all your code line by line (the format is not proper).

Hope this helps.

Regards

Suchitra

Oracle

All Answers


Answers by Expert:


Ask Experts

Volunteer


Suchitra Joshi

Expertise

I can answer questions regarding SQL, PL/SQL, Procedures, Functions, Triggers, SQL Loader, Oracle Forms, Oracle Reports, and some basic dba and performance tuning activities.

Experience

15+ years of Oracle PL/SQL Development

Education/Credentials
B.Sc (Electronics), Diploma in Computer Applications (DCA)

Awards and Honors
Oracle PL/SQL Developer Certified Associate (OCA)
Oracle Database: SQL Certified Expert
Brainbench certifications in Oracle Administration, PL/SQL, Developer 2000

©2012 About.com, a part of The New York Times Company. All rights reserved.