views:

63

answers:

1

Hi,

I have a table in a SQL Server database that needs to be visible to an oracle database. We have tried using a normal view over sqllink, but we are not able to create an onUpdate triggers on that view.

I have read that we can create the trigger if it is a materialised view, but is unable to find any information on whether it can be done across different databases. (all the example are for oracle to oracle tables)

Can someone tell me if it is possible? and what issues I might need to look out for if I used materialised views?

Thanks

A: 

I do something similar and ended up using Oracle's HS gateway to handle it. Created an MV based of tables or queries to establish a staging area in Oracle. Followed up with logic to meet requests.

iggy
Just out of curiosity, how did you get the materialized view to work over the separate databases?
iWantSimpleLife