Crystal Reports XI with BusinessObjects Enterprise XI
BusinessViews
MS SQL 2000 Databases
I have two database servers SERVER1 AND SERVER2.
SERVER1 stores realtime data in a table.
SERVER2 stores historical data and has a view to access the data.
Datasets are compatible (Same fields)
SAMPLE:
SERVER1 DB1
Table: Devices
Columns: DeviceID, DeviceName, DeviceStatus, DeviceLastUpdate
SERVER2 DB2
View: Devices
Columns: DeviceID, DeviceName, DeviceStatus, DeviceLastUpdate
I need to combine the result sets into one for reporting purposes. If both the table and view resided on the same server I would use a union. We created a SQL Server link to be able to use a union but this did not work because of a permissions issue that we can not resolve (It would break one app). I want to see if there is a way I can do this with a Business View.
BusinessViews
MS SQL 2000 Databases
I have two database servers SERVER1 AND SERVER2.
SERVER1 stores realtime data in a table.
SERVER2 stores historical data and has a view to access the data.
Datasets are compatible (Same fields)
SAMPLE:
SERVER1 DB1
Table: Devices
Columns: DeviceID, DeviceName, DeviceStatus, DeviceLastUpdate
SERVER2 DB2
View: Devices
Columns: DeviceID, DeviceName, DeviceStatus, DeviceLastUpdate
I need to combine the result sets into one for reporting purposes. If both the table and view resided on the same server I would use a union. We created a SQL Server link to be able to use a union but this did not work because of a permissions issue that we can not resolve (It would break one app). I want to see if there is a way I can do this with a Business View.