Skip to content

Instantly share code, notes, and snippets.

@sankars
Created April 24, 2021 11:36
Show Gist options
  • Save sankars/a96c9a0fe3e786c4981da52127aa2243 to your computer and use it in GitHub Desktop.
Save sankars/a96c9a0fe3e786c4981da52127aa2243 to your computer and use it in GitHub Desktop.
Query to see failed mappings in Informatica BDM
select
POR_OBJECTNAME as MAPPING_NAME,
POR_REQUESTTYPE as JOB_TYPE,
DATEADD(SECOND,POR_STARTTIME/1000,'19700101 00:00') AS MAPPING_START_TIME,
POR_MESSAGE as ERROR_MESSAGE,
POR_LOGFILENAME as LOG_FILE,
POR_SERVICENAME as DIS_NAME,
POR_EXECUTINGNODENAME as NODE_NAME
from PO_REQUESTSTAT
where POR_MESSAGE IS NOT NULL
ORDER BY POR_STARTTIME DESC;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment