Oracle Spostamento Oggetti: differenze tra le versioni

Da Emigar.
Jump to navigation Jump to search
Riga 12: Riga 12:


==Spostamento LOB==
==Spostamento LOB==

ALTER TABLE table_name MOVE LOB (lob_column) STORE AS (TABLESPACE tablespace_name);



[[Categoria:Oracle]]
[[Categoria:Oracle]]

Versione delle 10:28, 15 mag 2018

Spostamento Indici

set pagesize 200
set linesize 200
set trim on
set trims on
select 'alter index ' || owner || '.' || index_name || ' rebuild tablespace GW_IDX online nologging compute statistics;' from dba_indexes where tablespace_name='GW_DAT';

prompt 'ALTER SESSION SET ddl_lock_timeout=30;'
select 'alter index ' || owner || '.' || index_name || ' logging;' from dba_indexes where LOGGING='NO' and owner !='PERFSTAT';

Spostamento LOB

ALTER TABLE table_name MOVE LOB (lob_column) STORE AS (TABLESPACE tablespace_name);