Hi,
I have a database that collects data every 5mins, I’m looking to update a MySQL database with this data every time it’s collected in the original database.
I setup the import external data job, ran it with import into existing table and update with source details.
If I run this every 5 mins, I am expecting it to add the new record to MySQL.
However it seems to be retrieving all of the records (well up to 100,000) every time.
So I tried limiting the rows it could see by using SET MAX_ROWS 10;
However this returns no result.
When I run the same query in SQLplus it returns the correct amount.
Is there some way to just incrementally update the data or fix the max_rows issue?