Note that there are some explanatory texts on larger screens.

plurals
  1. POCan I set up materialised views on oracle for a SQL Server table over sqllink?
    primarykey
    data
    text
    singulars
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. COCan you explain a bit more. You can read a SQL Server table from Oracle using a Database link. You can create a view in Oracle that does that. SQL Server isn't aware of the Oracle link, so it shouldn't prevent any triggers on the SQL Server end.
      singulars
    2. COThe main problem I am encountering is that the connection between Oracle and SQL Server does not allow it to be shared between connections. My application uses multiple connections to connect to Oracle to query from the view (hence multiple connection over the database link, hence FAIL!) So now, we are investigating if we can set up an "on update" trigger on the view (that links to the SQL Server table) to copy the records to another Oracle table. That way, we can query it to our hearts content without hitting the shared connection problem.
      singulars
    3. COPlan was dropped as my engineer discovered some problems with the approach. We were unable to create the view using fast refresh, meaning that the view will need to copy all the records over when needed, and we could not get the view to refresh on update or select, so we need to manually issue a view refresh statement.
      singulars
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload