I´m using mysql 4.1.10a and the import commands changed. Could anyone tellme which is the right command for this version for importing .sql files ?? cause by phpmyadmin hangs my computer and I want to do it from command line.
Thanks![]()
I´m using mysql 4.1.10a and the import commands changed. Could anyone tellme which is the right command for this version for importing .sql files ?? cause by phpmyadmin hangs my computer and I want to do it from command line.
Thanks![]()
The MySQL documentation would probably be the best place to start your search.
http://dev.mysql.com/doc/
Importing in mysql via the shell hasn't changed in ages.
mysql -uUSERNAME -pPASSWORD DATABASE < /path/to/file.sql
boom
Zachery Woods