Reputation: 49
enter image description hereI have one source and two target tables without Primary key. both source and targets are Oracle database. i created a mapping using two filter transformations to load data into two target tables. in both Filter Txn's same condition given i.e., Sal>1500 which satisfies 7 records. When i ran the workflow by keeping target load type 'Bulk' and in run properties it shows 7 records are loaded into each target table but when i check in oracle data base only second table data getting loaded. when i change the Load type to 'Normal' both tables are loaded. what makes the difference in database ?
Upvotes: 1
Views: 372
Reputation: 7387
For oracle, bulk
load succeeds when there is no index on the table in database.
So, when you are running in bulk
mode, load to one target is failing because it has index on it in database.
Mode Normal
will work with or without index so its working properly.
Upvotes: 0