Where can I find the meaning of the fields in the ARSLOAD table?
You mean that: http://www-01.ibm.com/support/knowledgecenter/SSEPCD_9.5.0/com.ibm.ondemand.administeringmp.doc/dodsc018.htm (http://www-01.ibm.com/support/knowledgecenter/SSEPCD_9.5.0/com.ibm.ondemand.administeringmp.doc/dodsc018.htm) ????
Sort of.
It tells me the name of the fields, but not the meaning.
EG.
start BIGINT
What does a start date 0f 16010 mean? I have forgotten what the base date was.
Quote from: BHUMENY on September 21, 2015, 03:50:04 PM
What does a start date 0f 16010 mean? I have forgotten what the base date was.
Number of days since January 1st, 1970. You use arsdate to calculate the actual date, or turn a real date into an internal date format.
$ /opt/ondemand/bin/arsdate 16010
16010 -> 10/31/13
$ /opt/ondemand/bin/arsdate 09/21/15
09/21/15 -> 16700
-JD.