Forum Moderators: coopster
2) Now fill the databases with the tables in nuke.sql file:
mysql nuke < nuke.sql
This isn't working at all for me.
"LOAD DATA LOCAL INFILE "myfile.txt" INTO TABLE my_table;" isn't working either...
Anyone know a way to load data into a mysql database?
Thanks guys.
Have you checked, if you should have created the "nuke" databse first before filling?
mysql> create database nuke;
Could it be a permission problem?
mysql --user=root --password=xyz nuke < nuke.sql
To get some more hints about working with MySql you may search Google for the "MySql database survival guide".
Regards,
R.