Hi,
Extracting the data from oracle DB and loading it into SQL server 2017 using SSIS package. my source is oracle and filed date type is TIMESTAMP (6). I have created "STRAT_DATE" as a parameter and the value is coming from the SQL server table and the data type and Parameter were defined as - DATETIME
when I added as below into where clause package is running with failer but it extracting all data from the source.
Where source_date >= '" + @[User::start_date]) + "'
Please advise how to define the parameter?
When I run the below query in oracle it giving current result but does not work in SSIS
Oracle SQL:
SELECT * FROM ACCOUNTS WHERE OPEN_DATE > TO_DATE('2022-06-12 00:00:12,'YYYY-MM-DD HH24:MI:SS)