如何使用 SQLPlus 查看 Oracle 存储过程?
如何使用 sqlplus for Oracle 10g 查看存储过程的代码?
How can I view the code of a stored procedure using sqlplus for Oracle 10g?
当我输入时:
desc daily_update;
它向我显示了参数,但是当我尝试执行以下操作时:
it shows me the parameter, but when I try to do the following:
select * from all_source where name = 'daily_update';
我明白了
未选择任何行
我做错了什么?
推荐答案
检查您的大小写,名称通常以大写形式存储
check your casing, the name is typically stored in upper case
选择 *FROM all_sourceWHERE 名称 = 'DAILY_UPDATE'按类型排序,行;
SELECT * FROM all_source WHERE name = 'DAILY_UPDATE' ORDER BY TYPE, LINE;
相关文章