zoukankan      html  css  js  c++  java
  • oracle 修改默认临时表空间

    --查询当前数据库默认临时表空间名

    select * from database_properties where property_name='DEFAULT_TEMP_TABLESPACE';

    --创建新的临时表空间

    create temporary tablespace temp01   tempfile '/oradata/temp01.dbf' size 2G autoextend on;

    --修改默认表空间为新建的临时表空间

    alter database default temporary tablespace temp01;

    --查看用户当前使用的临时表空间

    select username,temporary_tablespace from dba_users;

    --删除原来的临时表空间

    drop tablespace temp including contents and datafiles;

    --查看所有表空间名确认临时表空间是否已删除

    select tablespace_name from dba_tablespaces; 

    扩展:

    --临时表空间添加数据文件

    alter tablespace temp01 add tempfile '/oradata/temp02.dbf' size 2G autoextend on;

    --修改临时表空间数据文件大小

    alter database tempfile '/oradata/temp02.dbf' resize 4G;

     

  • 相关阅读:
    安卓AlertDialog的使用
    蚂蚁的腿
    年龄排序
    Digital Roots
    小明的存钱计划
    不高兴的小明
    管闲事的小明
    小明的调查作业
    爱摘苹果的小明
    小明的难题
  • 原文地址:https://www.cnblogs.com/orcl-2018/p/13755630.html
Copyright © 2011-2022 走看看