开发者

How to View Oracle Stored Procedure using SQLPlus?

开发者 https://www.devze.com 2023-03-26 20:41 出处:网络
How can I view the code of a stored procedure using sqlplus for Oracle 10g? When I type in: desc daily_update;

How can I view the code of a stored procedure using sqlplus for Oracle 10g?

When I type in:

desc daily_update; 

it shows me the parameter, but when I try to do the following:

select * from all_source where name = 'daily_update';

I get

no rows selected

开发者_如何学运维What am I doing wrong?


check your casing, the name is typically stored in upper case

SELECT * FROM all_source WHERE name = 'DAILY_UPDATE' ORDER BY TYPE, LINE;

0

精彩评论

暂无评论...
验证码 换一张
取 消