Can you allow us to use the "identified externally" functionality with proxy access so that we can enter the proxy username "[proxyacct]", but then get seemless login without having to hit the enter button on the login screen?
Can an enhancement request be put in for the Windows List dockable tool?
In Settings --> Appearance there are two check boxes under the Multiple Document Interface section.
The first one affects the window title and the name shown in the window list. However the second one "Show Window type...
Is it possible to modify the recreate table functionality and the DDL generated for a table to include the DDL to recreate the FK that reference the table that you are recreating or when generating the DDL for that table?
A virtual column is handled as a default value in the table designer and ddl creation. Are there plans to add the ability to manage virtual columns in the table designer and ddl creation?
FYI - There is a column in all_tab_cols, but not All_Tab_Columns that indicate whether a column is virtual.
no intellisense when the last comma is pressed in the procedure. Here is some example code:
------------------------
CREATE OR REPLACE TYPE test_obj AS OBJECT
(
test_id VARCHAR2(100),
CONSTRUCTOR FUNCTION test_obj RETURN SELF AS RESULT,
MEMBER PROCEDURE test_message(p_message IN...
When writing pl/sql code, the intellisense for input parameters of an object method show after entering "(", but not after entering commas. Can you have the input parameters show after a comma is pressed?
Thanks
Can you make it so that the methods of an object type have intellisense for input parameters similar to the way a method in a package work?
For example:
CREATE OR REPLACE TYPE test AS OBJECT
(
test_id NUMBER,
MEMBER PROCEDURE print_text(p_txt IN VARCHAR2)
)
/
CREATE OR REPLACE TYPE BODY...