I'm trying to create a view that access all the tables starting with the same name, they have the exactly same structure, and in time there will be more.
Table Names:
TEMP_ENTITIES_1000
TEMP_ENTITIES_1001
TEMP_ENTITIES_1002
and in the future there will be
TEMP_ENTITIES_1003
TEMP_ENTITIES_1004
and so on...
What I need is to use list of tables from the following script and then use the result the list of object name result to access in a view.
select object_name
from user_objects
where object_type = 'TABLE'
and object_name like upper('temp_entities_%');
create view entities_join as
select * from (object_name)
Is it possible to achieve?