Are there any static code analysis tools for stored procedures written particularly in PL/SQL and T-SQL?
|
|
Toad features the CodeXpert utility to statically check your PL/SQL code. The utility can either scan files or connect directly to the Oracle database. As far as I've seen, works only on Windows. |
|||
|
|
|
|
The nearest thing that I know of are the estimated and actual query plan functions available in SQL Server Management Studio but I'd guess there's similar for other SQL engines. |
||
|
|
|
|
Not that I'm aware of. Regardng PL/SQL, since Oracle doesn't expose much of their PL/SQL compilation engine its hard to find tool support. The most I've been able to do is to query the data dictionary to do things like map the package dependencies. |
||
|
|
|
|
For T-SQL, Microsoft has the database edition of VS Team Suite (although, I believe its now in the dev SKU). This link talks about writing your own static code analysis rule for T-SQL: http://blogs.msdn.com/gertd/archive/2009/01/01/creating-t-sql-static-code-analysis-rules.aspx |
||||
|
|
|
I came across Tool called SQL Enlight. It has Analysis Script feature to identify common performance,design and database objects naming problems in the T-SQL code. Does any one has experience in using this tool? How does it compare to VS Team Suite Data Base Edition for static analysis? |
|||
|
|
|
|
Oracle has some little-known stuff built in. Try this in 10g Release 2 or above:
Then compile your PL/SQL package (not an anonymous block). |
|||
|
|
|
|
For PL/SQL, Toad CodeXpert can be extended with Sonar, an open source tool to manage code quality through a plugin. I guess it would be possible to write a plugin for T-SQL as well. |
|||
|
|
