0

Is is possible to Create Fast refresh enabled Materialized view from MySQL to Oracle . i know steps for oracle to oracle Fast refresh enabled Materialized view. But now the scenario is need to transfer number of records from MySQL to oracle via db-link with use of materialized view. But every time i need to make Complete Refresh which is time consuming. so is it possible to create fast refresh materialized view for MySQL to Oracle ?

asked Dec 3, 2018 at 11:03
1
  • This discusses the 'best' ways to do Materialized Views in MySQL. But, as you already know, the work must be done by the user. I don't think any of them correspond to a Fast Refresh MV. But they might be "good enough"? Commented Dec 6, 2018 at 5:56

1 Answer 1

1

A fast refresh requires (among many other things) materialized view logs on source tables.

Refresh types

You can perform fast refreshes of materialized views only when the master table or master materialized view has a materialized view log.

enter image description here

That functionality is specific to and implemented in Oracle, and not available in MySQL. It is not like no other database can provide the logically similar functionality, but this is the Oracle implementation, that works with Oracle databases.

answered Dec 4, 2018 at 18:04
1
  • ok any alternatives for this which can reduce time consuming ? Commented Dec 6, 2018 at 5:27

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.