What controls the case of object names in edit windows?

Vinny

Member²
Packages+Bodies seem to come up lowercase "CREATE OR REPLACE PACKAGE mypackage IS...", but views always present with uppercase "CREATE OR REPLACE VIEW MYVIEW IS..." and tables (when clicking SQL button) "create table MYTABLE (..."

I like this to be consistant and know I must be overlooking a setting somewhere.
 
Thank you Marco. Also, can you look at object types? Mostly they are upper case and enclosed with quotation marks followed by lowercase of remaining information.

Example:

Code:
CREATE OR REPLACE TYPE "MYTYPE" <74 space characters here> as table of myothertype
 
Back
Top