sysdate produces 00:00 time
Hello,
I have a stored procedure that stores a record containing a date field.
The syntax is
insert into audit_log values (lv_sequence, sysdate, REC_TYPE, p_pln_id, OPER_UPDATE, log_message);
This works except that the date stored in the record has a time of 00:00. This does not work well for an audit log.
How can I store a date that includes a time?
An interesting fact is...I used this same command in SQL Developer to store a record and the date stored did have a time???
Thank you, Steve