I have created one database in mysql server 5.0.How i can import this database(I have created the database using mysql command Line)
It showing error...
THOmas
2010-10-06 09:17:38
make sure you use the right user and password, for database you need to have an empty database already created in your mysql (fill in the right database name here), additionally the dumfile needs to be spelled right (take the filename you got from your dump)
Thariama
2010-10-06 09:22:50
Is their any way to export database to a dump file
THOmas
2010-10-06 10:18:32
yes, on commandline do: 'mysqldump -ppasword -uuserxy databasename_to_export > database_dump.sql'
Thariama
2010-10-06 10:22:44