Steps to import job monitor records
1) Move to snapcreator gui directory
2) Set classpath to locate derby.jar and derbytools.jar they are under gui/lib/
gui> set classpath=path/to/derby.jar; path/to/derbytools.jar
3) run ij with following command:
gui> java org.apache.derby.tools.ij
4) set snapcreator schema
ij> SET SCHEMA SNAPCREATOR;
5) run query to select all records:
ij> SELECT * FROM JOB;
7) If you would like to import the table to a file, here is the command:
ij> CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE
(null,'JOB','job.del',null,null,null);