Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm looking for a tool that that I can use to clean up (formatting, tabs etc...) my stored procedures and views. Is there anything like html's tidy, but for SQL which is free/open source?

share|improve this question
If you like gbn's answer, can you mark it as answwered? – AlexKuznetsov Jul 7 '09 at 18:20

7 Answers

up vote 4 down vote accepted

Three years later, I'd just like to round out this question with two options that seem to be missing, and I think are both more appropriate than most options listed so far:

  • Poor Man's T-SQL Formatter / poorsql.com (free, open-source, SSMS add-in, commandline formatter, full DDL/DML script formatting, and I'm the author/maintainer so I get to put it first :))
  • T-SQL Tidy (free, SSMS Add-In, full DDL/DML script formatting, apparently 2008R2 add-in can do offline formatting also now - but not open-source?)

I believe either of these makes more sense than any of the previous answers because the other options provided are:

  • Online-only (instant sql formatter)
  • Trialware / commercial software (sql pretty printer)
  • Don't format (SSMS tools pack, the accepted answer)
  • Don't handle full T-SQL properly (CPAN module, SQL-talk prettifier)
  • Incomplete, only handle some statements (SqlFormat project)
share|improve this answer
Poor man's ftw. That does everything I want currently. – jcolebrand Nov 26 '12 at 22:11

ssmstools is useful

share|improve this answer
I just installed this and its a very useful tool kit. +1 – Rob Allen Jul 7 '09 at 15:52
Thanks, its shaping up to be a great tool for me. Just a word to the wise. This program will now work unless you have SP2 installed. – Rob Jul 9 '09 at 7:40
This has to be the BEST/only sql server addon i have ever used. The fact that it has tidy and snippets is GOLD! – RPM1984 Jul 7 '11 at 0:50

Here is one option.

http://www.dpriver.com/

http://www.wangz.net/sqlpp/vsaddin.html

share|improve this answer
This is kind of what I'm looking for, but it looks like its an online app, I'd like to have something that I can hook into locally and integrate with an existing application. – Rob Jul 7 '09 at 15:54
Website is free to use, but the add-in for SSMS is $40 USD. – Rick Jul 7 '09 at 22:44
1  
I think this question is broad enough to make this answer very relevant. It helped me anyway. – Matthew B. Gray Jan 28 '11 at 3:44

I use Instant SQL Formatter occasionally, it does the job for me.

share|improve this answer
Website is free to use, but the add-in for SSMS is $40 USD. – Rick Jul 7 '09 at 22:43

You could try the free Simple Talk Prettifier:

http://www.simple-talk.com/prettifier/

It's basic but might satisfy your requirements.

share|improve this answer

an ssms 2005/2008 addin: http://code.google.com/p/sqlformat/

it lacks some features but it is very a good start

share|improve this answer

This may or may not help. I haven't tried it.

http://search.cpan.org/~jkramer/SQL-Beautify-0.04/lib/SQL/Beautify.pm

share|improve this answer

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.