Tagged Questions
The to-date tag has no wiki summary.
2
votes
4answers
4k views
Literal does not match format string for Oracle SQL to_date on a string column
Dear SQL Gurus from Stack Overflow:
Environment: Oracle
I'm trying to understand why I can't do a to_date selection on a table column that contains strings. Note tableZ with a column of name Value ...
2
votes
3answers
193 views
Converting to date with multiple possible masks in Oracle
It so happens that I have to get a date from a varchar2 column in oracle, but it is inconsistent in formatting. Some fields might have '2009.12.31', others '2009/12/32 00:00:00'. Is there any standard ...
1
vote
1answer
205 views
Oracle to_date function with codeigniter
I am using Codeigniter to insert data into an Oracle table which contains a date field.
Sample code looks like this:
$upload_details = array("user_name" = $name,
"age" = $age,
"date" = ...
1
vote
2answers
192 views
Oracle Get only time from To_Date() in a Query?
I have an insert query:
INSERT INTO THE_TABLE (Field_A)
VALUES (TO_DATE('08/12/2011 08:35:42 AM','HH:MI:SS PM'))
WHERE Something = 'SomethingElse'
Field_A is a Date field. When I execute the ...
1
vote
2answers
503 views
Oracle to_date function. Mask needed
I have string of date from xml file of such kind: '2010-09-09T22:33:44.OZ'
I need to extract only date and time. I want to ignore symbol T and .OZ (time zone). Which mask I should use? Thanks in ...
1
vote
1answer
169 views
OracleCommand seems to convert literal dates
I built a small query tool for Oracle using OracleCommand and OracleDataAdapter. Users just input a full query (no parameters), execute and the results are shown in a datagridview. So far so good, ...
1
vote
1answer
2k views
ORA-01861: literal does not match format string
I'm pretty sure this is something really silly.
Instead of spending another 10 minutes with this ( or better said, while I spend another 10 minutes with this ) I'll ask it here in parallel.
What's ...
0
votes
3answers
59 views
to_date unable to print timestamp
I want to print the timestamp from the below sql
select to_date('01/01/2011 12:00:00 AM','dd/mm/yyyy hh:mi:ss AM') from dual;
current output --> 1/1/2011 (not printing the timestamp only for 12 am. ...
0
votes
2answers
138 views
Oracle to_date SQL formatting odd behavior
I've trawled the SO website thinking this is pretty obvious but alas I have not found one yet.
Basically the setup is as follows:
I have a string in a table like so:
06/22/2010 00:00:00
I do a ...