Reputation:
Is there a shortcut and/or command that will highlight syntax and change to upper case?
Example
select tablea.id
from tablea
To:
SELECT TABLEA.ID
FROM TABLEA
Upvotes: 1
Views: 10272
Reputation: 9
Configuration of case change for SQL Developer Version 4.1.5.21 BUILD MAIN 21.78 Preferences -Code Editor -Completiom Insight Change case as you type screen capture here
Upvotes: 1
Reputation: 81
With version 12.0.7.1837:
Go to Configure tab >> Preferences:
User interface >> Editor >> Keyword case >> select 'Uppercase'
This will automatically transform keywords to uppercase. However, it will not transform schema and table names (I'm not sure if there's a setting for this).
Regarding syntax highlighting, there are a few settings within the same section:
User interface >> Editor >> Syntax highlighting
Upvotes: 4
Reputation:
Within PL/SQL Developer, go to Tools>Preferences>KeyConfiguration. Scroll down to Edit/Selection/UpperCase and you can set a shortcut.
Upvotes: 2