SELECT dd.*
  FROM dba_dependencies dd
 WHERE NAME <> referenced_name
   AND referenced_type <> 'TABLE'
   AND dd.referenced_type = 'PACKAGE'
   AND dd.referenced_name LIKE '%CUX%'
   AND NAME = 'CUX_PACKAGE_NAME'

此SQL并未实现递归,若要实现完整递归,请自行尝试。

相关文章:

  • 2021-07-16
  • 2021-07-03
  • 2022-12-23
  • 2022-02-07
  • 2021-10-04
  • 2021-08-08
  • 2022-02-24
  • 2021-10-24
猜你喜欢
  • 2021-06-03
  • 2021-09-27
  • 2022-12-23
  • 2021-11-17
  • 2022-12-23
相关资源
相似解决方案