Overblog All blogs Top blogs Jobs, Education & Studies
Follow this blog Administration + Create my blog
MENU
Advertising

What is normalization ?

Defination : Normalization is the process of efficiently organizing data in a database. There are two goals of the normalization process: eliminating redundant data (for example, storing the same data in more than one table) and ensuring data dependencies...

Read more

Advertising

SQL*Loader : bad file vs discard file

SQL*Loader : bad file vs discard file What is the difference between the bad file and the discard file in SQL*Loader. The bad file and discard files both contain rejected rows, but they are rejected for different reasons: Bad file: The bad file contains...

Read more

Advertising

Difference Between Cursor And Ref Cursor

Difference Between Cursor And Ref Cursor In this post I am trying to detail out the differences between Cursor and Ref Cursors. I am sure, this question has been asked in many interviews to many of us and it also has its own technical weightage. Lets...

Read more

LISTAGG Function

LISTAGG Function . SELECT deptno ,LISTAGG(ename, ',') WITHIN GROUP ( ORDER BY ename) AS employees FROM emp GROUP BY deptno; DEPTNO EMPLOYEES -------- --------------- 10 CLARK,KING,MILLER 20 ADAMS,FORD,JONES,SCOTT,SMITH,SMITH 30 ALLEN,ALLEN,BLAKE,JAME...

Read more

Advertising

Plsql function exception

Plsql function exception ORA-01403: no data found Cause: No data was found from the objects. Action: There was no data from the objects which may be due to end of fetch Reference: Oracle Documentation ORA-01403 is a very common error. ORA-01403 occurs...

Read more

<< < 10 11 12 13 14 15 16 17 18 19 20 30 40 > >>