Explain the statement?? ALTER TABLE TABLE_NAME MOVE;
What it the use of above statement??
Answer Posted / ranveeer singh
move table to other tablespace;
necessary to rebuild index if needed; command
alter index indx_name rebuild tablespace tbs_name;
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
How to list all indexes in your schema?
How are extents allocated to a segment?
How do we get field details of 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?
Explain what are the advantages of views?
Calculate difference between 2 date / times in oracle sql?
How to revoke create session privilege from a user in oracle?
How to rename an index in oracle?
What happens if variable names collide with table/column names?
How is it different from a normal table?
Explain a synonym?
What are the differences between date and timestamp in oracle?
How to rename an index?
How do I learn what codesets are available in oracle?
What is the use of file param in imp command?