I’ve a log parsing application and I need to make a query on an another mysql server based on my findings. (ie: what is the userID for this domain)
is it possible to connect another mysql server in a trigger to pull information and update the record on “before insert” event?
Thanks
FEDERATED storage engine solved my issue. I created a table with remote connection and it keeps copy of remote table.
Thanks to inhan for showing right direction.