Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 15 Oracle Analytics Lounge
- 208 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
Bringing in tables from Database

Hello -
I currently have 7 different tables that host documents and its pertaining demographics in Oracle Database. Problem - I'd like to create a union or some sort to concatenate all 7 tables into one so that I can load this into OBIEE to use to generate charts. Is there a way to combine all 7 into one (they all have the same dimensions)?
Best,
Andrew
Answers
-
Hi,
Do you look for a solution in OBIEE or in general in your DB?
OBIEE can definitely manage your 7 tables and query them all together (defining 7 LTS for your logical table) or you can just "unify" them at the DB level. The simplest way is a view.
I would avoid an opaque view in OBIEE as that's really hiding logic.
0 -
I would avoid doing it with a VIEW in the DB but rater importing all 7 and use OBIEE's fragmentation if there is a way of telling to OBIEE which partition of data is within each table.
The view option will always query all 7 sources while using fragmentation you'll hit only the fragment with the data you need if you specify the fragment partitioning key
0