Hello all,
Would you expect a view that uses UNION ALL to be updatable?
The basics of the view are;
SELECT whatever FROM whatever1
UNION
SELECT whatever FROM whatever2
UNION
.
.
.
When I try to update whaterver2 through the view I get a message,
"The view is no updatable because it contains derived or constant information."
JM