I have 3 similar databases on 3 different servers and need combined reports from all the fields . I can link them to a 'merged' database but queries are impossible due ot the lack of lien.
How can I merge these databases into one?
P.S. I have tried
INSERT INTO [merged].[*]
select [one].[*],[two].[*], [three].[*]
FROM [one],[two],[three]
without success...
Please any help will be appreciated
How can I merge these databases into one?
P.S. I have tried
INSERT INTO [merged].[*]
select [one].[*],[two].[*], [three].[*]
FROM [one],[two],[three]
without success...
Please any help will be appreciated