Hi, I have 2 tables, and each table has a Product and Location field. One table is the master table containing all the Products and Locations. The second is a listing of what products in what locations are available. What I need to do is finding the Product, Location combinations that are in the master but aren't available. I was successful by using a SQL statement, however, I need the database to be a datafile and the SQL option isn't available. Here is what I had for the SQL statement to give a rough idea of what data I need to get.
SELECT
tblMissTemp.KeyName, tblMissTemp.Location
FROM
tblMissTemp
WHERE
tblMissTemp.KeyName+tblMissTemp.Location not in
(Select KeyName+Location from ReadEvents)
Any help or thoughts would be appreciated.
SELECT
tblMissTemp.KeyName, tblMissTemp.Location
FROM
tblMissTemp
WHERE
tblMissTemp.KeyName+tblMissTemp.Location not in
(Select KeyName+Location from ReadEvents)
Any help or thoughts would be appreciated.