Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

what is the difference between first normal form & second
normal form?

Answer Posted / prabhu

to reduce the retundant column for that only we r using the
first normal form




create seperate table for not functionality dependent
on primary key this is 2nd normal form

Is This Answer Correct ?    3 Yes 4 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to create a table index in oracle?

1180


Who developed oracle & when?

1054


Name the three major set of files on disk that compose a database in Oracle?

1170


How to start a specific oracle instance?

1079


What are the various constraints used in oracle?

1091


How to list all tables in your schema?

1113


What are the attributes that are found in a cursor?

1118


Explain an extent?

1150


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

2088


Differentiate between translate and replace?

1185


20. Using a set operator, display the client number of all clients who have never placed an order.

2235


what is the difference between substr and instr function in oracle?

1139


How do I start tns listener?

1095


What is ceil and floor in oracle?

1118


When do you get a .pll extension in oracle? Explain its importance

1095