Our team is assigned a project on database. We are all set to start. But we will be working at our homes.
Each member is given tables to create, insert MBs of data, and write one table-orientes triggers and stored pros.
But ultimately we will have to merge then in a single database file and each member will be having his .mdf file of his tables.
How to we merge these tables???
We need to combine all the data into a single database file only….
Please bear with me if this question is a cake! I’m just a newbie 🙂
Moving objects from one database to another is easily achieved by scripting the objects.
http://msdn.microsoft.com/en-us/library/ms178078.aspx
Once the individual work is done, script out the tables, stored procedures, triggers, views, etc, and create them in your target database (this can be on a different server).
Then you can use the Import and Export Wizard to move your data.
http://msdn.microsoft.com/en-us/library/ms140052.aspx