I am trying to determine why it takes about 10 seconds for the cursor to return to my query after using the code assistant to select a column for a view. Here is the select I am using:
select * from all_tab_columns c
where c.COLUMN_NAME
After I enter the period, the list of columns appears very quickly. Once I select the column, it takes about 10 seconds for the cursor to return with the column I selected. This problem does not occur when I am referencing a table instead of a view.
Any idea what causes this problem?
select * from all_tab_columns c
where c.COLUMN_NAME
After I enter the period, the list of columns appears very quickly. Once I select the column, it takes about 10 seconds for the cursor to return with the column I selected. This problem does not occur when I am referencing a table instead of a view.
Any idea what causes this problem?