Cross Join in Oracle

This SQL tutorial focuses on cross join in Oracle, and provides explanations, examples A CROSS JOIN  in Oracle is a JOIN operation that produces the Cartesian product of two tables. i,e if one of the table is having 100 rows and another one 8 rows, then cross join will produce 800 rows Here table emp […]

Cross Join in Oracle Read More »

oracle join syntax examples

There are various joins in Oracle like inner join,left outer join,right outer join,full outer join,cross join. This SQL tutorial provides oracle join syntax on each of them with examples Inner Join syntax and ExampleTwo tables examples and syntax SELECT EMP.EMPNO,EMP.ENAME, DEPT.DEPTNO,DEPT.DNAMEFROM EMP , DEPTwhere EMP. DEPTNO= DEPT. DEPTNO; or ANSI syntax SELECT EMP.EMPNO,EMP.ENAME, DEPT.DEPTNO,DEPT.DNAMEFROM EMP INNER

oracle join syntax examples Read More »

Why pinning objects into the shared pool?

What  is the pinning in Shared pool Oracle Applications requires space in the ORACLE System Global Area (SGA) for stored packages and functions. If SGA space is fragmented, there may not be enough space to load a package or function. You should pre-allocate space in the SGA shared pool for packages, functions, and sequences by

Why pinning objects into the shared pool? Read More »

Scroll to Top