Hello,
TLDR: Is there a way to keep milliseconds when data is imported from a database? Import JSON, timestamp milliseconds all turn into 0's. JMP 16.2/17.0
I currently have a JSL script that pulls json data from a database
ex ->
Data Table(open database(dsn_string, sql_string, table_name, Invisible(1)));
This script has been working with no issues except that the granularity of the timestamp column are missing the milliseconds.
In the original JSON file, the timestamp have milliseconds ("TIME_STAMP":"2022\/08\/10 17:00:37.130") but in JMP, the timestamp no longer has milliseconds. Even if I edit the Column Info to have more decimals positions, milliseconds are all 0's.
Missing the milliseconds is causing analysis issues due to rows being sorted incorrectly. I really need the granularity of milliseconds in my data.
Does anyone know how to solve this issue of why milliseconds disappear during data import?
Any clues to prevent this from occurring?
Thank you all in advance for the help!!!