Informatica Cloud post-processing commands are used to archive files after they are imported/processes from the Informatica "dropbox" folder.
The syntax for post-processing commands depend on:
Example post-processing command for a task flow making use of Powercenter, as taken from a Windows ACT task with the default dropbox location: (new lines added for readability)
MOVE %TargetX_ETL_Dir%\TargetX\dropbox\ACT_Data.txt
%TargetX_ETL_Dir%\TargetX\archives\ACT\^"ACT_%DATE:/=-%.txt^" &
DEL %TargetX_ETL_Dir%\TargetX\dropbox\ACT_Data.csv
The above example has two discrete operations
Move ACT_Data.txt from the dropbox folder to the ACT archive folder, using today’s date for the new filename.^"ACT_%DATE:/=-%.txt^" is a piece of work to fully understand, but it effectively becomes ACT_<today>.txtwhere <today> is replaced with some rendition of the current date.
Delete ACT_Data.csv from the dropbox folder. The Powercenter task created this using ACT_Data.txt, and it’s no longer needed. Only Powercenter flows should use this.If we add some color-coding, it would look something like:
If you plan to run the same process on multiple files in the same day, you will want to consider the following, which includes a time stamp:MOVE %TargetX_ETL_Dir%\TargetX\dropbox\ACT_Data.txt
%TargetX_ETL_Dir%\TargetX\archives\ACT\^"ACT_%DATE:/=-%%TIME::=-%.txt^"
Create a Comma-Separated-Values (.csv) file with Current & New values - in Columns A & B respectively
To review specific error messages, see Resolving Common Informatica Integration Errors.
Previewing the Error Rows File
You can Preview the first 25 rows and first 50 columns of the error rows file from All Jobs or Running Jobs in Monitor, or on the My Jobs page in Data Integration:
From the Landing page, click Monitor:For additional information on Data Integration job log files, see Informatica’s article Data Integration job log files.