-1

I have two tables in two different schemas SCHEME A (tbl1) SCHEME B (tbl2)

I created a materialized view that joins the two tables.

I would like to fast update and for that reason I have created two logs (one per table) using the rowi(ORA-12015 Cannot create a fast refresh materialized view from a complex query)

When I create the view it tells me it's not possible as the query is complex. Actually the problem is the schema. Indeed the same query works if I create the tbl2 under the schema a. How to fix?

ciro
  • 771
  • 1
  • 8
  • 30

1 Answers1

0

Instead of using the classic Joins, it is sufficient to insert all the tables in the from and the join constraints in the where of the query

ciro
  • 771
  • 1
  • 8
  • 30