oracle里的常用命令(二):表空间管理

oracle里的常用命令 
第二章:表空间管理
1.       create tablespaces
sql> create tablespace tablespace_name datafile 'c:/oracle/oradata/file1.dbf' size 100m,
sql> 'c:/oracle/oradata/file2.dbf' size 100m minimum extent 550k [logging/nologging]
sql> default storage (initial 500k next 500k maxextents 500 pctinccease 0)
sql> [online/offline] [permanent/temporary] [extent_management_clause]
 
2.       locally managed tablespace
sql> create tablespace user_data datafile 'c:/oracle/oradata/user_data01.dbf'
sql> size 500m extent management local uniform size 10m;
 
3.temporary tablespace
sql> create temporary tablespace temp tempfile 'c:/oracle/oradata/temp01.dbf'
sql> size 500m extent management local uniform size 10m;
 
4.change the storage setting
sql> alter tablespace app_data minimum extent 2m;
sql> alter tablespace app_data default storage(initial 2m next 2m maxextents 999);
 
5.taking tablespace offline or online
sql> alter tablespace app_data offline;
sql> alter tablespace app_data online;
 
6.read_only tablespace
sql> alter tablespace app_data read only|write;
 
7.droping tablespace
sql> drop tablespace app_data including contents;
 
8.enableing automatic extension of data files
sql> alter tablespace app_data add datafile 'c:/oracle/oradata/app_data01.dbf' size 200m
sql> autoextend on next 10m maxsize 500m;
 
9.change the size fo data files manually
sql> alter database datafile 'c:/oracle/oradata/app_data.dbf' resize 200m;
 
10.Moving data files: alter tablespace
sql> alter tablespace app_data rename datafile 'c:/oracle/oradata/app_data.dbf'
sql> to 'c:/oracle/app_data.dbf';
 
11.moving data files:alter database
sql> alter database rename file 'c:/oracle/oradata/app_data.dbf'
sql> to 'c:/oracle/app_data.dbf';
 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值