sql oracle ora-01861

sql - Convertir una fecha de cadena en fecha y hora en Oracle



ora-01861 (3)

Hey tuve el mismo problema Traté de convertir ''2017-02-20 12:15:32'' varchar a una fecha con TO_DATE(''2017-02-20 12:15:32'',''YYYY-MM-DD HH24:MI:SS'') y todo lo que recibí fue 2017-02-20 el tiempo desapareció

Mi solución fue usar TO_TIMESTAMP(''2017-02-20 12:15:32'',''YYYY-MM-DD HH24:MI:SS'') ahora el tiempo no desaparece.

¿Cómo puedo convertir esta fecha de cadena a datetime en Oracle?

2011-07-28T23:54:14Z

El uso de este código produce un error:

TO_DATE(''2011-07-28T23:54:14Z'', ''YYYY-MM-DD HH24:MI:SS'')

¿Cómo se puede hacer esto?

Error report: SQL Error: ORA-01861: literal does not match format string 01861. 00000 - "literal does not match format string" *Cause: Literals in the input must be the same length as literals in the format string (with the exception of leading whitespace). If the "FX" modifier has been toggled on, the literal must match exactly, with no extra whitespace. *Action: Correct the format string to match the literal.

Actualizar:-

TO_DATE (''2011-07-28T23: 54: 14Z'', ''YYYY-MM-DD "T" HH24: MI: SS "Z"'')

Solo veo la fecha, no la hora, en la columna.

28-JUL-11


Intente esto: TO_DATE(''2011-07-28T23:54:14Z'', ''YYYY-MM-DD"T"HH24:MI:SS"Z"'')


Puedes usar un cast to char para ver los resultados de la fecha.

select to_char(to_date(''17-MAR-17 06.04.54'',''dd-MON-yy hh24:mi:ss''), ''mm/dd/yyyy hh24:mi:ss'') from dual;