Skip to main content

Implement Slowly Changing Dimensions in ODI

Hello friends!
In this tutorial we will learn how to implement the concept of Slowly Changing Dimensions (SCD) using Oracle Data Integrator. As the name suggests, SCD in data warehousing refers to the slow change in data rather than the change on a regular basis. It is applicable in those cases where the attribute for a record varies over time.
There are three basic types of SCD’s:
1.Type 1 – Overwrite old values
In this case, new record replaces the original record. No copy of the original record exists.
2.Type 2 – Create a new record
In this case, a new record is added to the dimension table.
3.Type 3 – Create new fields
In this case, the latest update to the changed values can be seen. The original record is modified to reflect the change.
So now let’s begin implementing SCD using Oracle Data Integrator. Open ODI Studio and follow the below steps!
Pre-requisites: Oracle 10g Express Edition with *SQL Plus, Oracle Data Integrator 11g (version 11.1.1.7)
Step 1: Create source, target tables for SCD using *SQL Plus
Source table
create table scd_test(EmpId int, EmpName varchar2(30), DeptName varchar2(30), salary number(6,2));
Insert few rows of dummy data inside the source table.
insert into scd_test values(101,'Karan','Computer',2200.23);
insert into scd_test values(102,'Mahesh','Computer',3200.53);
insert into scd_test values(103,'Prasad','Mechanical',5300.13);
Target table
create table scd_target(EmpId int, EmpName varchar2(30), DeptName varchar2(30), salary number(6,2), joining_date date, flag number);
Step 2: Create models for source and target tables
Under Designer tab, create a new Model folder and then right click it, select Models–>Create new model. Reverse engineer both the source and the target tables under the same model. Provide any existing Oraclelogical schema while re-factoring.
creating data model
Step 3: Modify target table model and it’s columns for SCD
Open the target table datastore and change OLAP type to slowly changing dimension.
Then expand your target datastore to get all columns. Open required columns one by one and do the changes as follows!
snap_4
column_2
column_3
column_4
column_5
column_6
column_1
Step 4: Create new interface
While creating new interface select IKM as Oracle Slowly Changing Dimension. Map the source and the target tables. For columnsjoining_date and flag specify the implementation as shown below!
Creating interface
Creating interface
interface_snap_2
interface_snap_3
interface_snap_4
interface_snap_5
interface_snap_6
interface_snap_7
Run the interface without any errors. View the target table data.
output_1
snap_2
Running the interface for the first time
Running the interface for the first time
Now, update few records of the source table. In this case, I will update name and salary of employee. Hence as per SCD Types 1 and 3, first a new record will be inserted since we had selected Add row on change for Employee name and then salary will be overwritten as we had selectedOverwrite on change for Employee salary.
update scd_test set empname='nitesh' where empid=101;
update scd_test set salary=5634.43 where empid=102;
Run the interface again and then view the target table data. It now reflects SCD.
Output data
Output data
output_new_2
That completes this tutorial. Keep visiting for more!

Comments

Popular posts from this blog

ODI KM Adding Order by Option

You can add Order by statement to queries by editing KM.I have edited IKM SQL Control Append to provide Order by.  1) Add an option to KM named USE_ORDER_BY, its type is Checkbox and default value is False. This option determines you want an order by statement at your query. 2)Add second option to KM named ORDER_BY, type is Text. You will get order by values to your query by this option. 3) Editing Insert New Rows detail of KM. Adding below three line code after having clause. That's it! <% if (odiRef.getOption("USE_ORDER_ BY").equals("1")) { %> ORDER BY <%=odiRef.getOption("ORDER_BY" )%> <%} %>  If USE_ORDER_BY option is not used, empty value of ORDER_BY option get error. And executions of KM appears as such below; At this execution, I checked the KM to not get errors if ORDER_BY option value is null. There is no prove of ORDER BY I'm glad.  Second execution to get  Ord

Creating Yellow Interface in ODI

Hello everyone! In Oracle data integrator (ODI), an  interface  is an object which populates one datastore, called the  target , with data coming from one or more other datastores, known as  sources . The fields of the source datastore are linked to those in the target datastore using the concept of  Mapping . Temporary interfaces used in ODI are popularly known as  Yellow Interfaces . It is because ODI generates a yellow icon at the time of creation of a yellow interface as opposed to the blue icon of a regular interface. The advantage of using a yellow interface is to avoid the creation of  Models each time you need to use it in an interface. Since they are temporary, they are not a part of the data model and hence don’t need to be in the Model. So let’s begin and start creating our yellow interface! Pre-requisites : Oracle 10g Express Edition with *SQL Plus, Oracle Data Integrator 11g. Open *SQL Plus and create a new table  Sales  in Oracle. You can use any existing ta

Running Count in Talend Open Studio

Most Talend components keep a count of the records processed using variables like NB_LINE or NB_LINE_OK.  But these are only available after all processing is completed.  Define your own counter variable to keep a running count for use in a tMap. Variables like tFilterRow.NB_LINE or tAccessOutput.NB_LINE_INSERTED can be used to report the number of affected lines after a subjob's processing.  However, it may be of use to get the current line index for use in a tMap.  The index variables used to form NB_LINE aren't available during processing; they're only written out the globalMap at the end of processing. In this example, staging records are loaded from Excel to Access.  The order in which the Excel records are read is preserved in a database column called DISPLAY_SEQ_NB.  Note that there is an auto-increment column used for record ID in the Access table.  This could be used to infer a loading order, but this job uses a separate column to keep the ID as a meaningless surr