Skip to Main Content

SQL Developer

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

SQL Developer 22.2.1.234, functions and procedures autocomplete not working

User_XRPG5Sep 15 2022

Hi there,
just installed new version of SQL Developer ( 22.2.1.234 ) , on a first try everything seemed fine, but found that autocomplete when partialy typing function and procedure names ( followed by ctrl+space ) not working as expected ( at least for me ). Packages autocomplete not working too, only when i type the whole name with dot after, then it lists subroutines.
Posted a question on @thatjeffsmith-oracle kindly suggested to post question here
Install procedure was just simple download and unzip of windows zip with JDK included, tried it on PC and laptop, win10 and win11
This is how it worked on 20.2 version after pressing ctrl+space
image.pngimage.png
Also peeked on "Statements" tab to look what if fires against database, in version 20.2 it executes query "
SELECT object_type type, owner owner, object_name, null column_name, null column_id, null data_type
FROM all_objects
WHERE rownum <=50 and object_name not like 'BIN$%' and object_type IN ('PROCEDURE','FUNCTION','PACKAGE','OPERATOR')
and object_name like ?
union all
SELECT 'SEQUENCE' type, USER owner, object_name, 'NEXTVAL' column_name, null column_id, null data_type
FROM sys.user_objects
WHERE object_type = 'SEQUENCE' and rownum <=50 and object_name like ?
"
, but on version it fires nothing

Thx

Comments
Post Details
Added on Sep 15 2022
1 comment
1,347 views