You can split the stream of mapping as update and insert. Update stream would check for existence of record in both source and target (based on primary key combination) to update the target table via PK. Tghe insert stream would check for non-existence of record in target and do a insert. This might improve performance reducing overahead on Informatica but increases load on database.
Main Topics
Browse All Topics





by: nmcdermaidPosted on 2009-05-04 at 19:36:52ID: 24301166
Can you capture some of the SQL that informatica is generating? If not you can always use SQL Profiler to capture it.
You really have two options:
1. Possibly improve indexes to improve update performance (though this will reduce insert performance)
2. Use an exclusive lock on the destination table
I don't know if you can do option 2 from informatica. I assume you can.