zoukankan      html  css  js  c++  java
  • 052-150

    The user HR receives the following error while inserting data into the TTK table:
    ERROR at line 1:
    ORA-01653: unable to extend table HR.TTK by 128 in tablespace SMD
    Upon investigation, you find that SMD is a small file tablespace. Which three action would allow the user
    to insert data? (Choose three.)
    A.Add a data file to the SMD tablespace.
    B.Add a data file to the temporary tablespace associated with the user HR.
    C.Resize the data file associated with the SMD tablespace to make it larger.
    D.Alter the data file associated with the SMD tablespace to grow automatically.
    E.Change the segment space management for the SMD tablespace to automatic.

    增大表空间有三种方法:
    1、增加一个文件:ALTER TABLESPACE lmtbsb ADD DATAFILE '/u02/Oracle/data/lmtbsb02.dbf' SIZE 1M;
    2、改变原来数据文件的大小:ALTER DATABASE DATAFILE '/u02/oracle/rbdb1/stuff01.dbf' RESIZE 300M;
    3、设置自动增长:ALTER TABLESPACE users ADD DATAFILE '/u02/oracle/rbdb1/users03.dbf' SIZE 10M AUTOEXTEND ON NEXT 512K MAXSIZE 250M;


  • 相关阅读:
    CF1458D
    CF1415F
    CF612F
    部分博客请移步Gitbub
    Vlc视频插件遮挡弹出框
    kubernetes容器编排YAML详解
    Kubernetes核心技术之Pod
    Kubeadm搭建K8S集群
    博客配套工程公开
    Modelsim联合Matlab搭建FPGA图像仿真平台
  • 原文地址:https://www.cnblogs.com/Babylon/p/8037508.html
Copyright © 2011-2022 走看看