About 50 results
Open links in new tab
  1. How do I get this timestamp in the format I want, Oracle SQL

    Jul 10, 2018 · This is the format I want to have a TIMESTAMP object stored in. This is a common misconception - timestamp (and date) data types do not have a format; they are stored in the …

  2. How to convert date to timestamp(DD-MON-YYYY HH24:MI:SS.FF …

    Dec 17, 2015 · If I got your question right you need the output in the mentioned Format. That would be a conversion to character select to_char(cast(sysdate as timestamp),'DD-MON-YYYY …

  3. sql - Oracle default Timestamp format - Stack Overflow

    I just set default timestamp format as ALTER SESSION SET NLS_TIMESTAMP_FORMAT = 'YYYY-MM-DD HH:MI:SS.FF' When I insert the data into the table the timestamp inserted as, 0014-08-11 …

  4. sql - Formatting timestamp in oracle - Stack Overflow

    Feb 17, 2021 · A timestamp should really, really be stored in a timestamp column rather than in a varchar2. Both because then the data type identifies what is actually in the column and because it is …

  5. Timestamp conversion in Oracle for YYYY-MM-DD HH:MM:SS format

    Apr 25, 2012 · 15 I'm trying to insert records with YYYY-MM-DD HH:MM:SS format into Oracle from Netezza, but I'm getting invalid date type. How can I accomplish this one?

  6. sql - ORACLE TIMESTAMP FORMAT MASK - Stack Overflow

    Sep 12, 2014 · The trouble with this Oracle #$%%^ is that the formatting on the TO_TIMESTAMP_TZ and FROM_TZ is horrible. If you want to insert the value into a date field in a format you can actually …

  7. Oracle sql convert timestamp into format - Stack Overflow

    I am using Oracle Apex and outputting everything in a table. The table allows sorting. Now when I sort it sorts the column as a string and not as a date, so the sorting is not accurate. How can I convert a …

  8. How can I set a custom date time format in Oracle SQL Developer?

    Nov 15, 2011 · By default, Oracle SQL developer displays date values as 15-NOV-11. I would like to see the time part (hour/minute/second) by default. Is there a way to configure this within Oracle SQL …

  9. sql - How to insert a timestamp in Oracle? - Stack Overflow

    Mar 24, 2011 · I have an Oracle DB with a timestamp field in it. What is the correct SQL code to insert a timestamp into this field?

  10. sql - Oracle timestamp data type - Stack Overflow

    Jan 24, 2012 · what is the different between timestamp data type without parameter and with parameter 0: timestamp VS timestamp(0)