Hello

I have an Access database and I want the user to be able to save only a part of the DB on floppy disk (because the whole db is too large), but I don't know how.


For example I was thinking of saving the db string (rsCommand1.GetString) to a txt file, and then retrieving the data from file to the databse, and I knew how to save the txt file, but didn't know how to get the string back to the database.

I also tried:
DataEnvironment1.rsCommand1.Save "D:\Javad.XML"

but didn't know how to load that file again and reset the data in its related table using this file.

What should I do for saving and loading a part of my Access database?

Thank you