Oracle 대량 생 성 표 공간 생 성 문
6708 단어 Oacle
용도: 년 월 기반 표 공간 을 만 드 는 데 사용 합 니 다.
-- Oracle
with x1 as (/* */
select cast(2010 + rownum as varchar(4)) as y from dual connect by level<=6
), x2 as (/* */
select '01' as q from dual union all
select '02' as q from dual union all
select '03' as q from dual union all
select '04' as q from dual
)
select * from (
select 'create tablespace ts_'|| x1.y ||'_'|| x2.q ||' logging datafile ''h:\database\db\ts_'|| x1.y ||'_'|| x2.q ||'.dbf'' size 10m autoextend on next 10m maxsize 32767m extent management local;' as sql
from x1, x2 order by x1.y, x2.q)
union all
select 'create tablespace ts_max logging datafile ''h:\database\db\ts_max.dbf'' size 10m autoextend on next 10m maxsize 32767m extent management local;' as sql
from dual;
--
with x1 as (/* */
select cast(2010 + rownum as varchar(4)) as y
from dual connect by level<=6
), x2 as (/* */
select '01' as q, '04' as q2 from dual union all
select '02' as q, '07' as q2 from dual union all
select '03' as q, '10' as q2 from dual union all
select '04' as q, '01' as q2 from dual
)
select * from (
select 'PARTITION ts_'|| x1.y ||'_'|| x2.q ||' VALUES less than (to_date('''
|| cast(case when x2.q2='01' then cast(x1.y as number(4))+1 else cast(x1.y as number(4)) end as varchar(4))
||'-'|| x2.q2 ||'-01'',''yyyy-mm-dd'')) tablespace ts_'|| x1.y ||'_'|| x2.q ||', ' as sql
from x1, x2
order by x1.y, x2.q)
union all
select 'PARTITION ts_max VALUES less than (maxvalue) tablespace ts_max' from dual
;
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
activemq 5.5 의 입문 은 설치, 시작, 데이터베이스 지속 화 를 포함한다Apache ActiveMQ 5.5.0 은 주로 유지보수 버 전 으로 130 개가 넘 는 문 제 를 복 구 했 으 며 대부분 bug 와 개선 이 었 다. Improved performance for offline d...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.