Which of the following can be used in an Update Strategy transformation?
-
DD_INSERT
-
DD_UPDATE
-
DD_DELETE
-
DD_TRUNCATE
Update Strategy transformation supports DD_INSERT, DD_UPDATE, and DD_DELETE operations for handling database changes. DD_TRUNCATE is not a valid operation type in this transformation - it's typically a database-level operation performed separately.
In Informatica PowerCenter's Update Strategy transformation, each row is flagged for a target operation using the constants DD_INSERT (0), DD_UPDATE (1), DD_DELETE (2), and DD_REJECT (3) — DD_INSERT, DD_UPDATE, and DD_DELETE are all valid. There is no DD_TRUNCATE constant; truncating the target table is a session/target-load-type option ("Truncate Target Table"), not a row-level Update Strategy flag, so it's correctly excluded.