Discussions
Categories
- 17.9K All Categories
- 3.4K Industry Applications
- 3.3K Intelligent Advisor
- 62 Insurance
- 536.1K On-Premises Infrastructure
- 138.2K Analytics Software
- 38.6K Application Development Software
- 5.7K Cloud Platform
- 109.4K Database Software
- 17.5K Enterprise Manager
- 8.8K Hardware
- 71.1K Infrastructure Software
- 105.2K Integration
- 41.6K Security Software
How to join SNP_PACKAGE and SNP_MAPPING

kovar
Member Posts: 46 Red Ribbon
Hi,
How to join ODI repository tables SNP_PACKAGE and SNP_MAPPING so I can get a list of mappings inside particular package?
- Kovar
Tagged:
Best Answer
-
Hi,
Please try this-
select a.pack_name,b.step_name from dev1_odi_repo.snp_package a,dev1_odi_repo.snp_step b
where a.i_package=b.i_package and b.i_mapping is not null;
Regards,
Pavan
Answers
-
Hi,
Please try this-
select a.pack_name,b.step_name from dev1_odi_repo.snp_package a,dev1_odi_repo.snp_step b
where a.i_package=b.i_package and b.i_mapping is not null;
Regards,
Pavan
-
Hi,
This note describes ODI repository structure:
1903225.1 Oracle Data Integrator 11g and 12c Repository Description
Adrian
This discussion has been closed.