How to set Schema level preference setting

Suppose you want to set up method_opt preference for the schema, then the below procedure can be done to set it up The  DBMS_STATS.SET_SCHEMA_PREFS procedure is used to set the statistics preferences of all the tables owned by the specified owner name. DBMS_STATS.SET_SCHEMA_PREFS (ownname IN VARCHAR2,pname IN VARCHAR2,pvalue IN VARCHAR2) Example exec DBMS_STATS.SET_SCHEMA_PREFS(‘SCOTT’, ‘method_opt’,’for all

How to set Schema level preference setting Read More »

How to check the java version in Unix & Windows

Java is a high-level, class-based, object-oriented programming language that is designed to have as few implementation dependencies as possible. It was developed by Sun Microsystems (now owned by Oracle Corporation) and released in 1995. Java applications are typically compiled to bytecode that can run on any Java Virtual Machine (JVM), regardless of the underlying computer

How to check the java version in Unix & Windows Read More »

Scroll to Top