vote up 7 vote down star
5

What's a good SQL client for Mac OS X that works with MS SQL Server? I don't really need a GUI, but it's nice to have for the color coding and resultset grid.

flag

10 Answers

vote up 9 vote down

Java-based Oracle SQL Developer has a plugin module that supports SQL Server. I use it regularly on my Mac. It's free, too.

Update: here's how to install the SQL Server plugin:

  • Run SQL Developer
  • go to this menu item: Tools/Preferences/Database/Third Party JDBC Drivers
  • Click help.
  • It will have pointers to the jar files for mysql, sqlserver, etc.
  • SQL Server jar file is available here: http://jtds.sourceforge.net
link|flag
vote up 5 vote down

I'm surprised nobody has mentioned SQuirreL SQL yet. It's written in Java and is cross-platform. Works great and supports a ton of databases, including of course MS SQL.

http://squirrel-sql.sourceforge.net

I've started using RazorSQL, which is another Java cross-platform app. It's more user-friendly than SQuirreL SQL, but it's not free/open-source.

link|flag
SQuirreL SQL and all other Java-based clients I've tried so far for connecting to ODBC DBs simply don't work on OS X. They all complain about the JDBC/ODBC driver missing. Maybe it's just my computer…? – Garrett Albright Sep 16 '08 at 15:40
Not just your computer. I can't get any of the Java ones to work either. – DannySmurf Oct 30 '08 at 20:10
vote up 3 vote down

This doesn't specifically answer your question, because I'm not sure in any clients exist in OSX, but I generally just Remote Desktop into the server and work through that. Another option is VMWare Fusion (which is much better than Parallels in my opinion) + XP + SQL Server Management Studio.

link|flag
vote up 2 vote down

I would also recommend RazorSQL

link|flag
vote up 1 vote down

Ed: phpmyadmin is for MySQL, but the asker needs something for Microsoft SQL Server (MSSQL).

Most solutions that I found involve using an ODBC Driver and then whatever client app you use. For example, Gorilla SQL claims to be able to do that, even though the project seems abandoned.

Most good solutions are either using Remote Desktop or VMWare/Parallels.

link|flag
1  
The download link for Gorilla SQL seems to be broken. VersionTracker is using the same link, so that one's broken as well. Hacking the URL seems to show the whole site is down… Know of any working download locations? – Garrett Albright Sep 16 '08 at 15:28
vote up 0 vote down

Since there currently isn't a MS SQL client for Mac OSX, I would, as Modesty has suggested, use Remote Desktop for the Mac.

link|flag
vote up 0 vote down

http://www.aquafold.com/

I use it at work on windows but it's java and supports OSX.

link|flag
vote up 0 vote down

This will be the second question in a row I've answered with this, so I think it's worth pointing out that I have no affiliation with this product, but I use it and love it and think it's the right answer to this question too: DbVisualizer.

link|flag
vote up 0 vote down

Microsoft's Remote desktop for OS X has been unsupported for years. It's not a Universal Binary, and I've found it to be somewhat buggy (I recall that the application will just quit after a failed connection instead of allowing you to alter the connection info and try again).

I'd use the Open Source CoRD if you're looking for a good RDP client for Mac.

link|flag
2  
I do realize that this answer is old, but deserves to be updated. Remote Desktop for OS X is supported, and a new version has been released within the last year. It's a Universal Binary, it's lightning fast, and has just about every feature of its Windows counterpart. – mmc May 20 at 12:06
vote up 0 vote down

I use Eclipse's Database development plugins - like all Java based SQL editors, it works cross platform with any type 4 (ie pure Java) JDBC driver. It's ok for basic stuff (the main failing is it struggles to give transaction control -- auto-commit=true is always set it seems).

Microsoft have a decent JDBC type 4 driver: http://www.microsoft.com/downloads/details.aspx?FamilyId=6D483869-816A-44CB-9787-A866235EFC7C&displaylang=en this can be used with all Java clients / programs on Win/Mac/Lin/etc.

Those people struggling with Java/JDBC on a Mac are presumably trying to use native drivers instead of JDBC ones -- I haven't used (or practically heard of) the ODBC driver bridge in almost 10 years.

link|flag

Your Answer

Get an OpenID
or

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