简体   繁体   中英

How do you design SQL database in Azure without diagrams?

I had to move some of my databases from SQL Server hosted in my pc to Azure. In order to import my DBs Azure demanded that I remove diagrams.

And in SQLServer explorer in VS2015 there's no possibility to create diagrams. Diagrams helped me a lot! When you have 10+ tables in DB you could create more then one diagram, which reflects some part of subject area. And all changes in diagram reflected on DB itself, so consistency was maintained (I doubt it would, if I use third party tool for design/diagrams).

So... What's the common approach to database design, if using Azure? Rely on third party tools? Keep everything in mind (impossible)?

Or, perhaps, I missed something, and diagrams are there?

Maybe This could help? https://alexandrebrisebois.wordpress.com/2013/10/26/create-database-diagrams-of-your-windows-azure-sql-databases/ It's a blog post by a friend of mine talking about just that... Hope it helps ... BTW did You install SSTD on VS? If nog that might already help too

Azure SQL Database doesn't support Database Diagrams as of yet. You have to rely on third party like dbForge Studio for generating these diagrams.

Another approach is to create a simple console application in C# and generate EDMX using Entity Framework, this would still suffice for graphical user interface.

Also you can use SQL Database Migration tool , which can get your Azure SQL Database to your local SQL Server and can generate schema diagrams.

You can now do this in the preview version of 2016 SSMS. google "SQL Server Management Studio preview" or try https://msdn.microsoft.com/en-us/library/mt238290.aspx

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM