tags:

views:

320

answers:

1

For complicated reasons (aren't they always) I need to query an Oracle table from a Sybase view. Any thoughts of how I can do this?

example oracle con details: database: [email protected] schema: dta pwd: 123

+1  A: 

If you need to get the data live you'll need a gateway.Oracle Database Gateways

If there can be a delay, you might be better off doing a periodic data export and then using an external table.Oracle External Tables

Adam Hawkes