Oracle如何獲取指定包
來(lái)源:易賢網(wǎng) 閱讀:932 次 日期:2014-10-17 09:34:15
溫馨提示:易賢網(wǎng)小編為您整理了“Oracle如何獲取指定包”,方便廣大網(wǎng)友查閱!

oracle 獲取某個(gè)包 依賴(lài)的所有對(duì)象包括其子對(duì)象

使用了一個(gè)一個(gè)臨時(shí)表 記錄了已經(jīng)遍歷的 節(jié)點(diǎn)

同時(shí) 使用了層數(shù)來(lái)記錄已經(jīng)遍歷的 包

效率一般,可以改動(dòng)性大

declare

-- 獲取相應(yīng)的 某個(gè)程序包 所需要應(yīng)用的包

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

--將根節(jié)點(diǎn) 放入到表中

p_root_name := 'CUX_SBU_COMMON';

insert into cux_common_imports_temp

(attribute1, attribute2)

values

(p_root_name, p_level);

p_count := 1;

--循環(huán)這一層的 節(jié)點(diǎn) 并獲得其子節(jié)點(diǎn)

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

--如果表內(nèi) 沒(méi)有這個(gè)程序就 加入到 臨時(shí)表中

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;

--輸出相應(yīng)的 子節(jié)點(diǎn)信息

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;

更多信息請(qǐng)查看IT技術(shù)專(zhuān)欄

更多信息請(qǐng)查看數(shù)據(jù)庫(kù)
易賢網(wǎng)手機(jī)網(wǎng)站地址:Oracle如何獲取指定包
由于各方面情況的不斷調(diào)整與變化,易賢網(wǎng)提供的所有考試信息和咨詢(xún)回復(fù)僅供參考,敬請(qǐng)考生以權(quán)威部門(mén)公布的正式信息和咨詢(xún)?yōu)闇?zhǔn)!

2025國(guó)考·省考課程試聽(tīng)報(bào)名

  • 報(bào)班類(lèi)型
  • 姓名
  • 手機(jī)號(hào)
  • 驗(yàn)證碼
關(guān)于我們 | 聯(lián)系我們 | 人才招聘 | 網(wǎng)站聲明 | 網(wǎng)站幫助 | 非正式的簡(jiǎn)要咨詢(xún) | 簡(jiǎn)要咨詢(xún)須知 | 加入群交流 | 手機(jī)站點(diǎn) | 投訴建議
工業(yè)和信息化部備案號(hào):滇ICP備2023014141號(hào)-1 云南省教育廳備案號(hào):云教ICP備0901021 滇公網(wǎng)安備53010202001879號(hào) 人力資源服務(wù)許可證:(云)人服證字(2023)第0102001523號(hào)
云南網(wǎng)警備案專(zhuān)用圖標(biāo)
聯(lián)系電話(huà):0871-65099533/13759567129 獲取招聘考試信息及咨詢(xún)關(guān)注公眾號(hào):hfpxwx
咨詢(xún)QQ:526150442(9:00—18:00)版權(quán)所有:易賢網(wǎng)
云南網(wǎng)警報(bào)警專(zhuān)用圖標(biāo)