OnDemand User Group

Support Forums => iSeries => Topic started by: BHUMENY on September 18, 2015, 11:43:05 AM

Title: Contents of ARSLOAD Table
Post by: BHUMENY on September 18, 2015, 11:43:05 AM
Where can I find the meaning of the fields in the ARSLOAD table?
Title: Re: Contents of ARSLOAD Table
Post by: Alessandro Perucchi on September 19, 2015, 03:25:39 AM
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) ????
Title: Re: Contents of ARSLOAD Table
Post by: BHUMENY on September 21, 2015, 08:50:04 AM
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.
Title: Re: Contents of ARSLOAD Table
Post by: Justin Derrick on September 21, 2015, 10:46:06 AM
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.

Code: [Select]
$ /opt/ondemand/bin/arsdate 16010
16010 -> 10/31/13
$ /opt/ondemand/bin/arsdate 09/21/15
09/21/15 -> 16700

-JD.