How to extract date from a table where the date is stored in Numeric format

Mani April 13, 2020

Hello,

In Zephyr test case Schedule table (AO_7DEABF_SCHEDULE) last execution date is stored in numeric format. Column name is Executed_On.  How can we extract the corresponding date to that numeric field so that we can extract and display in report when was the last execution happen to that test case issue in Jira.

 

Below is an example of the value for that column that is stored in the DB.

1558517155437

 

Thanks,

Mani

 

 

1 answer

1 vote
Neelakanta Reddy M April 13, 2020

Hello, 

This is numeric format of date and time. This is used to calculate the time irrespective of TIME Zones.

 

You can checkout the time using https://www.epochconverter.com/ by entering that numeric value.

 

SQL QUERY:

SELECT ID, from_unixtime((EXECUTED_ON div 1000)) FROM ao_7deabf_schedule;

 

Above query returns ID, Time in readable format.

4942020-02-25 14:59:26
4952020-02-25 15:00:57
4962020-02-25 15:01:18

 

Regards

Neelakanta

Mani April 13, 2020

Thank you.

Like Neelakanta Reddy M likes this

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events