Insert Statement
SQL statement that adds new rows to a table.
INSERT INTO appDB.logTable (
process_name = 'S2F_BOOKS_LOAD_NEW'
, session_id = 105678989
, message_txt = ''
, message_ts = '2019-07-23 00:00:00'
, Insert_dt = CAST((CURRENT_TIMESTAMP(0)) AS DATE FORMAT 'YYYY-MM-DD'));INSERT INTO appDB.sfSchema.logTable (
process_name
, session_id
, message_txt
, message_ts
, Insert_dt)
VALUES (
'S2F_BOOKS_LOAD_NEW'
, 105678989
, ''
, '2019-07-23 00:00:00'
, TO_DATE((CURRENT_TIMESTAMP(0))) /*** MSC-WARNING - MSCEWI2025 - OUTPUT FORMAT 'YYYY-MM-DD' NOT SUPPORTED. ***/);Related EWIs
Last updated
Was this helpful?