tdevlikamov
Member
Hello!
I have the problem with PL/SQL Developer 9.0.6 in Oracle 11.2.0.4. When using table alias in predicate filter (WHERE) drop-down menu generate list of column of alised table.
When table is big with a lot of partitions, the menu hang for 10 or more minute. Problem with the query generated by PL/SQL Developer to get list of column:
SELECT t.*, o.*, m.comments
FROM sys.all_tables t, sys.all_tab_comments m, sys.all_objects o
WHERE t.owner =
bject_owner
AND t.table_name =
bject_name
AND m.owner(+) =
bject_owner
AND m.table_name(+) =
bject_name
AND o.owner(+) =
bject_owner
AND o.object_name(+) =
bject_name
AND
bject_type IS NOT NULL
AND:sub_object IS NULL;
How can we adjust or rewrite the problem query?
Is there any fix to resolve the issue?
Thanks.
I have the problem with PL/SQL Developer 9.0.6 in Oracle 11.2.0.4. When using table alias in predicate filter (WHERE) drop-down menu generate list of column of alised table.
When table is big with a lot of partitions, the menu hang for 10 or more minute. Problem with the query generated by PL/SQL Developer to get list of column:
SELECT t.*, o.*, m.comments
FROM sys.all_tables t, sys.all_tab_comments m, sys.all_objects o
WHERE t.owner =

AND t.table_name =

AND m.owner(+) =

AND m.table_name(+) =

AND o.owner(+) =

AND o.object_name(+) =

AND

AND:sub_object IS NULL;
How can we adjust or rewrite the problem query?
Is there any fix to resolve the issue?
Thanks.
Last edited: