Reputation: 803
SQL Management Studio's visual Query Designer is not supported for Azure SQL Database (PaaS), as mentioned in this question: Design in Query Editor disabled for Azure databases
As some of the members of our team rely extensively on visual query designers, I am looking for a tool that will provide similar functionality to SSMS's Query Designer but that will work with Azure SQL Database. Ideally this tool would be free to use, although this is not a deal breaker.
I looked into FlySpeed SQL Query (https://www.activedbsoft.com/features-querytool.html) but this appears only to work with SQL Server in Azure, not Azure SQL itself. Apart from that I'm struggling to find anything else that even appears to do what I need.
Is this something that is possible with any tool that is currently available?
Upvotes: 4
Views: 4368
Reputation: 669
We use DBSchema to visualize the database schema and to build queries using the visual query builder. DBSchema quickly reverse engineers the schema into a model. In addition DBSchema uses the foreign keys to aid you in writing queries that get data from several tables.
DBSchema stores its models in an XML file that can easily be added to a git repo. This allows tracking of the model versions.
Upvotes: 0
Reputation: 14334
You could not use the Design in Query Editor directly in a query, however you could enable it in the view.
I'm using SSMS 17, you could enable query designer for SQL Azure by right-clicking on the views
folder on your DB and selecting new view
.
Upvotes: 5