M
Mark
I get an Operation must use updateable query when I run
the following query when I run the following UPDATE
query. I've checked the the select statement only
returns 1 APPL_CODE per client, so that's not the problem
UPDATE DISTINCTROW dbo_tMatched_Loans_and_Submissions AS
MLS INNER JOIN [SELECT TL.ClientID, TL.APPL_CODE as Source
FROM dbo_tClient_Tools AS TL
WHERE TL.APPL_CODE IN ('PBAD','CDSE') AND
TL.ClientID<>'49236' GROUP BY TL.ClientID, TL.APPL_CODE].
AS CT ON MLS.Eval_Client_ID = CT.ClientID SET MLS.Source
= [CT].[Source]
WHERE (((MLS.Source)='DECSW'));
Any help would be appreciated.
Thanks
Mark
the following query when I run the following UPDATE
query. I've checked the the select statement only
returns 1 APPL_CODE per client, so that's not the problem
UPDATE DISTINCTROW dbo_tMatched_Loans_and_Submissions AS
MLS INNER JOIN [SELECT TL.ClientID, TL.APPL_CODE as Source
FROM dbo_tClient_Tools AS TL
WHERE TL.APPL_CODE IN ('PBAD','CDSE') AND
TL.ClientID<>'49236' GROUP BY TL.ClientID, TL.APPL_CODE].
AS CT ON MLS.Eval_Client_ID = CT.ClientID SET MLS.Source
= [CT].[Source]
WHERE (((MLS.Source)='DECSW'));
Any help would be appreciated.
Thanks
Mark