Reputation: 439
I'm not new to database design but it is just a hobby, not a profession. I've always planned my schema on paper and then dove right into the actual design in Visual Studio or SQL Management Studio. Now I am going to be designing a complex DB for my own business and wanted to make sure I don't have headaches down the road. So I researched tips and tricks on planning DB design. Over and over I see people using Diagram Tool platforms like Vertabelo, Sea Quail, and many others, (which most cost money) where there would build the DB and then export the SQL for building the final DB in the software they will be developing their application in.
My question is, looking at these platforms, it seems to be identical to Visual Studio or SQL Management Studio, where you see a diagram of the tables, can drag and drop FK (foreign keys) and actually, do anything. So what is the benefit of using these Diagram Tool platforms vs just designing the DB right in Visual Studio after planning it all out on paper?
Upvotes: 0
Views: 81
Reputation: 485
According to me, the "diagram" tools are used because -
So if you are comfortable doing your design you way in visual studio/sql server, there is no reason why you should go the diagram tool way just because a lot of others do it that way.
Upvotes: 1