Answer Posted / nishi
A cluster is a schema object that contains data from one or more tables, all of which have one or more columns in common. Oracle Databasestores together all the rows from all the tables that share the same cluster key.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How many anonymous blocks can be defined?
How to get maxsal , minsal, ename department wise in single query
Which is better Oracle or MS SQL? Why?
What is a nested table?
> 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?
What do you understand by a database object?
How to create an oracle database?
List out the types of joins.
What is the string concatenation operator in oracle?
What is catalog in Oracle?
11. Display the client number and name and the client number and name of the person who referred that client.
What is meant by recursive hints in oracle?
Explain temporal data types in oracle
How to increment dates by 1 in oracle?
How to find out what oracle odbc drivers are installed?