What is Normalization ?

Answer Posted / darsh

It is a technique for designing a database system.

(BEST OF LUCK)

Is This Answer Correct ?    157 Yes 57 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

15. Display the item_cost and then truncate it to the nearest hundred, ten, unit, tenth and hundredth.

1703


types of indexes and the rationale behind choosing a particular index for a situation.

1986


What privilege is needed for a user to create tables in oracle?

550


What are the differences between blob and clob in oracle?

585


How to add a new column to an existing table with a default value?

548






How to drop an existing view in oracle?

571


What is the difference between postgresql and oracle?

506


you are a universe designer and report developer in BO, what type of information you gather from client?Briefly explain plz

1564


How do I manually uninstall oracle client?

518


Why do you use stored procedures and state some of its disadvantages?

565


> 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?

1570


How to list all user accounts in oracle?

614


Define the SGA and: How you would configure SGA for a mid-sized OLTP environment? What is involved in tuning the SGA?

1860


Difference between varchar and varchar2 data types?

668


How to drop an index?

544