How to View Oracle Stored Procedure using SQLPlus?

前端 未结 1 1256
执念已碎
执念已碎 2020-12-05 18:05

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 par

相关标签:
1条回答
  • 2020-12-05 18:51

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

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

    0 讨论(0)
提交回复
热议问题