up vote 27 down vote favorite
14
share [g+] share [fb]

I was wondering if there are any alternatives to Microsoft's SQL Server Management Studio?

Not there's anything wrong with SSMS, but sometimes it just seem too big an application where all I want todo is browse/edit tables and run queries.

link|improve this question

1  
Is there not a command prompt utility for this like mysql has? – Kevin Aug 7 '08 at 20:20
feedback

11 Answers

up vote 20 down vote accepted

I've started using LinqPad. In addition to being more lightweight than SSMS, you can also practice writing LINQ queries- way more fun than boring old TSQL!

link|improve this answer
feedback

A new option is Versabanq Squel. I find its tabbed editing and schema view to be much more convenient than using Microsoft Sql Studio's way of doing things. And the download is tiny compared to the alternatives (about 2MB).

Full disclosure: I wrote it :) But people at work agree with me that it saves them a lot of time.

link|improve this answer
I've just given this a try, I really like it! Is it still under active development? You could do with syntax highlighting an a few other small things. – DisgruntledGoat Jun 30 '10 at 12:02
I also just tried it. It seems to be pretty dead for development though.. is there any hope of this being open sourced? I'd love to work on improving some things in it – Earlz Jul 2 '10 at 5:22
1  
Yes, we're planning to open source it. We have to get rid of the use of a proprietary library first, though. (We have an unlimited binary distribution license for the library, but not a source distribution license.) It's not completely dead - but the development is a bit slow. – apenwarr Jul 9 '10 at 22:05
Excellent! You have just now given me an excellent idea for my home mini-project in spare time. Thanks. :) – Mugen Jun 6 '11 at 14:23
feedback

TOAD for MS SQL looks pretty good. I've never used it personally but I have used Quest's other products and they're solid.

link|improve this answer
1  
Hmm, I just downloaded their trial and it throws really bizarre exceptions all over the place... has anyone else encountered this? – Dmitri Nesteruk Dec 31 '09 at 11:31
As of today the version(5.0.2.612) of TOAD for MS SQL Server it just what I was looking for. It is so much better than MS Management Studio 2008. – Arturito Jun 2 '11 at 8:44
I've used Toad and I find it as bloated as MS SQL – Jorge Vargas Jun 17 '11 at 1:29
feedback

powershell + sqlcmd :)

link|improve this answer
feedback

Seems that no one mentioned Query Express (http://www.albahari.com/queryexpress.aspx) and a fork Query ExPlus (also link at the bottom of http://www.albahari.com/queryexpress.aspx)

BTW. First URL is the home page of Joseph Albahari who is the author of LINQPad (check out this killer tool)

link|improve this answer
feedback

If you are already spending time in Visual Studio, then you can always use the Server Explorer to connect to any .Net compliant database server.

Provided you're using Professional or greater, you can create and edit tables and databases, run queries, etc.

link|improve this answer
feedback

There is an express version on SSMS that has considerably fewer features but still has the basics.

You may also look at the list of 3rd party tools here.

link|improve this answer
feedback

You can still install and use Query Analyzer from previous SQL Server versions.

link|improve this answer
Can you get it for free (legally) somewhere? Or is that only for people who already owned the old version? – apenwarr Dec 12 '08 at 23:22
If you have an old version, but an old free copy of Developer Edition would do, for instance. – le dorfier Dec 12 '08 at 23:24
It doesn't work with ms sql server 2005 – dotjoe Dec 13 '08 at 0:52
I'm using it right now. – le dorfier Dec 13 '08 at 6:11
@Le Dorifer: I was looking for software that is better than SSMS not worse!! – GateKiller Dec 16 '08 at 9:43
show 2 more comments
feedback

Oracle has a free program called SQL Developer which will work with Microsoft SQL Server as well as Oracle & MySQL. When accessing SQL Server, however, Oracle SQL Developer is only intended to enable an easy migration to Oracle, so your SQL Server database is essentially read-only.

link|improve this answer
feedback

vim + dbext :)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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