REM This script will open four new command windows and run each part of the data load in its own REM process, greatly speeding up the processing time to load a database. The disadvantage is that REM if locations don't already exist in the DB location ids for what's a SCH and what's a TG location REM will be mixed rather than having sequential SCH locations follwed by sequential TG locations. START "SCH Load" c:\Gov\PHP\php.exe -r "require 'DB_Loader.php'; load_sch_data();" START "TG Load" c:\Gov\PHP\php.exe -r "require 'DB_Loader.php'; load_tg_data();" START "Sig. Wave Load" c:\Gov\PHP\php.exe -r "require 'DB_Loader.php'; load_sig_wave_height();" START "Arctic Load" c:\Gov\PHP\php.exe -r "require 'DB_Loader.php'; load_arctic_mrsl();"