Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: Re-creating Indexes - Script
This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.
------_=_NextPart_000_01C05E25.336E3001
Content-Type: text/plain;
charset="iso-8859-1"
this is from 'Tales from the script';
I'd recommend you modify it to use a view
to obtain the 'real' storage to do your
create; something like:
HTH
Ed Maurer
Sr. DBA & Bottle Washer
Acquirex.com
-----Original Message-----
> From: Weerd Kirsten, E.C. de [mailto:Kirsten.deWeerd_at_Oranjewoud.nl]
> Sent: Monday, December 04, 2000 2:15 AM
> To: Multiple recipients of list ORACLE-L
> Subject: Re-creating Indexes - Script
>
>
> Hi all,
>
> I'm sure I can make one of my own, but I was just wondering :
>
> Does anyone have a good script to recreate existing
> indexes. I can't
> simply rebuild them (Oracle 7.2.3) and dont really want to
> extract every
> create-script with TOAD one by one...
>
> Thanx in advance,
>
> Greets
>
> Kirsten
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: Weerd Kirsten, E.C. de
> INET: Kirsten.deWeerd_at_Oranjewoud.nl
>
> Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051
> San Diego, California -- Public Internet access / Mailing Lists
> --------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
------_=_NextPart_000_01C05E25.336E3001
Content-Type: application/octet-stream;
name="TFSCSNDX.SQL"
Content-Transfer-Encoding: quoted-printable
Content-Disposition: attachment;
filename="TFSCSNDX.SQL"
REM Generate index creation script
SET ECHO off
REM NAME: TFSCSNDX.SQL
REM USAGE:"@path/tfscsndx"
REM =
------------------------------------------------------------------------=
REM REQUIREMENTS:
REM DBA privs
REM =
------------------------------------------------------------------------=
REM AUTHOR:
REM Anonymous
REM Copyright 1995, Oracle Corporation
REM =
------------------------------------------------------------------------=
REM PURPOSE:
REM Running this script will in turn create a script to build
REM all the indexes in the database. This created script,
REM tfscsndx.sql, can be run by any user with the DBA role or
REM with the 'CREATE ANY INDEX' system privilege.
REM
REM The script will NOT capture the indexes created by the user
REM 'SYS'. It will capture indexes for clusters, but the create
REM statement for these indexes will fail because it DOES NOT
REM include the keyword CLUSTER. If the create index of a cluster
REM is executed, it will result in an error 'ora-942 table or view
REM does not exist' because it will be looking for a table of that
REM name NOT A CLUSTER.
REM
REM NOTE: Indexes automatically created by table CONSTRAINTS will
REM also be INCLUDED in the tfscsndx.sql script. It may cause
REM a problem to create an index with a system assigned name such
REM as SYS_C00333.
REM =
------------------------------------------------------------------------=
REM EXAMPLE:
REM CREATE UNIQUE INDEX scott.s_dept_name_uk
REM ON scott.s_dept (name,region_id)
REM PCTFREE 10
REM INITRANS 2 MAXTRANS 255
REM TABLESPACE SYSTEM STORAGE (
REM INITIAL 10240 NEXT 10240
REM MINEXTENTS 1 MAXEXTENTS 121 PCTINCREASE 50)
REM /
REM
REM CREATE UNIQUE INDEX scott.s_emp_id_pk
REM ON scott.s_emp (id)
REM PCTFREE 10
REM INITRANS 2 MAXTRANS 255
REM TABLESPACE SYSTEM STORAGE (
REM INITIAL 10240 NEXT 10240
REM MINEXTENTS 1 MAXEXTENTS 121 PCTINCREASE 50)
REM /
REM
REM =
------------------------------------------------------------------------=
set verify off;
set termout off;
set feedback off;
set pagesize 0;
set termout on
select 'Creating index build script...' from dual;
set termout off;
create table i_temp
(lineno NUMBER, id_owner VARCHAR2(30), id_name VARCHAR2(30), text VARCHAR2(800))
DECLARE
CURSOR ind_cursor IS select owner,
index_name, table_owner, table_name, uniqueness, tablespace_name, ini_trans, max_trans, initial_extent, next_extent, min_extents, max_extents, pct_increase, pct_free from dba_indexes where owner !=3D 'SYS' order by index_name;CURSOR col_cursor (i_own VARCHAR2, c_ind VARCHAR2, c_tab VARCHAR2) = IS
select column_name from dba_ind_columns where index_owner =3D i_own and index_name =3D c_ind and table_name =3D c_tab order by column_position; lv_index_owner dba_indexes.owner%TYPE; lv_index_name dba_indexes.index_name%TYPE; lv_table_owner dba_indexes.table_owner%TYPE; lv_table_name dba_indexes.table_name%TYPE; lv_uniqueness dba_indexes.uniqueness%TYPE; lv_tablespace_name dba_indexes.tablespace_name%TYPE; lv_ini_trans dba_indexes.ini_trans%TYPE; lv_max_trans dba_indexes.max_trans%TYPE; lv_initial_extent dba_indexes.initial_extent%TYPE; lv_next_extent dba_indexes.next_extent%TYPE; lv_min_extents dba_indexes.min_extents%TYPE; lv_max_extents dba_indexes.max_extents%TYPE; lv_pct_increase dba_indexes.pct_increase%TYPE; lv_pct_free dba_indexes.pct_free%TYPE; lv_column_name dba_ind_columns.column_name%TYPE; lv_first_rec BOOLEAN; lv_string VARCHAR2(800); lv_lineno number :=3D 0;
procedure write_out(p_line INTEGER, p_owner varchar2, p_name = VARCHAR2,
p_string VARCHAR2) is begin insert into i_temp (lineno,id_owner, id_name,text) values (p_line,p_owner,p_name,p_string);end;
BEGIN
OPEN ind_cursor;
LOOP
FETCH ind_cursor INTO lv_index_owner, lv_index_name, lv_table_owner, lv_table_name, lv_uniqueness, lv_tablespace_name, lv_ini_trans, lv_max_trans, lv_initial_extent, lv_next_extent, lv_min_extents, lv_max_extents, lv_pct_increase, lv_pct_free; EXIT WHEN ind_cursor%NOTFOUND; lv_lineno :=3D 1; lv_first_rec :=3D TRUE; lv_string:=3D 'DROP INDEX ' || lower(lv_index_owner) || '.' || lower(lv_index_name)||';'; write_out(lv_lineno, lv_index_owner, lv_index_name, = lv_string); lv_lineno :=3D lv_lineno + 1; if (lv_uniqueness =3D 'UNIQUE') then lv_string:=3D 'CREATE UNIQUE INDEX ' || lower(lv_index_owner) = || '.' || lower(lv_index_name); write_out(lv_lineno, lv_index_owner, lv_index_name, = lv_string); lv_lineno :=3D lv_lineno + 1; else lv_string:=3D 'CREATE INDEX ' || lower(lv_index_owner) || '.' = || lower(lv_index_name); write_out(lv_lineno, lv_index_owner, lv_index_name, = lv_string); lv_lineno :=3D lv_lineno + 1; end if; OPEN col_cursor(lv_index_owner,lv_index_name,lv_table_name); LOOP FETCH col_cursor INTO lv_column_name; EXIT WHEN col_cursor%NOTFOUND; if (lv_first_rec) then lv_string :=3D ' ON '|| lower(lv_table_owner) || '.' || lower(lv_table_name)||' ('; lv_first_rec :=3D FALSE; else lv_string :=3D lv_string || ','; end if; lv_string :=3D lv_string || lower(lv_column_name); END LOOP; CLOSE col_cursor; lv_string :=3D lv_string || ')'; write_out(lv_lineno, lv_index_owner, lv_index_name, lv_string); lv_lineno :=3D lv_lineno + 1; lv_string :=3D null; lv_string :=3D 'PCTFREE ' || to_char(lv_pct_free); write_out(lv_lineno, lv_index_owner, lv_index_name, lv_string); lv_lineno :=3D lv_lineno + 1; lv_string :=3D 'INITRANS ' || to_char(lv_ini_trans) || ' MAXTRANS ' || to_char(lv_max_trans); write_out(lv_lineno, lv_index_owner, lv_index_name, lv_string); lv_lineno :=3D lv_lineno + 1; lv_string :=3D 'TABLESPACE ' || lv_tablespace_name || ' STORAGE = ('; write_out(lv_lineno, lv_index_owner, lv_index_name, lv_string); lv_lineno :=3D lv_lineno + 1; lv_string :=3D 'INITIAL ' || to_char(lv_initial_extent) || ' NEXT ' || to_char(lv_next_extent); write_out(lv_lineno, lv_index_owner, lv_index_name, lv_string); lv_lineno :=3D lv_lineno + 1; lv_string :=3D 'MINEXTENTS ' || to_char(lv_min_extents) || ' MAXEXTENTS ' || to_char(lv_max_extents) || ' PCTINCREASE ' || to_char(lv_pct_increase) || ')'; write_out(lv_lineno, lv_index_owner, lv_index_name, lv_string); lv_lineno :=3D lv_lineno + 1; lv_string :=3D '/'; write_out(lv_lineno, lv_index_owner, lv_index_name, lv_string); lv_lineno :=3D lv_lineno + 1; lv_lineno :=3D lv_lineno + 1; lv_string:=3D' = '; write_out(lv_lineno, lv_index_owner, lv_index_name, lv_string);Received on Mon Dec 04 2000 - 13:06:39 CST
![]() |
![]() |