484

How can I connect to a remote SQL server using Mac OS X? I don't really need a GUI, but it would be nice to have for the color coding and resultset grid. I'd rather not have to use a VM.

Is there a SQL client for Mac OS X that works with MS SQL Server?

Owen
  • 1,652
  • 2
  • 20
  • 24
Patrick McElhaney
  • 57,901
  • 40
  • 134
  • 167
  • 2
    I found that [Navicat](http://www.navicat.com) supports SQL Server now. There's a Windows and Mac version. –  Dec 13 '10 at 10:13
  • 4
    Give [SQL Client](http://www.macsqlclient.com/) a try. There is a free trial and it was built to allow access to MSSQL databases (including Azure) from a mac without the need of a virtual machine. – Kyle Sep 19 '14 at 15:31
  • http://www.razorsql.com/download.html – Rodrigo Dias Sep 24 '14 at 17:16
  • 3
    Recently I have been using [0xDBE](https://www.jetbrains.com/dbe/) its free from JetBrains in Early access – lee penkman Apr 01 '15 at 22:41
  • If you happen to use JetBrains products (IntelliJ, WebStorm, PHPStorm) they have a nice DB tool built in. I managed to connect to Azure SQL / MSSQL Server with it with two clicks. Their upcoming product 0xDBE looks promising, too. – Paweł Rychlik Sep 28 '15 at 22:32
  • 1
    Use http://www.macsqlclient.com on OSX – Joe Mellin Oct 12 '15 at 21:29
  • 2
    I recommend this be migrated to [Software Recommendations](https://SoftwareRecs.StackExchange.com). – Ky - Apr 21 '16 at 18:25
  • 1
    Old post so an update: [VSCode](https://code.visualstudio.com/) + [mssql extension for Visual Studio Code](https://learn.microsoft.com/en-us/sql/linux/sql-server-linux-develop-use-vscode) is a quick, no fuss option. HTH. – EdSF Jul 18 '17 at 17:00
  • 7
    There's the new SQL Operations Studio (https://learn.microsoft.com/en-us/sql/sql-operations-studio/what-is) by Microsoft. Free and so far better than anything else I've tried – scc Nov 25 '17 at 12:14
  • Best solution is [Jetbrains DataGrip](https://www.jetbrains.com/datagrip/) and support many feature of sql server and with most professional intellisense – Sina Lotfi Feb 03 '18 at 10:09
  • 1
    I recommend Data Studio Azure https://learn.microsoft.com/es-es/sql/azure-data-studio/download?view=sql-server-2017 (Thanks to Sofia) – Richard Rebeco Jan 22 '19 at 19:48

25 Answers25

367

Let's work together on a canonical answer.

Native Apps

Java-Based

Electron-Based

(TODO: Add others mentioned below)

0xced
  • 25,219
  • 10
  • 103
  • 255
ebryn
  • 4,407
  • 1
  • 23
  • 21
  • 6
    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
  • 3
    Not just your computer. I can't get any of the Java ones to work either. – TheSmurf Oct 30 '08 at 20:10
  • I can install but I can't get it to connect either. – Bryan Nov 16 '10 at 20:59
  • 1
    +1 for SQuirreL. With Oracle SQL Developer I can connect to DB and get names of all tables, but can't connect to any of them. SQuirreL works great for me. (I have downloaded the jtds driver from http://jtds.sourceforge.net and my connection string is like 'jdbc:jtds:sqlserver://sqlServer.myDomain.com:1433;DatabaseName=MY_DATABASE;domain=windowsDomainName') – Jan Jan 19 '11 at 14:57
  • 7
    @Garrett: MS also offers an [MSSQL JDBC driver](http://msdn.microsoft.com/en-us/sqlserver/aa937724). Install sqljdbc4.jar (sqljdbc.jar for [JRE 5.0](http://msdn.microsoft.com/en-us/library/ms378422.aspx)) somewhere you keep Java packages (such as ~/Library/Java or /Library/Java/Extensions). Whichever driver you pick, make sure you add it to the "Extra Class Path" list for the [MSSQL driver](http://squirrel-sql.sourceforge.net/user-manual/quick_start.html#the_driver), then pick the class name for the driver at the bottom of the same dialog. – outis Feb 05 '11 at 13:45
  • 5
    Squirrel is great except for the inevitable messing around trying to find the right JDBC driver, putting it in the right place, telling Squirrel about it, then trying to set up a JDBC connection with. If you're using it regularly, it's fine. If you use Squirrel infrequently, and usually on a new machine, it's a hassle. – Steve Bennett Oct 06 '11 at 03:49
  • I use Squirrel regularly as my organization works on an older database and we are moving to open source platform. RazorSQL looks amazing and is a breadth of fresh air compared to Squirrel.. too bad it's not free. – Munim Mar 12 '13 at 06:48
  • Do NOT install Squirrel with Homebrew Cask. It's not what you're looking for...You've been warned. – blockloop Sep 17 '14 at 13:25
  • 1
    I use Squirrel and it works, but today I realize that it uses a lot of CPU. Take a look: http://grab.by/CFVQ It's been 6 hours since I started the process and right now i'm not using it, but it's using a lot of CPU time :/ I'm looking for an alternative now. – cgajardo Dec 01 '14 at 19:25
  • For what its worth, I use RazorSQL daily on my Mac for enterprise web application development, and it works great. I'm sure the others work well too, but I can only vouch for RazorSQL. – molaro Dec 10 '15 at 20:02
  • 1
    Of the native clients, Valentina Studio is the only one that I could see had a free tier. I've just installed and basic SQL Server query access seems pretty good. – Damien Sawyer Apr 21 '16 at 02:02
  • 3
    I ended up using DBeaver, which can work very well with almost every type of databases, including MySQL, SQL Server, Oracle, PostgreSQL, SAP Hana, Redis... just to name a few. The DB connector driver can be added in a very easy to understand way. I've also tried Oracle SQL Developer, DB Visualizer but they do not work well with Azure Cloud's SQL Database. – Nguyen Phan Tan Jan 15 '17 at 16:17
  • 2
    Totally forgot that I already have SQLPro Studio as part of Setapp, thanks for the reminder! I've only used it for Oracle db's before, it's a great tool. https://setapp.com/apps/sqlpro-studio – SilverSideDown Nov 10 '17 at 15:57
  • Electron Based: [SQLectron](https://github.com/sqlectron/sqlectron-gui) (free, open source) supports SQL Server. A bit lighter weight than a lot of the Java guys, but newer and buggier. Still, I like it. – Patrick Mar 02 '18 at 15:44
  • SQLPro is Java not native – Robert Jan 14 '19 at 11:56
  • @Robert you are incorrect. SQLPro is not Java. Its written in Objective-C and uses zero Java. – Kyle Apr 29 '19 at 15:59
  • Sequal Ace (https://sequel-ace.com/) is a fork of Sequel Pro (https://sequelpro.com/) – Gareth Aug 23 '22 at 10:02
  • [DbSchema](https://dbschema.com) is a database management GUI, with diagrams, schema design in team, schema documentation, data generator and many other features. – DbSchema Jun 29 '23 at 17:46
181

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

Here's how to install the SQL Server plugin:

  • Run SQL Developer
  • go to this menu item: Oracle SQL Developer/Preferences/Database/Third-party JDBC Drivers
  • Click help.
  • It will have pointers to the JAR files for MySQL, SQL Server, etc.
  • The SQL Server JAR file is available at http://sourceforge.net/projects/jtds/files/
Dan Beaulieu
  • 19,406
  • 19
  • 101
  • 135
Mark Harrison
  • 297,451
  • 125
  • 333
  • 465
  • 11
    Just a wee addendum - the menu is slightly different for the latest version. You can't click help anymore. Basically, download the server jar file, put it somewhere memorable and then point at it from Tools/Preferences/Database/Third Party JDBC Drivers. Casp – Caspar Harmer Mar 18 '10 at 01:39
  • 1
    Note, it doesn't support Transact-SQL scripts. SQuirreL does, though. – Brian Harris Jun 17 '10 at 20:10
  • I can't seem to add a new table to my db. Is this functionality disabled in the newest version. I used to be able to. – Bryan Nov 16 '10 at 20:58
  • I'd also like to add to make sure that the .jar file is in a directory that your user account has the proper rights to. I tried to add the jar inside the sql developer package and it wouldn't work. I moved it to my Users folder under a lib directory and it worked like a charm. – bittersweetryan Jan 06 '12 at 20:14
  • cannot connect to MSSQL Express 2008. The following error prompted: An error was encountered performing the requested operation: Could not find a Java charset equivalent to collation 040CD01000. Vendor code 0 – Raptor Sep 10 '12 at 03:30
  • 3
    I had a problem even getting the new server connection dialog to open. Seems to be a software bug. – YWCA Hello Nov 08 '12 at 17:24
  • 13
    I just wasted time trying the current JAR file version (**jtds-1.3.0-dist.zip**) and it does not work with Oracle SQL Developer. Finally I tried v1.2 (**jtds-1.2.7-dist.zip**) and that works. – IcarusNM Feb 15 '13 at 18:09
  • 5
    On MacOS 10.75, SQL Dev. 3.2.2.20.09 I cannot use jets-1.3.0 ("new connection" dialog does not appear), I had to use jtds-1.2.8.jar instead. – Lars Blumberg Jul 01 '13 at 13:56
  • jtds-1.2.8.jar can be found here http://sourceforge.net/projects/jtds/files/jtds/1.2.8/ – guido Jul 09 '13 at 15:59
  • I am getting this error: `SQLDeveloper.app can't be opened because it is from an unidentified developer` – Adil Malik Nov 05 '13 at 17:39
  • 1
    @AdilMalik it sounds like you just upgraded to Mavericks - you need to turn "All Source" back on in your System Preferences/Privacy & Security. Apple turns that to its safer setting on default. Just re-enable and you're good to go again. – Dannid Nov 19 '13 at 00:12
  • 7
    There's a new current version (**jtds-1.3.1.jar.zip**) which does work with Oracle SQL developer. Just unzip it and in your settings Tools/Preferences/Database/Third Party JDBC Drivers point to the unzipped .jar file/folder. – Dannid Nov 19 '13 at 00:38
  • 1
    Note that Oracle SQL Developer is not "free". You are required to register an Oracle account in order to optain it. – Basti Nov 28 '13 at 09:27
  • 2
    @Basti, it's a free account. – Mark Harrison Nov 29 '13 at 04:37
  • 1
    @Mark Harrison, the account is not free. You have to provide a large variaty of personal information like your real name, email and post address, occupation, etc. – Basti Aug 08 '14 at 08:57
  • I tried installing Oracle SQL Developer using Chrome, Safari, and firefox. All cases oracle says I need to have cookies and js enable to work, and wouldn't let me download. No go for me. – Priyeshj Sep 12 '14 at 18:15
  • 1
    One more thing to note is to unzip the **jtds-1.2.7-dist.zip** and add the **jtds-1.2.7.jar** file to the third party entry list – Tolga E Dec 31 '14 at 16:59
  • 2
    @Basti You're free to lie on the registration form, or use bugmenot.com – Dustin Rasener Feb 25 '15 at 20:03
  • @Dustin Rasener I'm pretty sure that providing false account information is a breach of the license you have to accept in order to download the software. I agree that this is an option because Oracle will probably not do anything about it, but it's still illegal. – Basti Jun 08 '15 at 11:22
  • Just to clarify and correct, it is not illegal, it is breach of contract. i.e. They could theoretically sue you in civil court (if they can find you) but there are no criminal penalties. (unless you also violate some actual law, like copyright) No company can summarily implement their own laws. – Justin Ohms May 04 '16 at 17:21
  • Oracle SQL Developer is brilliant, and was the most attractive/full featured of the free ones I researched. However I couldn't use it in the end as it doesn't allow for some MSSQL specific keywords such as BEGIN, END, GO, etc. It also can’t handle multiple resultsets returned from a stored procedure etc. It really depends on your environment and what existing sql scripts you're working with. But if your scripts/environment contain the above mentioned, it won't work for you. – Manachi May 11 '16 at 06:08
  • apparently SQLDeveloper only supports up to MS SQL Server 12. see here: http://stackoverflow.com/questions/27931891/sql-developer-connector-to-sql-server-2012-error-vendor-code-207/31589617#31589617. I'm using Microsoft SQL Server 12.00.2000 (which is oddly version 14. see: http://sqlserverbuilds.blogspot.ca/) and it doesn't work with SQLDeveloper at the moment – sdoxsee Oct 15 '16 at 00:20
  • Azure Data Studio looks fine as standalone app. – podolinek Jan 12 '21 at 09:09
36

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.

Roy Truelove
  • 22,016
  • 18
  • 111
  • 153
John
  • 14,944
  • 12
  • 57
  • 57
  • Just installed this. It's waaaay better than the Sql Server Management Studio which tends to switch databases on me at random. – Tres Jul 01 '10 at 01:52
  • Agreed, DbVisualizer was the winner for me on OSX, though the free version has some limitations (no table dumps for example) – Euan Oct 07 '10 at 12:23
  • 1
    I love DbVisualizer too, I just miss that the Free edition doesn't allow "selection executes" and the Personal edition is too expensive for me (because of exchange rates). – Daniel Serodio Nov 09 '11 at 13:56
  • Not allowed to browse binary/BLOB or CLOB in DbVisualizer Free. For example: TEXT fields. :( – Can Aksoy Dec 06 '12 at 02:35
  • I'm unable to execute MERGE statements in DbVisualizer that co-workers can execute on other SQL clients... – John Mark Mar 14 '13 at 19:15
  • 2
    The MS SQL JDBC drivers are **always** painful to work with. 1. Download `sqljdbc4.jar` from [Microsoft](https://www.google.com/#q=mssql+jdbc4​). 2. Add a new new **Driver** inside SQuirreL, where you will need to cherry pick the downloaded JAR from your file system under the **Extra Classpath** section. You will also need to specify the driver class which is `com.microsoft.sqlserver.jdbc.SQLServerDriver`. 3. ... 4. Profit. – smeeb Jul 15 '15 at 18:46
9

When this question was asked there were very few tools out there were worth much. I also ended up using Fusion and a Windows client. I have tried just about everything for MAC and Linux and never found anything worthwhile. That included dbvisualizer, squirrel (particularly bad, even though the windows haters in my office swear by it), the oracle SQL developer and a bunch of others. Nothing compared to DBArtizan on Windows as far as I was concerned and I was prepared to use it with Fusion or VirtualBox. I don't use the MS product because it is only limited to MS SQL.

Bottom line is nothing free is worthwhile, nor were most commercial non windows products

However, now (March 2010) I believe there are two serious contenders and worthwhile versions for the MAC and Linux which have a low cost associated with them. The first one is Aqua Data Studio which costs about $450 per user, which is a barely acceptable, but cheap compared to DBArtizan and others with similar functionality (but MS only). The other is RazorSQL which only costs $69 per user. Aqua data studio is good, but a resource hog and basically pretty sluggish and has non essential features such as the ER diagram tool, which is pretty bad at that. The Razor is lightning fast and is only a 16meg download and has everything an SQL developer needs including a TSQL editor.

So the big winner is RazorSQL and for $69, well worth it and feature ridden. Believe me, after several years of waiting to find a cheap non windows substitute for DBartizan, I have finally found one and I have been very picky.

Vijit Coomara
  • 31
  • 1
  • 1
  • 14
    nothing free is worthwhile? So Python, Ruby, Java, friendship, love and sunny afternoons are worthless? – Dónal Jun 22 '11 at 14:31
  • 11
    Python, Ruby, and Java are definitely worthless. Love is not free - but is the best thing in the world. Sunny afternoons don't last. – Sam Axe Sep 11 '13 at 20:30
7

My employer produces a simple, proof-of-concept HTML5-based SQL client which can be used against any ODBC data source on the web-browser host machine, through the HTML5 WebDB-to-ODBC Bridge we also produce. These components are free, for Mac, Windows, and more.

Applicable to many of the other answers here -- the Type 1 JDBC-to-ODBC Bridge that most are referring to is the one Sun built in to and bundled with the JVM. JVM/JRE/JDK documentation has always advised against using this built-in except in experimental scenarios, or when no other option exists, because this component was built as a proof-of-concept, and was never intended for production use.

My employer makes an enterprise-grade JDBC-to-ODBC Bridge, available as either a Single-Tier (installs entirely on the client application host) or a Multi-Tier (splits components over the client application host and the ODBC data source host, enabling JDBC client applications in any JVM to use ODBC data sources on Mac, Windows, Linux, etc.). This solution isn't free.

All of the above can be used with the ODBC Drivers for Sybase & Microsoft SQL Server (or other databases) we also produce ...

TallTed
  • 9,069
  • 2
  • 22
  • 37
6

I vote for RazorSQL also. It's very powerful in many respects and practically supports most databases out there. I mostly use it for SQL Server, MySQL and PostgreSQL.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
uniacid
  • 21
  • 1
  • 5
6

I thought Sequel Pro for MySQL looked pretty interesting. It's hard to find one tool that works with all those databases (especially SQL Server 2005 . . . most people use SQL Server Management Studio and that's Windows only of course).

tooshel
  • 1,556
  • 3
  • 19
  • 26
6

DbVisualizer supports many different databases. There is a free edition that I have used previously. Download from here

Konstantin
  • 3,626
  • 2
  • 33
  • 45
  • I probably should have been a little bit more detailed. I have been using DbVisualizer but it seems to chew up a lot of memory on Mac os x. It doesn't do to bad on windows and I don't seem to have a problem with it there. –  May 03 '09 at 00:36
6

Squirrel SQL is a Java based SQL client, that I've had good experience with on Windows and Linux. Since it's Java, it should do the trick.

It's open source. You can run multiple sessions with multiple databases concurrently.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
eodonohoe
  • 264
  • 2
  • 6
  • I've used it extensively, and find it very mature. It also has lots of nice extras (script generation, SQL formatting and highlighting, metadata displays, cross-DB table copying). It even has plugins to give access to DB-specific functionality, if you need it. And it's free software. – sleske May 03 '09 at 16:09
  • 1
    can't connect to MSSQL Express 2008 in Mac OS X 10.7 – Raptor Sep 10 '12 at 03:37
5

I have had good success over the last two years or so using Navicat for MySQL. The UI could use a little updating, but all of the tools and options they provide make the cost justifiable for me.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Jason
  • 15,017
  • 23
  • 85
  • 116
  • Navicat has always worked well for me. It's a little pricey but it works well. – A Dent Oct 21 '10 at 16:39
  • It works really well, but is very laggy on my machine (Running the latest MBP as of Oct 2012). Although not a dealbreaker, it's a very annoying feeling to watch every character you type trail behind you by half a second. – Tejaswi Yerukalapudi Oct 03 '12 at 14:48
3

I like SQLGrinder.

It's built using Cocoa, so it looks a lot better and feels more like an Mac OS X application than all the Java-based application mentioned here.

It uses JDBC drivers to connect to Microsoft SQL Server 2005, FrontBase, MySQL, OpenBase, Oracle, PostgreSQL, and Sybase.

Free trial or $59.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
philfreo
  • 41,941
  • 26
  • 128
  • 141
3

I use AquaFold at work on Windows, but it's based on Java and supports Mac OS X.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
jason saldo
  • 9,804
  • 5
  • 34
  • 41
3

I've used (DB Solo) and I like it a lot. It's only $99 and comparable to many more expensive tools. It supports Oracle, SQL Server, Sybase, MySQL, PostgreSQL and others.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Mark
  • 1
  • 1
3

I've been using Oracle SQL Developer since the Microsoft software for SQL Server is not currently available on Mac OS X. It works wonders. I would also recommend RazorSQL or SQLGrinder.

3

I use the Navicat clients for MySQL and PostgreSQL and am happy with them. "good" is obviously subjective... how do you judge your DB clients?

Devin Ceartas
  • 4,743
  • 1
  • 20
  • 33
  • Navicat is fairly good, except is has some quirks like getting listings of every table and field in every database on the server...basically killing MySQL while it's doing that. I don't Navicat myself, but one of the guys I work with does and something he does causes this. – Darryl Hein May 02 '09 at 20:16
  • 3
    read the question please! MySQL != MS SQL – corydoras Sep 26 '10 at 23:37
  • 1
    Navicat supports SQL Server. – vaughan Oct 16 '13 at 14:09
2

When this question was asked, Microsoft's Remote Desktop for OS X had been unsupported for years. It wasn't a Universal Binary, and I 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).

At the time I recommended the Open Source CoRD, a good RDP client for Mac.

Since then Microsoft Remote Desktop Client for Mac 2 was released.

Patrick McElhaney
  • 57,901
  • 40
  • 134
  • 167
  • 5
    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 '09 at 12:06
  • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. – Warren Burton Aug 08 '14 at 20:49
  • @WarrenBurton actually, this answer *doesn't* answer the question, which was about an OSX SQL Server client, not RDP. – Ben Collins Sep 07 '14 at 20:30
2

Not sure about open-source, but I've heard good things about http://www.advenio.com/sqlgrinder/ (not tried it, I prefer to write Python scripts to try things out rather than use GUIs;-).

Alex Martelli
  • 854,459
  • 170
  • 1,222
  • 1,395
1

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.

user136776
  • 606
  • 5
  • 5
1

This doesn't specifically answer your question, because I'm not sure in any clients exist in Mac OS X, 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) + Windows XP + SQL Server Management Studio.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Shawn
  • 19,465
  • 20
  • 98
  • 152
  • 1
    There clearly are mac clients seeing as how there is a plethora of other answers listing them. – spuder Apr 30 '15 at 15:43
1

It may not be the best solution if you don't already have it, but FileMaker 11 with the Actual SQL Server ODBC driver (http://www.actualtech.com/product_sqlserver.php) worked nicely for a client of mine today. The ODBC driver is only $29, but FileMaker is $299, which is why you might only consider it if you already have it.

Chuck
  • 4,662
  • 2
  • 33
  • 55
1

I've used Eclipse with the Quantum-DB plugins for that purpose since I was already using Eclipse anyway.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
sal
  • 23,373
  • 15
  • 66
  • 85
-4

Ed: phpMyAdmin is for MySQL, but the asker needs something for Microsoft SQL Server.

Most solutions that I found involve using an ODBC Driver and then whatever client application 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.

Peter Mortensen
  • 30,738
  • 21
  • 105
  • 131
Michael Stum
  • 177,530
  • 117
  • 400
  • 535
  • 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
-6

Try CoRD and modify what you want directly from the server.

It's open source.

http://cord.sourceforge.net/

Dx_
  • 1,566
  • 1
  • 16
  • 17
-10

For MySQL, there is Querious and Sequel Pro. The former costs US$25, and the latter is free. You can find a comparison of them here, and a list of some other Mac OS X MySQL clients here.

Steve

Steve Harrison
  • 121,227
  • 16
  • 87
  • 72
-11

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

Community
  • 1
  • 1
GateKiller
  • 74,180
  • 73
  • 171
  • 204
  • 2
    While Remote Desktop is a workaround, there do exist applications which can connect to MSSQL (as you can tell from the other responses). – Patrick Farrell Feb 24 '15 at 21:23