Source command in mysql
by Rekha[ Edit ] 2009-04-02 17:07:53
The SOURCE command is used to load the file from the command prompt.
mysql> SOURCE backupfile.sql
The sequence \. is a shorcut name for the SOURCE statement. The following does exactly the same thing as the above SOURCE statement.
mysql> \. backupfile.sql