I have two tables that are connected in a query. They both have a primary key as "ProjectID" and have a referential integrity with each other (Update). The first table (tblmaster) has all of the ProjectIDs (1000) where as the second table (tbltwo) only has about 5 records.
I combined them in a query with the relationship that all of tblmaster records will be shown and only tbltwo records that match will be shown. Now I'm trying to do an update query with a linked table I have ( which is an updated version of the query) and it is telling me I have 995 key violations and it won't let me Update. I believe this is because thre are no record of the 995 ProjectIDs in tbltwo so it can't update.
Is this true and is there a way around it or do I need to do two seperate Update Queries.
Thanks for your help.
I combined them in a query with the relationship that all of tblmaster records will be shown and only tbltwo records that match will be shown. Now I'm trying to do an update query with a linked table I have ( which is an updated version of the query) and it is telling me I have 995 key violations and it won't let me Update. I believe this is because thre are no record of the 995 ProjectIDs in tbltwo so it can't update.
Is this true and is there a way around it or do I need to do two seperate Update Queries.
Thanks for your help.