What is extent clause in table space?
Answer / mk
An extent is a contiguous set (side-by-side) of Oracle data blocks allocated to a segment within a tablespace.
Is This Answer Correct ? | 0 Yes | 0 No |
Why primary key is required?
How do I view an execution plan in sql?
What is the use of procedures?
package specification-3 procedures package body-2 procedures will is execute
What problem one might face while writing log information to a data-base table in pl/sql?
name 3 ways to get an accurate count of the number of records in a table? : Sql dba
What are % type and % rowtype?
Are stored procedures faster than dynamic sql?
Difference between SUBSTR and INSTR?
Which version of sql do I have?
What is the difference between join and natural join?
Dear All, Question for this Week Find out possible error(s) (either at compile time or at runtime) in the following PL/SQL block. State the reason(s) and correct the errors. Declare Cursor C1 is select ename, sal, comm from emp; Begin For i in C1 Loop If i.comm between 299 and 999 then Dbms_output.put_line(i.Ename || ‘ ** Good Commission’); Elsif i.comm > 999 then Dbms_output.put_line(i.Empno || ‘ ** Very Good Commission’); close C1; Else Dbms_output.put_line(i.Ename || ‘ ** ’ ||nvl(i.comm,‘O’)); End if; End Loop; End;