timerender

Overview

The timerender statement is used to create or update a column containing human-readable versions of UNIX timestamps

Syntax

timerendertimestampColasreadableCol

Details

When working with time-sensitive data, Exivity uses UNIX epoch timestamps (accurate to 1 second) which contain an integer representing the number of seconds that have elapsed since 00:00:00 on January 1st 1970.

These values can be generated from usage data using the timestamp statement and may be modified during aggregation, so in order to assist the development and debugging of Transcript tasks the timerender statement may be used to create human-readable versions UNIX timestamps as follows:

  • The timestampCol parameter is the name of the column containing the UNIX timestamps to convert

  • The readableCol parameter is the name fo the column to write the human-readable strings into

If the readableCol column does not exist, it will be created. If it does exist then the values in it will be updated.

If readableCol exists and the 'overwrite' option is disabled via option overwrite then only blank values will be updated

The human readable timestamps contain fields for year month day hour minute second, eg: 20170518 17:00:00.

If any values in timestampCol are blank, or do not contain a valid UNIX timestamp then the value in readableCol on the same row will default to a blank value.

Example

Last updated

Was this helpful?