hi all..
I have to work on a large (500 MB) sql import file, and need mostly to import it in mysql (hardest is there), we have tested security and speed on local "identical structure" servers. This database needs to be accessible online to our clients pretty soon.
I've done the following command :
mysql -u xxxxxx_data -p xxxxxx_data < /home/xxxx.sql
My problem is that it gives me following error :
ERROR 1044 (42000) at line 21: Access denied for user 'xxxxxx_data'@'localhost' to database 'xxxxxxdata'
As you can see database name has lost the underscore used in mysql naming...
How do i solve this... ???
I have checked and i have correct login and passwords, i can execute commands directly on mysql... Yet i don't know how to point on the correct database...
Thks for your help
I have to work on a large (500 MB) sql import file, and need mostly to import it in mysql (hardest is there), we have tested security and speed on local "identical structure" servers. This database needs to be accessible online to our clients pretty soon.
I've done the following command :
mysql -u xxxxxx_data -p xxxxxx_data < /home/xxxx.sql
My problem is that it gives me following error :
ERROR 1044 (42000) at line 21: Access denied for user 'xxxxxx_data'@'localhost' to database 'xxxxxxdata'
As you can see database name has lost the underscore used in mysql naming...
How do i solve this... ???
I have checked and i have correct login and passwords, i can execute commands directly on mysql... Yet i don't know how to point on the correct database...
Thks for your help