1、打开PL/SQL,新建sql窗口
2、假如需要寻找表test_tmp的加工过程,那么可以使用以下语句:select * from all_sour艘早祓胂ce where upper(text) like upper('%test_tmp%');或者select * from dba_source where upper(text) like upper('%test_tmp%');执行后可以得到如下结果:
3、name字段里即是过程名,可能会出现多个过程,这就需要根据test字段里的语句或者打开过程查看,来判断此过程是加工test_tmp还是只是查询。
4、注意查看过程的是不要忘记前面的过程名,即owner字段。