Looking to get a SQL database backup with a specific filter, like for a limited table, limited content and exclude some table(only content not schema)
Suppose I have a student database with only one table as details and having two column name and class, so here I want to database backup of only those student who has a name starts with S, like
select * from details where name like 'S%' , now get a database backup of this.
I have just taken a small example, actually, I have a database with thousands of table and million of records, the main problem what I am facing is I have a main database with 200 GB space and require only a limited data in other instance so I need to backup and restore the same. So I want only that backup which I require not the entire one.
Your help is really apricated and please do revert if I am not descriptive.