OnDemand Users Group

Support Forums => CMOD for i => Topic started by: BHUMENY on September 18, 2015, 06:43:05 PM

Title: Contents of ARSLOAD Table
Post by: BHUMENY on September 18, 2015, 06:43:05 PM
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, 10: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, 03:50:04 PM
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, 05:46:06 PM
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.