declare
index_name VARCHAR2(100);
CURSOR i_c is select index_name from user_indexes;
begin
open i_c;
loop
fetch i_c into index_name;
EXIT WHEN i_c%NOTFOUND;
EXECUTE IMMEDIATE (’alter index ‘ || index_name || ‘ rebuild’);
end loop;
end;
|
||||||
|
declare The powerful of shell is using quick command without run the program 1- Delete by Specific text 2- Delete by line numbers 3- Delete Empty lines |
||||||
|
Copyright © 2010 El-Shihabi - All Rights Reserved |
||||||