Data Engineering Integration
- Data Engineering Integration 10.2.2 HotFix 1
- All Products
Property
| Description
|
---|---|
Order key
| _event_id Ascending . Arranges the data chronologically by ascending event ID.
|
Partition key
| trip_id . Groups the rows according to trip ID so calculations are based on events from the same trip.
|
Frame
| Not specified. Window functions access rows based on the offset argument and ignore the frame specification.
|
LAG ( _event_time, 1, NULL )
DATE_DIFF ( _event_time, LAG ( _event_time, 1, NULL ), 'ss' )
IIF ( DATE_DIFF < 60 or ISNULL ( _event_time ), 'Skip', 'Valid' )
|
|
|
|
|
---|---|---|---|---|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|