【问题标题】:Get the code of the stored procedure [duplicate]获取存储过程的代码[重复] 【发布时间】:2013-04-06 04:00:08 【问题描述】: 我不知道如何在 ORACLE 中获取存储过程的源代码。非常感谢您的帮助。 【问题讨论】: 标签: oracle stored-procedures 【解决方案1】: 使用以下语句: select text from user_source where name = 'SP_NAME' order by line; 【讨论】: