I need to know how do I get the data from an Oracle database in my MySQL database, a kind of view .
I do not want to do insert
, update
nor delete
in the Oracle database, I only need%% of this data to have them in my MySQL database.
I found two paths, which I'm not sure will work:
1) I have Oracle ODBC installed on my server that has MySQL, but I do not know how to make MySQL "see" my ODBC to create a link between the databases. >
2) I found what seems to be a good way to solve the problem: link
The tutorial references the use of a Proxy server, which becomes the intermediary between MySQL database and other banks. This intermediary is who allows one database to give a SELECT on the other database.
I think the solution in item 2 really works, but I do not have any knowledge of Perl development and I do not know how to make the proxy configuration required to work.