I am working on SSIS and try to import the data from Oracle DB
I am using the OLEDB Connector for Oracle with paramters to run the SQL Query, however i found it cant to pass the parameter and get the corresponding data. Any people can help?
Bold one is the parameter, I tried to use ('') or ? or the parameter also not work.
SQL Query:
SELECT B.CNTR_NUM, A.LOC, A.EVENT_TYPE, to_char(A.ACTVY_DT, 'yyyy-mm-dd hh24:mi:ss'), to_char(A.PROCESS_DT, 'yyyy-mm-dd hh24:mi:ss'), to_char(A.REC_UPD_DT, 'yyyy-mm-dd hh24:mi:ss')FROM CNTR_PACKG_STATUS_LOG_RVW A, CONTAINER_PACKAGE_RVW B WHERE A.PACKAGE_UUID = B.PACKAGE_UUID AND
b.CNTR_NUM = ('')
AND A.LOC in ('')
AND A.TRCKG_GRP_REF_CDE in ('')
wailun3