12c 啟動例項
show pdbs;
alter pluggable database pdb01 open
;
建立表空間
create
tablespace 表空間名稱
logging
size 256m
autoextend on
next
256m maxsize 20480m
extent management local
;
查詢表空間檔案所在路徑
select
*from dba_data_files;
增加表空間(最大為30g)
alter
tablespace 表空間名稱 add datafile
查詢表空間使用情況
select upper(f.tablespace_name)
"表空間名"
,
d.tot_grootte_mb "表空間大小(m)"
,
d.tot_grootte_mb - f.total_bytes "已使用空間(m)"
,
to_char(
round
((d.tot_grootte_mb - f.total_bytes)
/ d.tot_grootte_mb *
100,2)
,'990.99'
)"使用比"
,
f.total_bytes "空閒空間(m)"
,
f.max_bytes "最大塊(m)"
from
(select tablespace_name,
round
(sum
(bytes)/(
1024
*1024),
2) total_bytes,
round
(max
(bytes)/(
1024
*1024),
2) max_bytes
from sys.dba_free_space
group
by tablespace_name) f,
(select dd.tablespace_name,
round
(sum
(dd.bytes)/(
1024
*1024),
2) tot_grootte_mb
from sys.dba_data_files dd
group
by dd.tablespace_name) d
where d.tablespace_name = f.tablespace_name
orderby4
desc
;
Oracle 常用命令
1 檢視當前所有物件 sql select from tab 2 建乙個和a表結構一樣的空表 sql create table b as select from a where 1 2 sql create table b b1,b2,b3 as select a1,a2,a3 from a whe...
oracle常用命令
create insert delete select 建立使用者必須在sys超級管理員下 連線到超級管理員 conn sys as sysdba sys zhuangyan system zhuangyan scott tiger 查出所有 clerk 辦事員 的姓名及其部門名稱,部門的人數.找出...
oracle 常用命令
建立臨時表空間 02createtemporarytablespace os temp 03tempfile c oracle product 10.2.0 oradata os temp.dbf 04size100m 05autoextendon 06next100m maxsize 1024m ...