Oracle autoextended: различия между версиями
Материал из noname.com.ua
Перейти к навигацииПерейти к поискуSirmax (обсуждение | вклад) (Новая: <pre> declare cursor cur is select 'alter database datafile ''' || file_name || ''' autoextend on' as exe_query from dba_data_files where tablespace_name not in ( 'UNDOTBS1', 'SY...) |
Sirmax (обсуждение | вклад) м (Защищена страница «Oracle autoextended» [edit=sysop:move=sysop]) |
||
(не показана 1 промежуточная версия этого же участника) | |||
Строка 1: | Строка 1: | ||
+ | =Oracle autoextended= |
||
<pre> |
<pre> |
||
declare |
declare |
||
Строка 12: | Строка 13: | ||
end; |
end; |
||
</pre> |
</pre> |
||
+ | [[Категория:Oracle]] |
Текущая версия на 15:02, 29 декабря 2010
Oracle autoextended
declare cursor cur is select 'alter database datafile ''' || file_name || ''' autoextend on' as exe_query from dba_data_files where tablespace_name not in ( 'UNDOTBS1', 'SYSTEM', 'SYSAUX', 'USERS', 'TOOLS'); begin for cur_rec in cur loop dbms_output.put_line(cur_rec.exe_query); execute immediate(cur_rec.exe_query); end loop; end;