使用sqlplus连接到oracle数据库时,如何转储函数或过程的主体? 最佳答案 select text from user_source where type = 'PROCEDURE' and name='YOURPROCEDURENAME' order by line;