Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

How can I check the SQL syntax in a .sql file?

share|improve this question
This needs a lot of clarification to be useful (and to stay open). Are you asking for tips on visually inspecting your SQL? Are you looking for a script that will help you check the syntax? Are you running the script and you need help understanding a particular error? – Bill the Lizard Jun 5 '09 at 15:36
1  
I think they want to verify that the file has valid mySql syntax. – KM. Jun 5 '09 at 15:39
visually inspecting SQL file or script will also do to check the syntax – maxjackie Jun 5 '09 at 15:41
1  
@maxjackie said "visually inspecting SQL file or script will also do to check the syntax". in my experience, humans are not 100% accurate checking syntax, but the DB is! – KM. Jun 5 '09 at 15:45

5 Answers

up vote 3 down vote accepted

You could paste it into a query browser like the MySQL Query Browser (part of the GUI Tools package) and visually inspect how the keywords and string literals are colored to more easily see if you've made any syntax errors.

http://dev.mysql.com/downloads/gui-tools/5.0.html

share|improve this answer

just run it....

begin transaction

run it

rollback

share|improve this answer
runing it will give the answer , but is there anything which shows me syntax errors in that file .... – maxjackie Jun 5 '09 at 15:37
you can have valid syntax and still have runtime errors – KM. Jun 5 '09 at 15:41
4  
Can't roll back if tables are MyISAM, or if script runs implicit-commit statements (e.g. DDL), or if script contains COMMIT statements. – Bill Karwin Jun 5 '09 at 15:45
@Bill Karwin, their question is quite brief and doesn't mention any of that ;-) – KM. Jun 5 '09 at 16:07
1  
Prefixing the statement with 'EXPLAIN ' will cause the statement to be parsed and parser errors to be reported without changing the data or hogging too much resource on the database. – symcbean Jan 13 '11 at 10:46

There are a few free/try-ware products out there that will allow you to connect to a MySQL database or just paste in the script to validate it. Google is your friend here. Mimer will check ANSI-Standard syntax validation but probably not handle any MySQL specifics.

share|improve this answer

The basic lexer seems to be implemented in sql/sql_lex.cc. You could use/salvage this to build your own test parser. But this would only check for syntax but not any runtime errors.

share|improve this answer

There are a couple of possiblities. If you are using InnoDB tables that support transactions, you can simply execute a start transaction; at the beginning of your .sql file and a rollback; at the end. MySQL will output any syntax errors.

If you are testiing UPDATE or DELETE statements, you could add LIMIT 0 to the end to prevent these queries from making any database changes, and still have MySQL check the syntax.

share|improve this answer
The script may contain statements that cause an implicit commit anyway. – Bill Karwin Jun 5 '09 at 15:46
True, this makes some assumptions about the content of the .sql file. – Travis Beale Jun 5 '09 at 15:48

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.