Hi Experts,
I'm new to field of Data warehouse. I'm trying to load a simple dimension table .
Scenario:
I have to insert or update Target Dimension table DWQST1 Based on Primary key Incdnt_Nbr from Source Table ars.arlcs1
There are no transformations involved just compare the source and target and update/Insert the Target dimension Table DWQST1
Unfortunately I cannot use merge as source and target tables are in DB2 8.0 which does not support merge.
below is the select statement from source.
select |
Ics.IncdntNbr (This is Primary key which has to be compared) |
lcs.empldoin_text, |
lcs.howoccur_text, |
lcs.emplstat_text, |
lcs.injdescr_text |
from |
ars.arlcs1 lcs Any help is appreciated. Thanks, Vishal. |