What is Normalization ?
Answer Posted / jannath
Normalization is the Process of reducing a complex data
structure into its simplest and most stable form by
eliminating redundant attributes, keys, and relationships.
| Is This Answer Correct ? | 14 Yes | 1 No |
Post New Answer View All Answers
How to create a new user account in oracle?
Why do I get java.lang.abstractmethoderror when trying to load a blob in the db?
master table and child table performances and comparisons in Oracle ?
What is difference between sid and service name in oracle?
Can sub procedure/function be called recursively?
> 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?
What is Undo Management Advisor in Oracle?
How to display employee records who gets more salary than the average salary in the department?
Explain the difference between sql and oracle?
How to rename a tablespace in oracle?
How many data types are supported?
What is connection pooling in oracle?
Explain oracle’s system global area (sga).
How to load a large xml file?
What is dynamic proxy?