| Name | Data Type | Default Value | In/Out |
|---|---|---|---|
| SECS | NUMBER(38) | IN |
Legend: comment string keyword reserved word operator
1: function epoch_seconds_to_timestamp_tz(secs in number)
2: return timestamp with local time zone
3: is
4: begin
5: return to_timestamp_tz('1970-01-01 00:00:00 UTC', 'YYYY-MM-DD HH24:MI:SS TZR') + numtodsinterval(secs, 'second');
6: end;