Is there a way to backup and restore a database without the data. I just want the tables, scheme, stored procedures, etc. without the data.
- How to backup the database?
- How to restore it in SSMS?
Is there a way to backup and restore a database without the data. I just want the tables, scheme, stored procedures, etc. without the data.
If I'm not mistaken you can do this:
Script Database As
Create to
file
This gives you a script that you can run on a different server to set up the db.
You probably need to follow the steps here