程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> 導出Oracle裡創建非唯一索引腳本的方法

導出Oracle裡創建非唯一索引腳本的方法

編輯:Oracle數據庫基礎

在Oracle裡用邏輯備份工具exp導出數據時,如果使用默認參數, 會把索引一起導出來。當數據和索引小的時候,我們可能不太會計較導入時間; 如果數據和索引大的時候,就應該考慮導入時間的問題了。

實際地說,二進制dmp備份文件裡有些索引對備份是用處不大的, 導出時完全可以選擇indexes=n的參數, 不備份它們。這樣不僅可以縮短導入導出時間,還可以節省備份文件的存儲空間。這種索引類型是非唯一(nounique)的。我們可以根據Oracle數據字典dba_indexes和dba_ind_columns裡的信息生成創建索引的腳本。在導入完成後再運行這些創建索引的腳本。

dba_indexes裡記錄了索引類型和存儲參數等信息。

dba_ind_columns裡記錄了索引的字段信息, 它的結構如下: 

    
SQL> desc dba_ind_columns;
 name   null?type
 ----------------------------------------- -------- -------------------------
 index_owner   	not null 	varchar2(30)
 index_name	not null 	varchar2(30)
 table_ownernot null 	varchar2(30)
 table_name not null 	varchar2(30)
 column_name	  	varchar2(4000)
 column_positionnot null 	number
 column_length 	not null 	number
 descend	varchar2(4)
 

column_name記錄著有索引的字段, column_position標記著字段在創建索引時的位置, descend指索引的排序, 有asc和desc 兩種,而desc排序方法用的較少,本文只考慮asc的情況。

步驟一:先創建一個視圖index_nouniq_column_num列出非系統用戶nonunique索引的用戶名, 索引名和字段數量。

SQL> create vIEw index_nouniq_column_num as select t1.owner,t1.index_name,count(0) 
as column_num from dba_indexes t1,dba_ind_columns t2 where t1.uniqueness='NONUNIQUE' 
and instr(t1.owner,'sys')=0 and t1.owner=t2.index_owner and t1.index_name=t2.index_name
group by t1.owner,t1.index_name order by t1.owner,column_num;

步驟二:為了處理方便,建一個索引字段臨時表index_columns, 它的column_names記錄了以逗號分隔, 順序排列的索引字段。

SQL> create table index_columns(
	index_owner		varchar2(30)	not null,
	index_name		varchar2(30)	not null,
	column_names		varchar2(512)	not null)
 	tablespace users;

步驟三:把只有一個字段的索引內容插入索引字段臨時表index_columns。

SQL> insert into index_columns select t1.owner,t1.index_name,t2.column_name from
index_nouniq_column_num t1,dba_ind_columns t2 where t1.column_num=1 and t1.
owner=t2.index_owner and t1.index_name=t2.index_name order by t1.owner,t1.index_name;
commit;

步驟四:把多個字段的索引內容插入索引字段臨時表index_columns。

用到以下一個函數getcloumns和過程select_index_columns。

函數getcloumns:

create or replace function getcloumns(
index_owner1 in varchar2,
index_name1 in varchar2,
column_nums1 in number) return varchar2
is
all_columns varchar2(512);
total_num number;
i number;
cursor c1 is select column_name from dba_ind_columns where index_owner=index_owner1 and index_name=index_name1 order by column_position;
dummy c1%rowtype; 
begin
total_num:=column_nums1; 
open c1;
fetch c1 into dummy;
i:=0;
while c1%found loop
i:=i+1;
if (i=total_num) then
all_columns:= all_columns||dummy.column_name;
else
all_columns:= all_columns||dummy.column_name||',';
end if;
fetch c1 into dummy;
end loop;
close c1;
return all_columns;
exception
when no_data_found then
return all_columns;
end;
/ 過程select_index_columns:
create or replace procedure select_index_columns
is
all_columns varchar2(2000);
cursor c1 is select * from index_nouniq_column_num where column_num>=2;
dummy c1%rowtype; 
begin
open c1;
fetch c1 into dummy;
while c1%found loop
select getcloumns(dummy.owner,dummy.index_name,dummy.column_num) into all_columns
from dual; insert into index_columns values(dummy.owner,dummy.index_name,all_columns);
fetch c1 into dummy;
end loop;
commit;
close c1;
exception
when others then 
rollback;
end;
/

SQL>exec select_index_columns;

執行select_index_columns過程就可以把多個字段的索引內容插入索引字段臨時表了。

步驟五:最後運行create_now_index.sql,根據索引字段臨時表index_columns和dba_indexes在路徑/Oracle_backup/log下生成創建非唯一索引腳本create_index.sql。

create_now_index.sql:

set heading off;
set pagesize 5000;
truncate table index_columns;
-- 把多個字段的索引內容插入索引字段臨時表
exec select_index_columns;
-- 把只有一個字段的索引內容插入索引字段臨時表
insert into index_columns select t1.owner,t1.index_name,t2.column_name from 
index_nouniq_column_num t1,dba_ind_columns t2 where t1.column_num=1 and t1.owner=t2.index_owner 
and t1.index_name=t2.index_name order by t1.owner,t1.index_name;
commit;
spool /Oracle_backup/log/create_index.sql;
SELECT 'CREATE INDEX '||t1.owner||'.'||t1.index_name|| chr(10) ||' ON '||t1.table_name||' 
('||column_names||')'|| chr(10) ||' TABLESPACE '||t1.tablespace_name|| chr(10) 
||' PCTFREE '||t1.pct_free || chr(10) ||' STORAGE (INITIAL '||t1.initial_extent||' 
NEXT '||t1.next_extent||' PCTINCREASE '||t1.pct_increase||');'|| chr(10) || 
chr(10) FROM dba_indexes t1,index_columns t2 WHERE t1.owner=t2.index_owner and 
t1.index_name=t2.index_name ORDER BY t1.owner, t1.table_name;

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved