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

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


Please Help Members By Posting Answers For Below Questions

Explain overloading. Can functions be overloaded?

1046


What are the system predefined user roles?

1096


What are the differences between char and nchar in oracle?

1142


What are advantages of dateset in datastage?

2307


How to call a stored function with parameters?

1092


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

2090


How to get a list of all user accounts in the database?

1129


Explain the use of tables option in exp command.

1166


Explain alias?

1193


What do database buffers contain?

1081


Is there a combination of "like" and "in" in sql?

1114


How to update values in a table in oracle?

1077


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)

2383


What is the dynamic sql in oracle?

1130


What do you understand by a database object?

1105