
/*
 * Loading Data into Tables
 *
 * Also refer "Creating Tables" for a description
 * of the columns in each table, and 
 * "Text Data Files" for a description of 
 * the text files that contain relevant data.
 *
 * Make sure that there are no blank lines anywhere 
 * (especially at the end) in the text files, since 
 * these are taken as NULL rows by DB2
 */

IMPORT FROM EMP.TXT OF DEL INSERT INTO EMPLOYEES

IMPORT FROM JOB.TXT OF DEL INSERT INTO JOB_TITLES

/*
 * Non-temporal Tables
 * 
 */

IMPORT FROM INC.TXT OF DEL INSERT INTO INCUMBENTS

IMPORT FROM POS.TXT OF DEL INSERT INTO POSITIONS

/*
 * Temporal Tables
 * 
 */

IMPORT FROM INC_TEMPORAL.TXT OF DEL INSERT INTO INCUMBENTS

IMPORT FROM POS_TEMPORAL.TXT OF DEL INSERT INTO POSITIONS

IMPORT FROM SAL_TEMPORAL.TXT OF DEL INSERT INTO SAL_HISTORY


