我们如何找出其中使用 oracle 包的所有映射?

How do we figure out all the mappings which are using a oracle package in it?

我有办法找出所有使用 oracle 包的映射吗?而不是打开每个映射并搜索存储过程转换并检查其内容。

请在 Informatica 元数据存储库中使用此 sql -

 SELECT DISTINCT
        widat.attr_value  stored_prc_name  ,
        all_map.mapping_name,
        all_map.subject_area folder_name
FROM
        rep_all_mappings all_map,
        rep_widget_inst  wid    ,
        opb_widget_attr  widat
WHERE
        all_map.mapping_id=wid.mapping_id
AND     wid.widget_id=widat.widget_id
AND     widat.widget_type=wid.widget_type
AND     wid.widget_type   =6  
AND     widat.attr_id=1`