In my SQL Server database, I have multiple schemas. I would like to backup only a specific schema's tables to a format that can easily be restored.
Example:
- [dbo].[Trucks]
- [dbo].[Cars]
- [unknown].[Trucks]
- [unknown].[Cars]
How can I backup only the schema [unknown]
's tables and be able to restore them easily?
Also, is it possible to backup a specific schema from a .bak
file that contains the entire database?