Can anyone recommend a good SQL parsers? - Stack Overflow most recent 30 from stackoverflow.com2009-11-22T18:00:22Zhttp://stackoverflow.com/feeds/question/269228http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/269228/can-anyone-recommend-a-good-sql-parsers3Can anyone recommend a good SQL parsers?Larry2008-11-06T15:57:39Z2009-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#2692450Answer by Allain Lalonde for Can anyone recommend a good SQL parsers?Allain Lalonde2008-11-06T16:03:38Z2008-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#2692470Answer by Max for Can anyone recommend a good SQL parsers?Max2008-11-06T16:04:40Z2008-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#2692610Answer by le dorfier for Can anyone recommend a good SQL parsers?le dorfier2008-11-06T16:08:34Z2008-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#2692810Answer by Mark Brady for Can anyone recommend a good SQL parsers?Mark Brady2008-11-06T16:15:34Z2008-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#2693431Answer by Aaron Palmer for Can anyone recommend a good SQL parsers?Aaron Palmer2008-11-06T16:32:59Z2008-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#2693880Answer by Will Hartung for Can anyone recommend a good SQL parsers?Will Hartung2008-11-06T16:44:36Z2008-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#9095310Answer by Klathzazt for Can anyone recommend a good SQL parsers?Klathzazt2009-05-26T08:12:34Z2009-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>