Home > Back-end >  Multi-tenant database : create .BAK file for single tenat
Multi-tenant database : create .BAK file for single tenat

Time:05-11

In my application I use multi tenant design in my SQL Server database.

My question is: what if one of my customer comes and say, I want my own data as a backup file, how can I create backup file for just that tenant?

Is there is any way to do that?

Do I need any 3rd party tool? Can I do this in a .NET console application?

CodePudding user response:

how can I create backup file for just that tenant?

There is no way to do this without running an ETL job either to extract the tenant's data, or to remove the other tenants' data from a restored copy of the database.

This is one of the (many) reasons why you should favor using a database-per-tenant architecture.

  • Related