Display the Oracle database chararter set information SQL Code 1select * from nls_database_parameters 2/ Sample Oracle Output: 1 2SQL> Purpose: To retrieve and display all current National Language Support (NLS) database parameters. These parameters govern how Oracle handles language, territory, character sets, and …
Read MoreShow all the Oracle database used or installed Oracle features Show all the Oracle database installed features for an instance SQL Code 1select name 2, detected_usages 3from dba_feature_usage_statistics 4where detected_usages > 0 5/ Sample Oracle Output: 1 2SQL> Purpose: To identify and display database features …
Read MoreIdentify if Java is installed in the Oralce database This will return 9000'ish if it is... SQL Code 1select count(*) 2from all_objects 3where object_type like '%JAVA%' 4and owner = 'SYS' 5/ Sample Oracle Output: 1 2SQL> ** Purpose:** To count the number of Java-related objects (such as classes, …
Read More