आपको उन अनुक्रमणिकाओं पर विचार करना होगा जिन्हें अमान्य भी किया जा सकता है - इसके अलावा डिफ़ॉल्ट टेबलस्पेस को रीसेट करने के बारे में अपने प्रश्न को कवर करने के लिए, मुझे लगता है कि यह पूरी प्रक्रिया है जिसे आप कार्यान्वित करना चाहते हैं:
1) विभाजनों को स्थानांतरित करें (zürigschnäzlets' उत्तर के अनुसार एक PL/SQL लूप)
ये वे प्रक्रियाएं हैं जिनका उपयोग मैं एक अनाम ब्लॉक रैपर के भीतर करता हूं जो a_tname, a_destTS, vTname और vTspName को परिभाषित करता है - उन्हें आपको सामान्य विचार देना चाहिए:
procedure mvTabPart (a_tname in varchar2, a_destTS in varchar2) is
cursor pCur(vTname varchar2, vTspName varchar2) is
select table_name, partition_name
from user_tab_partitions
where table_name = vTname
and tablespace_name not like vTspName
order by partition_position desc;
begin
for pRow in pCur(a_tname, a_destTS) loop
sqlStmnt := 'alter table '||pRow.table_name||
' move partition '||pRow.partition_name||
' tablespace '||a_destTS;
execute immediate sqlStmnt;
end loop;
end mvTabPart;
2) तालिका डिफ़ॉल्ट विभाजन तालिका स्थान सेट करें ताकि वहां नए विभाजन बनाए जा सकें:
procedure setDefTabPart (a_tname in varchar2, a_destTS in varchar2) is
cursor tCur(vTname varchar2) is
select table_name
from user_part_tables
where table_name = vTname;
begin
for tRow in tCur(a_tname) loop
sqlStmnt := 'alter table '||tRow.table_name||
' modify default attributes '||
' tablespace '||a_destTS;
execute immediate sqlStmnt;
end loop;
end setDefNdxPart;
3) इंडेक्स डिफॉल्ट पार्टीशन टेबलस्पेस सेट करें ताकि नए इंडेक्स पार्टीशन (यदि कोई हों) जहां आप चाहते हैं, बनाए जाएं:
procedure setDefNdxPart (a_tname in varchar2, a_destTS in varchar2) is
cursor iCur(vTname varchar2) is
select index_name
from user_part_indexes
where index_name in (select index_name
from user_indexes where table_name = vTname);
begin
for iRow in iCur(a_tname) loop
sqlStmnt := 'alter index '||iRow.index_name||
' modify default attributes '||
' tablespace '||a_destTS;
execute immediate sqlStmnt;
end loop;
end setDefNdxPart;
4) किसी भी विभाजित अनुक्रमणिका का पुनर्निर्माण करें जिसे पुनर्निर्माण की आवश्यकता है और जो वांछित तालिका स्थान में नहीं हैं:
procedure mvNdxPart (a_tname in varchar2, a_destTS in varchar2) is
cursor ndxCur(vTname varchar2, vTspName varchar2) is
select i.index_name index_name, ip.partition_name partition_name
from user_ind_partitions ip, user_indexes i
where i.index_name = ip.index_name
and i.table_name = vTname
and i.partitioned = 'YES'
and (ip.tablespace_name not like vTspName or ip.status not like 'USABLE')
order by index_name, partition_name ;
begin
for ndxRow in ndxCur(a_tname, a_destTS) loop
sqlStmnt := 'alter index '||ndxRow.index_name||
' rebuild partition '||ndxRow.partition_name||
' tablespace '||a_destTS;
execute immediate sqlStmnt ;
end loop;
end mvNdxPart;
5) किसी भी वैश्विक अनुक्रमणिका का पुनर्निर्माण करें
procedure mvNdx (a_tname in varchar2, a_destTS in varchar2) is
cursor ndxCur(vTname varchar2, vTspName varchar2) is
select index_name
from user_indexes
where table_name = vTname
and partitioned = 'NO'
and (tablespace_name not like vTspName or status like 'UNUSABLE')
order by index_name ;
begin
for ndxRow in ndxCur(a_tname, a_destTS) loop
sqlStmnt := 'alter index '||ndxRow.index_name||
' rebuild tablespace '||a_destTS;
execute immediate sqlStmnt ;
end loop;
end mvNdx;