I have data in text file in this format
2016-11-13 13:53:16 UTC
and I want to store this data in a timestamp column. So I have a timestamp column in table mytab and ran
insert into mytab values (to_timestamp('2016-11-13 13:53:16 UTC','YYYY-MM-DD HH24:MI:SS TZR'));
and got
"ORA-01821: date format not recognized"
Just wonder what datetime format I could use her to insert the data. Thanks.