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 / sam

Schema is a collection of user defined objects such as
(table,view,procedure,etc..)in oracle and Active Dir.

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How to start your 10g xe server from command line?

1127


How view is different from a table?

1081


What is columnar storage what is the advantage?

1121


What is memory advisor in Oracle?

1132


What is recovery manager(rman) backup in Oracle?

1231


What are the uses of linked server and explain it in detail?

1117


When system tablespace is created?

1090


How to define a data field as not null?

1161


Does facebook use oracle?

1084


How will you write a query to get a 5th rank student from a table student_report?

1918


Give syntax for SQL and ORACLE joins.

1144


What is an oracle tablespace?

1094


What is a cursor in oracle?

1228


> 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


How to get last row id?

1053