G gczobel Member Mar 19, 2006 #1 Hi! Two questions: Is possible to list the add a partition branch in the Browser Folders window? How I can identify the partitioned tables in the Table folder? Thanks! PL/sql dev 7.0.1.1066
Hi! Two questions: Is possible to list the add a partition branch in the Browser Folders window? How I can identify the partitioned tables in the Table folder? Thanks! PL/sql dev 7.0.1.1066
Marco Kalter Administrator Staff member Mar 20, 2006 #1 No, this is not possible. You can however create a query based browser folder that includes only the partitioned tables.
No, this is not possible. You can however create a query based browser folder that includes only the partitioned tables.
G gczobel Member Mar 21, 2006 #1 But, to make a query I need to known the table names right? Or I can make a query to list ALL the partitioned tables?
But, to make a query I need to known the table names right? Or I can make a query to list ALL the partitioned tables?
Marco Kalter Administrator Staff member Mar 21, 2006 #1 In a User Defined Browser Folder, you can use a where clause like this: Code: where object_type = 'TABLE' and (owner, object_name) in (select pt.owner, pt.table_name from all_part_tables pt) This folder will contain all partitioned tables.
In a User Defined Browser Folder, you can use a where clause like this: Code: where object_type = 'TABLE' and (owner, object_name) in (select pt.owner, pt.table_name from all_part_tables pt) This folder will contain all partitioned tables.