• I'm also trying to figure out how to convert from a bigint value back to a timestamp, a colleague of my did it with SAS, this is the code ...

    proc sql noprint;

    select PUT(put(max_row_version, IB8.),$HEX16.)

    into : maxRowVersion

    from (

    select max(Row_version) as max_row_version

    from stbetlsg.tablename(firstobs=&num_m_50M) );

    %let maxRowVersion=0X&maxRowVersion;

    %put maxRowVersion=&maxRowVersion;

    quit;

    I'm lost with this code, and he found it in the SAS.

    Thought somebody could figure it out.