Notice
Recent Posts
Recent Comments
초코레
tablespace 목록과 data file 목록 조회 본문
tablespace 목록 조회
1
2
3
4
5
|
select tablespace_name
,block_size
,segment_space_management
,status
from dba_tablespaces;
|
cs |
data file 목록 조회
1
2
3
4
5
6
7
8
|
select file_name
,bytes
,blocks
,status
,autoextensible
,online_status
,tablespace_name
from dba_data_files;
|
cs |
'Backend > SQL' 카테고리의 다른 글
[Oracle] 그룹핑에서 피벗(PIVOT) 사용법 (0) | 2020.03.04 |
---|---|
GROUP BY (0) | 2020.03.04 |
[oracle] 테이블 스페이스, 사용자 생성 (0) | 2020.02.28 |