Philocthetes
Has a great deal to learn
- Local time
- Today, 10:15
- Joined
- Dec 19, 2017
- Messages
- 28
Hi folks,
I'm trying to build what I thought would be a simple update query. The update source is a SQL Server table connected as a dbo object.
My query reads:
I've learned how to resolve (barrel through?) "This recordset is not updateable" problems, but this one is very confusing because the query that spawns the errror is an update query.
Regards,
G.W.
p.s. The field properties appear to be identical in target and source for the update.
I'm trying to build what I thought would be a simple update query. The update source is a SQL Server table connected as a dbo object.
My query reads:
Code:
UPDATE UberTable INNER JOIN dbo_DPS_ItemWide_Recent_95_Days ON UberTable.[Bib ID] = dbo_DPS_ItemWide_Recent_95_Days.BibID SET UberTable.Post_Scan_Processing_Complete = [dbo_DPS_ItemWide_Recent_95_Days].[Milestone_ImageProcessing]
WHERE (((UberTable.Post_Scan_Processing_Complete) Is Null) AND ((dbo_DPS_ItemWide_Recent_95_Days.AggregationCodes) Like "*UFETD*"));
Regards,
G.W.
p.s. The field properties appear to be identical in target and source for the update.