I was wondering if there is a safe/clean and efficient way to transfer data from one MSSQL DB to another on following terms:
- both DB's have exactly the same structure.
I need to be able to choose from which tables I'll export data, and then drop the data from new new table.
So it would look like this:
- drop data from beta DB
- insert data into DB from old DB
Does MSSQL has some sort of import/export wizard or some sort of tool which could help me with this ?
