I would suggest an approach similar to bitbrain. From the way your original post reads, I presume that you have two table containing the same type of data, i.e. two customer tables. You are looking to search for a 'customer' (for want of an example) over the two tables. I would approach as follows:<br>
<br>
1) Create View below:<br>
CREATE VIEW MASTER AS SELECT * FROM TABLE_A UNION SELECT * FROM TABLE_B;<br>
<br>
2)tO QUERY:<br>
SELECT * FROM MASTER WHERE [COLUMN]=[VALUE];<br>
<br>
However, if these tables are identical they should be one table, with a good index(es) on it. The reason for your problems may be the design of your database. Large database design should not be approached without a good knowledge of RDA.<br>
<br>
Hope this is helpful.<br>