What is Normalization ?
Answer Posted / pratik maheshvari
normalization is the process of efficiently organizing data
in a database
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
> CREATE OR REPLACE FUNCTION FACTORIAL_1(factstr varchar2 ) 2 RETURN NUMBER AS 3 new_str VARCHAR2(4000) := factstr||'*' ; 4 fact number := 1 ; 5 BEGIN 6 7 WHILE new_str IS NOT NULL 8 LOOP 9 fact := fact * TO_NUMBER(SUBSTR(new_str,1,INSTR(new_str,'*')-1)); 10 new_str := substr( new_str,INSTR(new_str,'*')+1); 11 END LOOP; 12 13 RETURN fact; 14 15 END; explanation Above program?
How to enter a new row into a table interactively?
What is Reduced List of Values?
How to change user password in oracle?
Explain the difference between sql and oracle?
what are archived logs?
What is a cursor and what are the steps need to be taken?
Using the relations and the rules set out in the notes under each relation, write statements to create the two sequence generators specified in the notes.
What is a trigger oracle?
What is the difference between truncate & delete command?
How many types of database triggers exist?
How to connect to the server with user account: sys?
What is save point in oracle database?
What is a sub query? Describe its types?
Explain an exception and its types?