Identify 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