Answer Posted / orawhiz
Each Non-clustered table has a data segment. All of the table's
data is stored in the extents of its data segment. Each
cluster has a data segment. The data of every table in the
cluster is stored in the cluster's data segment.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
An automatic job running via DBMS_JOB has failedKnowing only that its failed, how do you approach troubleshooting this issue?
What is a static data dictionary in oracle?
can u send the sql dumps to sivakumarr1987@gmail.com plz help me
What are the advantages of oracle 12c?
How view is different from a table?
What are the uses of a database trigger?
Is it possible to insert comments into sql statements return in the data model editor ?
Is oracle an open source?
How to use in conditions in oracle?
What happens to indexes if you drop a 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 is a Nested Loop join?
How to create a stored program unit?
Hi friends can u send the oracle 9i full version download link?????????????? please reply ?
What to do if the binary spfile is wrong for the default instance?