timestamp
Its providing me error................................
insert into products_information
values(1,to_timestamp(current_timestamp,'DD-MON-YYYY
HH24:MI:SS'),1200,10,1000,12,1100,10)
/
ERROR: date format picture end before converting entire input string....
This is making me nuts... Please Help a bit....
Related Article: Accept/Prompt
is a solved Oracle discussion thread by maydhyam that has 6 replies and was last updated 2 years ago.
Majestics
Practically a Master Poster
696 posts since Jul 2007
Reputation Points: 209
Solved Threads: 66
Skill Endorsements: 5
What is the target field type ?
Why you need to convert current_timestamp using to_timestamp ?
Why not use current_timestamp of systimestamp directly.
debasisdas
Posting Genius
6,968 posts since Feb 2007
Reputation Points: 722
Solved Threads: 457
Skill Endorsements: 20
Target Field is TimeStamp
time stamp is storing the data in format of dd-mm-yyyy hh:mi:ss.f , i dont want .f i just want upto seconds...
I tried both systimestamp and current_timestamp.
Majestics
Practically a Master Poster
696 posts since Jul 2007
Reputation Points: 209
Solved Threads: 66
Skill Endorsements: 5
If you do not want time factors, why use timestamp for the field.
If only data and time portion is required why not use DATE data type and sysdate only.
debasisdas
Posting Genius
6,968 posts since Feb 2007
Reputation Points: 722
Solved Threads: 457
Skill Endorsements: 20
Question Answered as of 1 Year Ago by
debasisdas