I know that i can create a table without a primary key.But
is there any significance for that table???? while creating
an application.
Answer Posted / archana.p
I feel that there is a significance for that table
too,Because there are situation in which we doesn't need to
identify unique records from that table
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
Explain overloading. Can functions be overloaded?
What are the system predefined user roles?
What are the differences between char and nchar in oracle?
What are advantages of dateset in datastage?
How to call a stored function with parameters?
> 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 get a list of all user accounts in the database?
Explain the use of tables option in exp command.
Explain alias?
What do database buffers contain?
Is there a combination of "like" and "in" in sql?
How to update values in a table in oracle?
i wrote a pl/sql procedure. it must run every sunday 4.40 How can i schedule it with the help of dbms_jobs (or another other procedure with out creating bat file,exe file)
What is the dynamic sql in oracle?
What do you understand by a database object?