How do you programatically identify a stored procedure's dependencies?

前端 未结 4 509
佛祖请我去吃肉
佛祖请我去吃肉 2021-01-19 21:59

Is it possible to write a PL/SQL query to identify a complete list of a stored procedures dependencies? I\'m only interested in identifying other stored procedures and I\'d

4条回答
  •  陌清茗
    陌清茗 (楼主)
    2021-01-19 22:32

    To get all details:

    select * from all_dependencies where owner = '&OWNER' and NAME='&OBJECT_NAME' 
    

提交回复
热议问题