rem rem CSC 365. Lab 3. Test script for AIRLINES dataset rem rem Alex Dekhtyar (dekhtyar@csc.calpoly.edu) rem rem Create tables host echo '***********************************************' host echo ' Creating tables ' host echo '***********************************************' set echo on start AIRLINES-setup.sql set echo off rem Populate tables host echo '***********************************************' host echo ' Populating tables ' host echo '***********************************************' set termout off start AIRLINES-insert.sql set termout on spool lab4-AIRLINES-output.txt rem RUN LAB 4 assignment host echo '***********************************************' host echo ' Running Queries ' host echo '***********************************************' set echo on start AIRLINES-info.sql set echo off rem drop tables host echo '***********************************************' host echo ' Dropping tables ' host echo '***********************************************' set echo on start AIRLINES-cleanup.sql set echo off host echo '***********************************************' host echo ' That is All, folks! ' host echo '***********************************************' spool off