I am new to MySQL. I want to execute a text file containing SQL queries.
|
You have quite a lot of options:
|
|||
|
|
|
If you’re at the MySQL command line
|
|||
|
|
|
You can use SQLyog's Execute SQL script to execute the .sql file. Select the file and press Execute. :-) You get 30 day free trial. And, you are getting the error because you have quotes around the file name. The file must be located on the client host where you're running mysql. The filename must either be an absolute pathname listing the full name of the file, or a pathname that's specified relative to the directory in which you invoked mysql. For example, if you started mysql on a Windows machine in the C:\mysql directory and your script file is my_commands.sql in the C:\scripts directory, both of the following SOURCE commands tell mysql to execute the SQL statements in the file: mysql> SOURCE C:\scripts\my_commands.sql; mysql> SOURCE ..\scripts\my_commands.sql; The other way to execute a script file is by naming it on the mysql command line. Invoke mysql and use the < input redirection operator to specify the file from which to read query input: shell> mysql db_name < input_file |
||||
|
|
|
you can execute mysql statements that have been written in a text file using the following command:
if yourdatabase has not been created yet, log into your mysql first using:
then:
then:
that should do it! More info here: http://dev.mysql.com/doc/refman/5.0/en/mysql-batch-commands.html |
|||
|
|
