Hallo,
I would like to use "*" to select all columns of a table results in a column list in the view definition.
Example:
create view test_view as
select * from dual;
Result (from user_views):
select "DUMMY" from dual
Is there a way to keep the "*" in the view definition, so that new column...