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 in underlying views or tables automatically become part of the view?
For example: Can I add set a paramters or anything like that?
I need this behavior, so that individual views immediately show new columns in underlying views after these default views of a software package are changed as part of a software update.
best regards
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 in underlying views or tables automatically become part of the view?
For example: Can I add set a paramters or anything like that?
I need this behavior, so that individual views immediately show new columns in underlying views after these default views of a software package are changed as part of a software update.
best regards