Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Is there any SQL Server database designer software like MySQL workbench? [closed]

I need to design database for SQL Server, is there any MySQL workbench like software for that? I have access to MSDN, so it can also be commercial product that can be found form MSDN.

like image 702
newbie Avatar asked Apr 19 '10 11:04

newbie


2 Answers

SQL Server ships with SQL Server Management Studio which is probably what most SQL developers use to develop in T-SQL and do basic schema management.

There are also a myriad of third party products like the following: http://www.sql-workbench.net/

like image 50
Randy Minder Avatar answered Oct 10 '22 09:10

Randy Minder


The software that corresponds best to MySQL Workbench is Microsoft SQL Server Query Analyzer. In my opinion its a great product, superb for developing and testing SQL queries. It's stable as a rock. Alike MySQL Workbench it sports a tabbed interface. One nice feature is that if you write multiple queries in one tab you get the corresponding number of outputs, all in the same tab.

like image 24
Gruber Avatar answered Oct 10 '22 11:10

Gruber