T
TC
Make sure your query uses JOIN clauses, not just commas, to join the tables.
For example, this could be updatable:
SELECT ..
FROM T1 INNER JOIN T2
WHERE ...
but this definitely *will not* be updatable:
SELECT ...
FROM T1, T2
WHERE ...
There is more information on updatable queries in online help.
HTH,
TC
For example, this could be updatable:
SELECT ..
FROM T1 INNER JOIN T2
WHERE ...
but this definitely *will not* be updatable:
SELECT ...
FROM T1, T2
WHERE ...
There is more information on updatable queries in online help.
HTH,
TC