Se le tabelle hanno le stesse colonne, puoi usare questo; questo non restituirà righe se le righe in entrambe le tabelle sono identiche:
(
select * from test_data_01
minus
select * from test_data_02
)
union
(
select * from test_data_02
minus
select * from test_data_01
);