rem rem CSC 365. Lab 2. Test script for STUDENTS dataset rem rem Alex Dekhtyar (dekhtyar@csc.calpoly.edu) rem spool lab3-STUDENTS-output.txt rem Create tables host echo '***********************************************' host echo ' Creating tables ' host echo '***********************************************' set echo on start STUDENTS-setup.sql set echo off rem Populate tables host echo '***********************************************' host echo ' Populating tables ' host echo '***********************************************' set termout off start STUDENTS-build-teachers.sql start STUDENTS-build-list.sql set termout on rem test tables host echo '***********************************************' host echo ' Running Lab 3 Assignment ' host echo '***********************************************' set echo on start STUDENTS-lab3.sql set echo off rem drop tables host echo '***********************************************' host echo ' Dropping tables ' host echo '***********************************************' set echo on start STUDENTS-cleanup.sql rem test that the tables no longer exist start STUDENTS-test.sql set echo off host echo '***********************************************' host echo ' That is All, folks! ' host echo '***********************************************' spool off