Can anyone recommend a good SQL parsers? - Stack Overflow most recent 30 from stackoverflow.com 2009-11-22T18:00:22Z http://stackoverflow.com/feeds/question/269228 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers 3 Can anyone recommend a good SQL parsers? Larry 2008-11-06T15:57:39Z 2009-05-26T08:12:34Z <p>I am trying to write a tool that can compare a database’s schema to the SQL in an install script. Getting the information from the database is pretty straightforward but I am having a little trouble parsing the install scripts. </p> <p>I have played with a few of the parsers that show up on Google but they seemed somewhat incomplete. Ideally I would like to find an open source parser that is fairly stable and has half decent documentation. </p> <p>Also, I am not really concerned about types and syntax that specific to certain databases. The databases that need to be check are pretty simple.</p> http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers/269245#269245 0 Answer by Allain Lalonde for Can anyone recommend a good SQL parsers? Allain Lalonde 2008-11-06T16:03:38Z 2008-11-06T16:24:10Z <p><a href="http://www.sqlparser.com/" rel="nofollow">General SQL Parser</a> is decent. You'd probably found it already, but what does it not do for you since you said the SQL is pretty simple?</p> http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers/269247#269247 0 Answer by Max for Can anyone recommend a good SQL parsers? Max 2008-11-06T16:04:40Z 2008-11-06T16:43:18Z <p>Some databases, such as postgresql, let you query the current schema. So you could go the other direction: instead of trying to take the schema and parse the SQL, you can create SQL statements that query for the fields and tables you require to see if they are in the schema in the database.</p> <p>Here's an example: <a href="http://www.alberton.info/postgresql_meta_info.html" rel="nofollow">postgresql schema metadata</a></p> http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers/269261#269261 0 Answer by le dorfier for Can anyone recommend a good SQL parsers? le dorfier 2008-11-06T16:08:34Z 2008-11-06T16:08:34Z <p>SQL Server may be able to do some of this for you. It provides a pretty good dependency tree, which is accessible through the SDK.</p> http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers/269281#269281 0 Answer by Mark Brady for Can anyone recommend a good SQL parsers? Mark Brady 2008-11-06T16:15:34Z 2008-11-06T16:15:34Z <p>Powerdesigner can reverse engineer from both a live database and a script and build a difference script.</p> <p>There's a 15 day free trial you could use for this time, see if it's does what you want.</p> http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers/269343#269343 1 Answer by Aaron Palmer for Can anyone recommend a good SQL parsers? Aaron Palmer 2008-11-06T16:32:59Z 2008-11-06T16:32:59Z <p>I've used <a href="http://www.red-gate.com/products/SQL_Compare/index.htm?gclid=CLDSg5j94JYCFQOuFQodpTzlPQ" rel="nofollow">SQL Compare</a> and it's excellent.</p> <p>You could run the install script to create a new db and then compare the existing db to the new db.</p> http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers/269388#269388 0 Answer by Will Hartung for Can anyone recommend a good SQL parsers? Will Hartung 2008-11-06T16:44:36Z 2008-11-06T16:44:36Z <p>Seriously, especially for simple databases, your SQL Server has a great SQL parser built in.</p> <p>Create a schema and load it up. Compare the data, then drop the schema when you're done.</p> <p>If you're afraid of running the DDL, then perhaps using one of the several, lightweight, embedded servers will do the job for you (like Derby if you run Java).</p> <p>Then you get the parsed SQL and access to the tables just like you do now.</p> <p>You have the database, you may as well leverage it if you can.</p> http://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers/909531#909531 0 Answer by Klathzazt for Can anyone recommend a good SQL parsers? Klathzazt 2009-05-26T08:12:34Z 2009-05-26T08:12:34Z <p>If you have DDL to create the tables, parse off the table name and prepend some generated table name for this. Depending on the SQL engine you are using, you have different ways to query the schema:</p> <p>Using SQLite:</p> <pre><code>PRAGMA table_info(my_table) PRAGMA table_info(temporary_my_table) </code></pre> <p>Or on MySQL:</p> <pre><code> SELECT table_name, column_name, data_type FROM information_schema.columns WHERE table_schema = 'my_schema' AND (table_name LIKE '%my_table'; </code></pre>