How to View Oracle Stored Procedure using SQLPlus?

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

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

Leave a Comment