Hi
In a webapp I am building, I have a requirement in which I need to backup and restore around 10-15 tables from a SQL Server database.
My solution..
-Backup: For each table, Fill a dataset , serialize that to a file
-Restore: Deserialize the file into a dataset and use SQLBulkCopy
Is this the best was to achieve my goal?