Skip to main content
Skip table of contents

timemillis

Resolved as the current Unix timestamp in milliseconds in load execution.


See also:


Usage

VARIABLE
<timemillis>

Notes

Supported in all loads.


Examples

Insert millisecond timestamp into target table with OVERRIDE

OVERRIDE load step in an example entity load:

SQL
insert into <target_schema>.<target_entity_name>
select
    ... ,
    '<timemillis>' as unix_time_in_milliseconds, 
    ...
;

Load executed in the target database:

SQL
insert into publish.D_EXAMPLE
select
    ... ,
    1729599161159 as unix_time_in_milliseconds,
    ...
;

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.