i have a cluster structure on RDS (master/slave)...and all the temporary tables created on the master are replicated on the slave. I don't want that....
I want that statements like:
create temporary table tmp as (select * from tb);
...do not gets replicated.
I would want that NO temporary table were replicated. I realize now that i must user the option "replicate-ignore-table=name" ...
But any one knows how t do that on RDS? I think i have to user the client tool right?
Someone has an example?