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

Answer Posted / satyabrata

Schema is Collecton of data object including logical
structures such as tables, views, sequences, stored
procedures, synonyms indexes, clusters and database links

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is ordinary table in oracle?

1239


What is the difference between a primary key & a unique key?

1140


How are extents allocated to a segment?

1181


How do we display rows from the table without duplicates?

1017


Explain coalesce function?

1250


Explain what are the type of synonyms?

1185


How do I limit the number of rows returned by an oracle query after ordering?

1224


Why use resource manager in Oracle?

1172


How to assign data of the deleted row to variables?

1115


How would you change old and new values in an insert, delete and update triggers?

1077


What is oracle thin client?

1076


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

2092


What is an oracle recycle bin?

1064


Explain the use of record length option in exp command.

1117


How to convert numbers to characters in oracle?

1077