Home » Page 123

Reserved keywords in Oracle

There are certain keywords in oracle which can be used restrictively only. These values are defined in v$reserved_words table SQL> desc v$reserved_words; Name Null? Type —————————————– ——– —————————- KEYWORD VARCHAR2(30) LENGTH NUMBER RESERVED VARCHAR2(1) RES_TYPE VARCHAR2(1) RES_ATTR VARCHAR2(1) RES_SEMI VARCHAR2(1) DUPLICATE VARCHAR2(1) -A value of column reserved Y means that the keyword cannot be used …

Reserved keywords in Oracle Read More »

How to find the database session for JVM PID

To find total number of open database connections for a given JVM PIDSELECT s.process, Count(*) all_count FROM   gv$session s WHERE s.process IN () GROUP BY  s.process To find number of database connections per JVM that were inactive for longer then 60 minutes SELECT s.process, Count(*) olderConnection_count FROM   gv$session s WHERE  s.process IN () and  s.last_call_et>=(60*60) …

How to find the database session for JVM PID Read More »

Oracle’s Containers for J2EE (OC4J) in R12

Oracle’s Containers for J2EE (OC4J) – OC4J stands for Oracle’s Containers for J2EE. OC4J can execute Servlets, Java Server Pages (JSP), Enterprise Java Beans (EJB)-OC4J replaces the older JServ implementation for running servlets on the web server-Oracle Application Server 10gR3 (10.1.3) is the latest production version-OC4J is based on J2EE standards:Specific directory structure,File requirements (content & naming …

Oracle’s Containers for J2EE (OC4J) in R12 Read More »

Scroll to Top