J
Jeff Kowalczyk
I'm having trouble using Access 2002 to update a table with records
from a summary query/select. Access complains about "Operation must use
updateable query". I've executed this type of query against the back-end
database's SQL console, and it works fine.
UPDATE orders
SET orderchargeasbilled =
(SELECT SUM(orderchargeasbilled)
FROM ordercharges
WHERE orders.orderid = ordercharges.orderid)
WHERE orderdate > #12/1/2003#
What can I do to suppress the "Operation must use updateable query"
error without resorting to a pass-through query? (I'm finding
it difficult to persist the connection info for pass-throughs)
Thanks.
This particular setup uses linked tables (postgres, but I
believe it would be the same were it sql server)
from a summary query/select. Access complains about "Operation must use
updateable query". I've executed this type of query against the back-end
database's SQL console, and it works fine.
UPDATE orders
SET orderchargeasbilled =
(SELECT SUM(orderchargeasbilled)
FROM ordercharges
WHERE orders.orderid = ordercharges.orderid)
WHERE orderdate > #12/1/2003#
What can I do to suppress the "Operation must use updateable query"
error without resorting to a pass-through query? (I'm finding
it difficult to persist the connection info for pass-throughs)
Thanks.
This particular setup uses linked tables (postgres, but I
believe it would be the same were it sql server)