select table_name from user_constraints where r_constraint_name in (select constraint_name from user_constraints where upper(table_name) = 'TB_PK' and constraint_type ='P') and constraint_type ='R';

以上表示查找所有references表TB_PK的外键表。其中P表示主键,R表示外键。