BATCH-676: Added sample jobs for non sequential execution and decisions

This commit is contained in:
lucasward
2008-11-07 20:46:57 +00:00
parent a5fdbfedaf
commit 7d5e2d14c1
22 changed files with 535 additions and 15 deletions

View File

@@ -8,3 +8,4 @@ DROP TABLE $!{IFEXISTSBEFORE} CUSTOMER $!{IFEXISTS};
DROP TABLE $!{IFEXISTSBEFORE} PLAYERS $!{IFEXISTS};
DROP TABLE $!{IFEXISTSBEFORE} GAMES $!{IFEXISTS};
DROP TABLE $!{IFEXISTSBEFORE} PLAYER_SUMMARY $!{IFEXISTS};
DROP TABLE $!{IFEXISTSBEFORE} ERROR_LOG $!{IFEXISTS};

View File

@@ -72,4 +72,8 @@ CREATE TABLE PLAYER_SUMMARY (
RECEPTIONS ${BIGINT} NOT NULL ,
RECEPTIONS_YARDS ${BIGINT} NOT NULL ,
TOTAL_TD ${BIGINT} NOT NULL
) $!{VOODOO};
) $!{VOODOO};
CREATE TABLE ERROR_LOG (
MESSAGE CHAR(300) NOT NULL
) $!{VOODOO};