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
How to create a table index in oracle?
Who developed oracle & when?
Name the three major set of files on disk that compose a database in Oracle?
How to start a specific oracle instance?
What are the various constraints used in oracle?
How to list all tables in your schema?
What are the attributes that are found in a cursor?
Explain an extent?
> 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?
Differentiate between translate and replace?
20. Using a set operator, display the client number of all clients who have never placed an order.
what is the difference between substr and instr function in oracle?
How do I start tns listener?
What is ceil and floor in oracle?
When do you get a .pll extension in oracle? Explain its importance