Hi,
My db version is 11g
I created a table as"
create table t1 (col1 timestamp with time zone)
And using our custom etl process loaded data into t1. The source data is in GMT.
When I query t1 data, I see data in this format: 14-OCT-13 10.20.53.000000000 AM -05.00
I really dont want that -05.00 at the end.
I need to offset it by 0000. How can I do that.
What confuses me is, should I do it at create table. Or at insert into table. Please advice.