zoukankan      html  css  js  c++  java
  • oracle表空间不足扩容的方法

    1、查询当前用户的所属表空间

    select * from user_users;

    2、增加表空间有两种方法:

      以sysdba登陆进数据库

       语法:

      alter tablespace 表空间名称

      add datafile 表空间存放路径  size 表空间大小 autoextend on next 增长的大小 maxsize 空间最大值(如果不限制空间最大值就用unlimited)

      例如:

        alter tablespace vgsm
        add datafile 'c:oracleproduct10.2.0oradatavgsmvgsm_01.dbf'
        size 1024M autoextend on next 50M maxsize unlimited;

    查询表空间详情:

    select f.* from dba_data_files f where f.tablespace_name='VGSM'

      以修改表空间的方式增加:

      语法:

      alter database

      datafile 表空间文件路径

     AUTOEXTEND(自动扩展) ON NEXT 表空间满后增加的大小

    例如:

      alter database
     datafile 'C:ORACLEPRODUCT10.2.0ORADATAVGSMVGSM' AUTOEXTEND ON NEXT 200m

    查询表空间详情:

    select f.* from dba_data_files f where f.tablespace_name='VGSM'

  • 相关阅读:
    [React]核心概念
    [算法]复杂度分析
    [算法]移除指定元素&strSr()的实现
    [算法]合并链表&删除数组重复项
    php _weakup()反序列化漏洞
    Java 注解详解
    MyBatis入门
    Spring 事务管理
    Spring AOP
    Spring JDBC
  • 原文地址:https://www.cnblogs.com/hfliyi/p/3551338.html
Copyright © 2011-2022 走看看