delete data from staging table as it loads to target table.here is the case
we are getting data from 3 different server.a b and c.the data from server A loaded into staging table and we ran the task and data loaded to target table.now today data from server B and C also got loaded to the staging table.now what techniques and what transformations should be used to delete only the data which has been loaded only to the target.we need to delete only that data from staging which has been loaded into the target.looking for your responses
Answers were Sorted based on User's Feedback
Answer / aparna
once the session loads the data to target ,truncate the staging table .So everytime we load is complete ,staging table will be empty .
In POST-SQL (Target ) : truncate the staging table .
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / ram
Hi,
for identification add a port like source_id in the stage table.
create 3 session instances to load data from 3 sources.
write pre sql in each session instance to delete the
records from stage table.
delete from <stage_table>
where id in (select id from target table)
and source_id=<identifiaction_value>;
please let me know the if you have any questions.
bhupalreddy200@gmail.com
thanks
ram
| Is This Answer Correct ? | 3 Yes | 2 No |
How to create a non-reusable instance of reusable transformations?
What are the data movement modes in informatica?
If we are using an aggregator but forget to mention the group by port .what will be the output??
Why do we use DSS database for OLAP tools?
what are the challenge face in u r project?explain me
What is union transformation?
How might you approve all mappings in the archive all the while?
scd methodology?
How to generate a single mapping for both the historical and incremental load.
What exactly mentioned in High level design document.can somebody explain me sequentialy.
major difference between normal loading and bulk loading?
What is the difference between informatics 7x and 8x and what is latest version?