I currently have 8 identical SQL 2000 databases, one for each regional office. I need to build some reports where I can pull data from all 8 regions so I'm considering creating SQL Views with Union operators for 4 or 5 specific tables.
Is this a decent solution?
Will these views impact the performance of the individual regional database tables?
Any other concerns I should be aware of?
For example a SQL View would look like this:
Two tables I want to create views for have the following record count:
Is this a decent solution?
Will these views impact the performance of the individual regional database tables?
Any other concerns I should be aware of?
For example a SQL View would look like this:
Code:
SELECT 'EM1' AS Region, Part, Cost FROM EM1.dbo.PartMstr
UNION
SELECT 'EM2', Part, Cost FROM EM2.dbo.PartMstr
UNION
SELECT 'EM3', Part, Cost FROM EM3.dbo.PartMstr
UNION
SELECT 'EM4', Part, Cost FROM EM4.dbo.PartMstr
UNION
SELECT 'EM5', Part, Cost FROM EM5.dbo.PartMstr
UNION
SELECT 'EM6', Part, Cost FROM EM6.dbo.PartMstr
UNION
SELECT 'EM7', Part, Cost FROM EM7.dbo.PartMstr
UNION
SELECT 'EM8', Part, Cost FROM EM8.dbo.PartMstr
Two tables I want to create views for have the following record count:
Code:
[b]Inventory Transactions:[/b]
Reg Records
--- -------
EM1 – 450,000
EM2 – 125,000
EM3 – 450,000
EM4 – 50,000
EM5 – 32,000
EM6 – 20,000
EM7 – 60,000
EM8 – 30,000
[b]Part Master:[/b]
Reg Records
--- -------
EM1 – 1,500
EM2 – 1,800
EM3 – 3,000
EM4 – 1,050
EM5 – 1,400
EM6 – 1,000
EM7 – 1,000
EM8 – 1,000