How to generate database schema for an exiting database in MSSQL?

2.8k Views Asked by At

Please help me letting know how to create a database schema for an existing database in mssql, could this be done through Microsoft SQL Server Management Studio Express?

My Boss has asked me generate a database schema for a database of an existing application.

1

There are 1 best solutions below

2
On

Yes, this can absolutely be done.

In Management Studio, expand the database. You'll see a folder option called "Database Diagrams":

enter image description here

Expand that, and in case there's nothing present yet, you'll be presented with a dialogue asking whether you want to create a new diagram:

enter image description here

Should that not work for some reason, you can right-click the same Database Diagrams folder, and select "New Database Diagram"" from there.

You'll now be asked to add the tables you want to include in the schema. Add whichever tables necessary, and in case of relations defined in the table-schema, those will be added to the schema.

If you do not have the relationships in place, you can create them by dragging and dropping related columns manually from one table to the other.