2026-03-12 20:23:15
This commit is contained in:
28
timhall/miscellaneous/rebuild_index.sql
Normal file
28
timhall/miscellaneous/rebuild_index.sql
Normal file
@@ -0,0 +1,28 @@
|
||||
-- -----------------------------------------------------------------------------------
|
||||
-- File Name : https://oracle-base.com/dba/miscellaneous/rebuild_index.sql
|
||||
-- Author : Tim Hall
|
||||
-- Description : Rebuilds the specified index, or all indexes.
|
||||
-- Call Syntax : @rebuild_index (index-name or all) (schema-name)
|
||||
-- Last Modified: 28/01/2001
|
||||
-- -----------------------------------------------------------------------------------
|
||||
SET PAGESIZE 0
|
||||
SET FEEDBACK OFF
|
||||
SET VERIFY OFF
|
||||
|
||||
SPOOL temp.sql
|
||||
|
||||
SELECT 'ALTER INDEX ' || a.index_name || ' REBUILD;'
|
||||
FROM all_indexes a
|
||||
WHERE index_name = DECODE(Upper('&1'),'ALL',a.index_name,Upper('&1'))
|
||||
AND table_owner = Upper('&2')
|
||||
ORDER BY 1
|
||||
/
|
||||
|
||||
SPOOL OFF
|
||||
|
||||
-- Comment out following line to prevent immediate run
|
||||
@temp.sql
|
||||
|
||||
SET PAGESIZE 14
|
||||
SET FEEDBACK ON
|
||||
SET VERIFY ON
|
||||
Reference in New Issue
Block a user