Hi,
We need to deploy some sample data along with the application. The idea is after the deployement of application, and setting up the database. there should be some sample data available to users .This data is around 30-40 rows in 4 tables.
What should be the best approach to achieve this. 1. Insert SQL scripts 2. Export data to files and then We should write a program which will import it 3. SSIS package, i dont know about it.. just read somewhere.
Another consideration is that there is foreign key constraint on the table where data needs to be transfered. So while transfering data I need to select the key from exisiting table, update my data and then insert in the target table. Please help.
Thanks.