i have a simple .bat file that works fine in windows. moved it over to my fedora core 4 machine and it does nothing. the script is suppose to move data from my Referral_Authorization table to my referral history table???
thanks for the help
here are the scripts
.bat
PHP Code:
/usr/bin/mysql -h localhost -u root ehpadmin < /usr/etc/scripts/script.sql
script.sql
PHP Code:
INSERT INTO referralhistory(MEMBERID)
Select MEMBERID FROM Referral_Authorization WHERE FORMTYPE ="A";