Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- IBM
- tv 스캔
- AIX
- centos8
- oracle
- centos 8 EOS
- 디스크
- 오라클
- 스크립트
- yum
- ssh
- Windows
- HP
- CentOS
- TV
- #AIX
- c3850
- ibm v7000
- EMC
- Update
- v7000
- db
- VMware
- ibm storage
- 오류
- ibm 스토리지
- 리눅스
- iptv 스캔
- Linux
- 파일시스템 확장
Archives
- Today
- Total
현재에최선을
[oracle] ASM 테이블스페이스 확장 본문
ASM 테이블스페이스 확장 방법
1. 데이타 파일 찾기
1) sqlplus /as sysdba
2) set line 1000
col tablespace_name for a20
col file_name for a100
3) select tablespace_name, file_name from dba_data_files;
2. 데이타 파일 확인해서 아래와 같이 바로 적용.
alter database datafile '+DATA/GBLIB/DATAFILE/users.267.1014647391' resize 3G;
3. 데이터 파일 추가
alter tablespace [TS] add datafile size 5G autoextend on next 100M;
'[오라클]' 카테고리의 다른 글
[ORACLE] sql 출력 결과 사이즈 변경 (0) | 2022.03.23 |
---|---|
[ORACLE] alert.ora 파일에 Fatal NI connect error 12547 (0) | 2021.09.27 |
[oracle] $':\r': command not found 뜰 때 (0) | 2021.04.27 |
[oracle] ora-12012 error on auto execute of job "SYS"."ORA$AT_OS_OPT_SY_ (0) | 2021.04.26 |
[oracle] alert 파일 위치 및 관리 (0) | 2021.04.26 |
Comments