Hi,
I have upgraded now to PSD v9.0.6 and still have the same issue
I want to view in the browser folder all partitioned Indexes and partitioned tables.
Filters on object_type = 'INDEX PARTITION' or object_type = 'TABLE PARTITION' seems not work too...
Is there any workarounds?
To create a folder with partitioned tables, you can use a where clause like this:
Code:
object_type = 'TABLE' and
exists (select * from all_tables t
where t.partitioned = 'YES'
and t.owner = all_objects.owner
and t.table_name = all_objects.object_name)
Yes, it works for TABLES but something like that doesn't work for INDEXES:
Code:
object_type = 'INDEX'
and exists (select * from all_indexes t
where t.PARTITIONED = 'YES'
and t.OWNER = all_objects.owner
and t.INDEX_NAME = all_objects.object_name)