A small query in importing mysql dump file to my Local Server.
Actually I have installed
5.1.22-rc-community to my local system. I have a mysql dump sql file in one of my server, now I want to execute the script to my local host mysql, how can I do it?
I normally will execute the script using the following command,
Code:
mysql -u root -p –h [My Server IP] < [File Path].sql
How should I have to issue the command for importing the sql file to my localhost ? Any Ideas?