博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
oracle包里代码部分,oracle 获取某个包 依赖的所有对象包括其子对象
阅读量:6621 次
发布时间:2019-06-25

本文共 1381 字,大约阅读时间需要 4 分钟。

declare

-- 获取相应的 某个程序包 所需要应用的包

cursor p_cur(p_name varchar2) is

select dd.name, dd.type, dd.referenced_name, dd.referenced_type

from dba_dependencies dd

where 1 = 1

and dd.referenced_type in

('PACKAGE', 'SYNONYM', 'TABLE', 'SEQUENCE')

and dd.type in ('PACKAGE', 'PACKAGE BODY')

AND dd.name = p_name;

cursor p_temp(l_level number) is

select attribute1, attribute2

from cux_common_imports_temp

where attribute2 = l_level;

p_root_name varchar2(30);

p_level number := 0;

p_count number := 0;

begin

--将根节点 放入到表中

p_root_name := 'CUX_SBU_COMMON';

insert into cux_common_imports_temp

(attribute1, attribute2)

values

(p_root_name, p_level);

p_count := 1;

--循环这一层的 节点 并获得其子节点

while p_count != 0 loop

for p_loop in p_temp(p_level) loop

--下一层

p_level := p_level + 1;

p_root_name := p_loop.attribute1;

for p_rec in p_cur(p_root_name) loop

if p_rec.referenced_type = 'PACKAGE' then

--如果表内 没有这个程序就 加入到 临时表中

select count(*)

into p_count

from cux_common_imports_temp

where attribute1 = p_rec.referenced_name;

if p_count = 0 then

insert into cux_common_imports_temp

(attribute1, attribute2)

values

(p_rec.referenced_name, p_level);

end if;

--输出相应的 子节点信息

dbms_output.put_line(p_level || '-Name:' ||

p_rec.referenced_name || '-Type:' ||

p_rec.referenced_type);

end if;

end loop;

end loop;

--获取 该层是否为空

select count(*)

into p_count

from cux_common_imports_temp

where attribute2 = p_level;

end loop;

end;

转载地址:http://bbcpo.baihongyu.com/

你可能感兴趣的文章
E-HPC支持多队列管理和自动伸缩
查看>>
Maven的插件:命令行执行
查看>>
各种设备的CSS3MediaQuery整理及爽歪歪写法
查看>>
CVE-2017-8464远程命令执行漏洞(震网漏洞)复现
查看>>
Java 12 将于3月19日发布,8 个最终 JEP 一览
查看>>
基础为重,Python的基础,成就月薪过万
查看>>
Android--ListView内容刷新问题
查看>>
React 性能优化大挑战:一次理解 Immutable data 跟 shouldComponentUpdate
查看>>
【视频教程】微信小程序开发-框架篇2 WXML
查看>>
bboss session版本构建和demo部署运行介绍
查看>>
Android--Xutils3源码案例调试
查看>>
moreco 0.0.1 发布,实现 RBAC、JWT 鉴权等功能
查看>>
linq to entity常用操作
查看>>
Java并发之CountDownLatch、Semaphore和CyclicBarrier
查看>>
CSS效果常见问题
查看>>
ssh-agent的理解
查看>>
美团点评敲定IPO定价区间:每股60-72港币
查看>>
使用JavaScript给对象修改注册监听器
查看>>
从台积电病毒事件看工控安全
查看>>
计算机网络
查看>>