03-19-2019 08:12 AM
I am reading data from csv file before inserting the data into Oracle table,I want to delete or omit unnecessary columns. How to achieve this?Thanks in advance
03-19-2019 09:02 AM
If you put a mapper Snap in between, you can put the source fields in the source column, if you put no target for those fields, it will drop them in the data flow. Use the pass-through option to get all other fields passed to the output without having to put them all in the table
03-21-2019 05:01 AM
Thanks @cstewart. It worked.
I am getting below error while inserting data into Oracle table :
Invalid timestamp format:
Resolution:
Please check for valid timestamp format.
My coulmn datatype is DATE.
The timestamp snaplogic fetching : 2019-03-20T13:03:45+00:00
how to convert the this timestamp to Oracle DATE datatype?
03-25-2019 01:31 PM
This post might help: SnapLogic DateTime Conversion Guidelines
03-26-2019 03:53 AM
Thank you @dmiller
that post helped me.
I want to truncate the table before loading/ inserting the data for every execution. is it possible?