Hi,
I have a ascii dump(.sql file) with all create table and insert statements...
Now how do i put the contents into my mysql database?
Thank you
feed it to mysql
mysql -u username -p password database <file.sql
It's all in the mysql manual.