Fragmented and Aggregated tables in OBIEE using ODI Part 2/5: Managing the partitions of Fragmented/Aggregated tables
Hey guys, how are you?
Continuing the series Fragmented and Aggregated tables in OBIEE and today we are talking about how to Populating the Fragmented tables using ODI.
Just to make easier for you to navigate in this series, here’s the parts of it:
Managing the partitions of the Fragmented/Aggregated tables: Here you’ll see how to manage all partitions using ODI.
In my previous post we design 18 tables and its partitions and sub-partitions. Now what we need to do is to make ODI manage these partitions for us. As I said before, the Sub partitions will be static and if we need to create one more sub-partitions, we’ll be doing that manually. That’s always the best choice because manage sub-partitions add a layer of complicity that is not needed.
With that said, if you need to manage the sub-partitions, you can use the exactly same approach I’ll show here just adapting to the needs of the sub-partition’s creation and sub-partition template update.
Let’s start analyzing what needs to be done. For each table we need to issue this command to the database:
For List partitions:
ALTER TABLE table_name ADD PARTITION partition_name VALUES (value[, value]…);
For Range Partitions:
ALTER TABLE table_name ADD PARTITION partition_name VALUES LESS THAN (value[, value]…);
Sounds hard but in fact is very simple and it’ll going to work in any SQL you have. To do that this we will use a procedure with our ALTER TABLE statement in the Command on target tab and a SELECT in the command on source to pass the information we need to create the partitions like the table names, the partition name and the partition values.
For each row that the SELECT on source returns, the statement in the Command on target will be executed, and we can pass the values from the SELECT in the Command on Source to change the behavior of the statement in the Command on target.
This is something very important that we need to understand about ODI. ODI It’s not an ETL tool but a code generator tool that orchestrate Database and a lot of other tools if you will.
What I mean by that is, until ODI send the code for the database to execute, everything that ODI does is to generate code. If we use the ODI API it’ll replace it before send to the database as well to replaces the variable with their values, meaning a variable like this #SQL on the Command on Target tab could contain an entire dynamically generate INSERT that ODI would replace before send it to the Database.
And this is why ODI is so powerful, because we can manipulate string and make everything dynamic.
Then our query in the source should return something like this:

The query will change depending of your design of the application then I don’t think sharing my query will going to help. One tip I can give you is always compare the name of the partition with the content of the column PARTITION_NAME on ALL_TAB_PARTITIONS view to see if the partition you want to create already exists to prevent an error in ODI, in fact you have 2 choices, either do this or flag the step as Ignore Error to end the step with a warning. I prefer to compare and end the step without warnings, then I compare.
Another thing to notice is that for FY20 Feb, my PARTITION_VALUE (MAX_PERIOD) is the 1 day after the last day of the month. It’s hard to see here because the calendar used by the client is all different but if you have the normal calendar and the mask you have for you PERIOD_ID is YYYYMMDD, for 2020/Feb you partition ID needs to be 20200230 (Feb ends 02/29/2020).
That’s because this is a RANGE partition, and for RANGE partition we define the partition value as VALUES LESS THAN, what means that everything under 20200230 will be FEB unless we have a smaller partition (JAN) below it. But for example, if you smallest partition is 2018/Jan, everything below that period will be inserted in the 2018/Jan partition, then you need be careful with when you’ll start to create partitions.
Another important thing to mention is that you cannot insert a partition smaller than an existing partition, just bigger. That means, if you start with 2018/Jan, it’s impossible to create a 2017 partition, the only way is to drop the table and create the table starting by 2017. A RANGE partition needs to be sequential and always growing.
Having these values returning from the SELECT on the Command on source tab, the only thing that is left is to use these variables in the statement in the command on Target tab like this:
ALTER TABLE #TABLE_NM ADD PARTITION PARTITION_NM VALUES LESS THAN (#MAX_PERIOD);
Pay attention on the values of the partitions. In this case the values are numeric, that is why I’m not using quotes. If the values were String, we need to enclosure the variable with quotes.
And that’s it, this is all we need to do to manage partitions using ODI. Because the SELECT on the source returns All tables with their partitions name and values and we pass to the TARGET statement this information, for each row in the source the target will be looped, creating the partitions you need for each table.
We are done for the fragmented tables. Now we need to manage the partitions for the Aggregated table. The approach is the exactly the same, the only thing that will change is the content of the query from the Command on Source tab and that the PARTITION now will be a LIST Partition instead of a RANGE partition.
We could have done just one query to return all values including if that was a RANGE or a LIST partition, but for the sake of simplicity is always better to split the scenarios to not over complicate something simple.
For the month level we need the query in the Source to return:

And the statement in the Command on Target should be like this:
ALTER TABLE #TABLE_NM ADD PARTITION PARTITION_NM VALUES (#MAX_PERIOD);
That’s all that needs to be done. For the quarter level the results are similar:

And the statement in the Command on Target should be like this:
ALTER TABLE #TABLE_NM ADD PARTITION PARTITION_NM VALUES (#MAX_PERIOD);
As you can see, it’s very simple to manipulate and manage the database with ODI, we just need to create a query with the information we want in the source, and replace the target statement with that information, that’s all we need to do.
Another important thing that we need in our procedure, in case you want to go with the truncate/insert approach, is to truncate the partitions before load. This is also managed by ODI and also works in the exactly same way as the CREATE PARTITIONS but a little bit simpler since we don’t need to have the partitions values:

And the statement in the Command on Target should be like this:
ALTER TABLE #TABLE_NM TRUNCATE PARTITION PARTITION_NM;
For month level:

And the statement in the Command on Target should be like this:
ALTER TABLE #TABLE_NM TRUNCATE PARTITION PARTITION_NM;
And for the Quarter Level:

And the statement in the Command on Target should be like this:
ALTER TABLE #TABLE_NM TRUNCATE PARTITION PARTITION_NM;
Also, could be done with just one query but again, simplicity works always better than complexity.
This is all we need to start loading data. One last thing we could do, if is you case, is to create a purge process to drop old partitions. If your business requires 5 years of data, it’s a good idea to drop older partitions. The approach is exactly the same
In fact, the results of the Command on source are exactly the same as the ones we need for the TRUNCATE PARTITION steps, the only difference is that you need to have in place a logic to find the old partitions. Other than that, the only thing that changes are the Statement on the Target that should be:
ALTER TABLE #TABLE_NM DROP PARTITION PARTITION_NM;
And that’s it, we just create a procedure to manage the partitions for all our 18 tables including create, truncate and drop old partitions.
In the next part of this series we’ll going to talk about populating the Fragmented tables.
I hope you find this helpful and see you soon.
February 10, 2020 at 8:45 am
[…] better EPM world « Pushing files to GCS (Google Cloud Storage) using ODI and GSUTIL Fragmented and Aggregated tables in OBIEE using ODI Part 2/5: Managing the partitions of Fragmented/… […]
February 11, 2020 at 7:43 am
[…] For a better EPM world « Fragmented and Aggregated tables in OBIEE using ODI Part 2/5: Managing the partitions of Fragmented/… […]
February 12, 2020 at 11:57 am
[…] Managing the partitions of the Fragmented/Aggregated tables: Here you’ll see how to manage all par… […]
February 13, 2020 at 6:47 am
[…] Managing the partitions of the Fragmented/Aggregated tables: Here you’ll see how to manage all par… […]