Viewing 15 posts - 1 through 15 (of 18 total)
The databases are on different machines but for the purpose of the merge we could move them to the same one. This would also make sense in terms of performance.
Unfortunately...
January 26, 2016 at 12:23 pm
I use a similar strategy but instead of having a nested select, I do an INNER join between the two databases
insert into destinationDB.destinationTable (ID, s...)
select destinationParentTable.ID, s...
from ...
January 26, 2016 at 9:56 am
I think i prefer the insert into select option since its basically a the same as MERGE but with better performance.
There are two reasons while i would like to avoid...
January 18, 2016 at 8:22 am
I agree..that seems to be my strategy also. And I also have GUID so it sounds like its going to be very similar. Having said that, i need to worry...
January 15, 2016 at 7:53 am
I have access and relatively good knowledge of both databases. Unfortunately this is not simply a task of appending the data as the system allows users to maintain lookups, categories...
January 13, 2016 at 8:50 am
The reason for the merge is because one client acquired the other and they don't want to maintain separate systems.
I know it's a grand task because the db schema...
January 12, 2016 at 4:01 pm
Yes its true that the -1 solution would do for this thread although I am a bit hesitant to use it in case the application or reports on this database...
December 30, 2015 at 4:25 pm
Hi Phil, thanks for the -1 tip, that would work also..Do you know of any tool that would do this instead of scripting this manually? I looked into Redgate and...
December 30, 2015 at 8:23 am
Thanks Eric. It seems you did do this before 🙂 I like the ID padding tip you gave me so i can match records that way instead of another field....
December 29, 2015 at 12:12 pm
I would think different schema is more difficult. Same schema merges would be common in merging departmental databases or even company mergers that have been using the same software. Or...
December 28, 2015 at 9:58 am
The reason why I am asking for such a tool is because I m sure combining client databases of the same schema must be somewhat of a common task when...
December 26, 2015 at 7:57 pm
yeah i know its going to be quite a task...the PKs of the inserted records will get a new ID which is what makes it tricky when those new records...
December 24, 2015 at 6:55 pm
There's enough space on external so i m doing all. But why is this a temporary solution, is there a problem with leaving it on external and keep it plugged...
November 29, 2015 at 2:52 pm
Viewing 15 posts - 1 through 15 (of 18 total)