Oracle知识点总结

–1.创建图书管理系统的临时表空间
create temporary tablespace booktmptbs
tempfile ‘D:\app\Administrator\oradata\bookMng\booktemptbs.bdf’ 
size 20M
–2.创建图书管理系统的撤销表空间
create undo tablespace bookundotbs
datafile ‘D:\app\Administrator\oradata\bookMng\bookundotbs.dbf’ 
size 20M
autoextend on next 5M
maxsize 50M
–3.创建图书管理系统的大文件表空间
create bigfile tablespace bookbigtbs
datafile ‘D:\app\Administrator\oradata\bookMng\bookbigfiletbs.dbf’ 
size 1G

USER-RREE_SPACE 所有用户表空间中的空闲区间信息
V$DATAFILE 所有数据文件信息
VSTEMPFILE 所有临时文件信息
DBA_DATA_FILES 显示所有属于表空间的数据文件信息
DBA_TEMP_FILES 显示所有属于临时表空间的临时文件信息

–查询表空间的信息
Select * from dba_tablespaces
Select * from dba_data_files

修改表空间操作
–1.修改表空间的名字
alter tablespace booktbs
rename to booktbs2
–2.修改表空间中的数据文件大小
alter database 
datafile ‘D:\app\Administrator\oradata\bookMng\booktbs.bdf’
resize 40M
–3.增加表空间的数据文件
alter tablespace booktbs2
add datafile ‘D:\app\Administrator\oradata\bookMng\booktbs2.bdf’
size 10M,
‘D:\app\Administrator\oradata\bookMng\booktbs3.bdf’
size 10M;
–4.修改数据文件的可扩展性
alter database
datafile’D:\app\Administrator\oradata\bookMng\booktbs.bdf’
autoextend off
alter database
datafile’D:\app\Administrator\oradata\bookMng\booktbs.bdf’
autoextend on
next 5M
maxsize 40M
–5. 删除表空间中的数据文件
alter tablespace booktbs2|
drop datafile D:\bpp\Administrator\oradata\bookMng\booktbs3.bdf”
-6.修改表空间中数据文件的状态
设置数据文件状态的语法如下:
ALTER DATABASE
DATAFILE file_name ONLINE | OFFLINE
设置表空间booktbs2为脱机状态
alter tablespace booktbs2 offline
设置表空间booktbs2为联机状态
alter tablespace booktbs2 online

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

轩辕椿

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值