I am generating dummy data for a database, one attribute is using TIMESTAMP(6).
Can anyone give me an example of how the value looks?
Also I would like to be able to insert the date along
i.e 03/18/2012 02:35 AM
so that it looks like
INSERT INTO FLIGHT VALUES (1,'London Heathrow','Miami Airport','03/18/2012 02:35 AM','04/18/2012 13:35 PM');
Is this possible? Thanks alot…
EDIT—-
How can i get rid of the timestamp column massive space

Whenever you are dealing with
DATEorTIMESTAMPdata types, you should always insertDATEorTIMESTAMPvalues. You should not be inserting strings and relying on implicit conversions to convert the string to aDATEor aTIMESTAMP. You should be explicitly callingTO_DATEorTO_TIMESTAMP. YourINSERTstatement should also be explicitly listing the names of the columns you’re inserting into.You’d want your
INSERTstatement to look something like thisYou can adjust how SQL*Plus displays the data in a particular column by changing the format mask. For E.g.
will cause SQL*Plus to display both
DEPT_TIMEandARRV_TIMEin 30 horizontal characters (your currentNLS_TIMESTAMP_FORMATappears to generate 28 character strings, if you change yourNLS_TIMESTAMP_FORMAT, you may want to change the width of the column you’re asking SQL*Plus to display).