Hi I have this situation:
- SQL Server 1 (production) with obj A, B, C
- SQL Server 2 (development) with objects A, B, C, D, E, F, G, H, I.
I would like to know how I can hold every objects of SQL Server 1 (A,B,C) but at the same time I want to add every new objects from SQL Server 2. In SQL Server 2 A,B,C have same schema but fake data respect the same objects in SQL Server 1 so I can't make a full backup of SQL Server 2 and restore it in SQL Server 1.
Both server are running SQL Server 2008.
I know there obviously a smart procedure to do this but my small experience in SQL Server management makes me blind!
Thanks in advance for any help!