vote up 5 vote down star
3

7 Answers

vote up 1 vote down check

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 2 vote down

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

link|flag
Related reading msdn.microsoft.com/en-us/library/…, msdn.microsoft.com/en-us/library/… – suyasha Feb 11 at 8:15
I would accept this answer as well. Its just that becuase my question has two parts (one for PLSQL and other for TSQL) there are two separate answers but stackoverflow allows only one to be accepted. – suyasha Feb 17 at 7:50
vote up 1 vote down

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?

link|flag
vote up 0 vote down

Oracle has some little-known stuff built in.

Try this in 10g Release 2 or above:

ALTER SESSION PLSQL_WARNINGS = 'ENABLE:ALL';

Then compile your PL/SQL package (not an anonymous block).

link|flag
vote up 0 vote down

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.

link|flag

Your Answer

Get an OpenID
or

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