vote up 1 vote down star

I need to insert some data into a table in Oracle.

The only problem is one of the fields is a timestamp(6) type and it is required data. I don't care about what actually goes in here I just need to get the right syntax for an entry so that the database will accept it.

I'm using the gui web client to enter data however I don't mind using raw SQL if I have to.

Thanks.

flag

57% accept rate
Are you asking how to create a column with TIMESTAMP datatype, or how to convert a string value to a TIMESTAMP value when inserting or loading? – Dave Costa Oct 15 '08 at 12:44
I think I have worded this poorly. I need to insert data into a timestamp column. – Scottm Oct 15 '08 at 13:53

2 Answers

vote up 1 vote down

using to_timestamp() is one option. the other is doing this:

INSERT INTO table VALUES (timestamp'2009-09-09 09:30:25 CET');
link|flag
vote up 5 vote down

I dunno if this helps at all, but in SQL*Plus I did this:

create table x ( a timestamp(6));
insert into x values ( current_timestamp );
select * from x;

getting me this:

T
---------------------------------------------------------------------------
15-OCT-08 02.01.25.604309 PM

So it looks like that works.

If you need to put a previously-known value into the column, how about the TO_TIMESTAMP() function? Something like this:

select to_timestamp('27/02/2002 15:51.12.539880', 'dd/mm/yyyy hh24:mi.ss.ff') 
from dual ;
link|flag
the to_timestamp function didn't work for me in this particular case (the database client didn't like it) - but it seems like a good way to create timestamp values. Thanks. – Scottm Oct 16 '08 at 8:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.