Steps to import scheduler 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 TASKS;
7) If you would like to import the table to a ‘tasks.de1’file, here is the command:
ij> CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE
(null,'TASKS','tasks.de1',null,null,null);