I'd like to make a program module that exports all records from three tables in a database into a file at once(I means not adding row by row, maybe like BULK). Here I have some questions
- Is it possible to export records of three tables into a file? Or a file per table?
- At exporting or importing, I don't want to insert row by row. I wanna do all records at once. Can we do it in programming?
- For MS SQL 2005 Express and VS 2005, which data provider should i use?
- How about Importing to SQL 2005 Express?