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

    Examine the commands executed in a DBA session:
    SQL> CREATE BIGFILE TABLESPACE MRKT
    2 DATAFILE '/u01/app/oracle/oradata/orcl/mrkt.dbf' size 10M LOGGING
    3 EXTENT MANAGEMENT LOCAL SEGMENT SPACE MANAGEMENT AUTO;
    Tablespace created.
    SQL> ALTER DATABASE DEFAULT TABLESPACE MRKT;
    Database altered.
    Which two statements are true regarding the MRKT tablespace? (Choose two.)
    A.No more data files can be added to the tablespace.
    B.Segment space is managed by free lists in the tablespace.
    C.A user created without being assigned a default tablespace uses this tablespace.
    D.The tablespace can be dropped with the current setting with segments present in it.


    BIGFILE 只能有一个数据文件,A 对
    ALTER DATABASE DEFAULT TABLESPACE MRKT;将默认表空间修改成 MRKT,C 对
    创建 MRKT 的时候,Oracle 自动创建本地管理表空间和自动段空间管理(ASSM)。 B 错
    默认表空间不能直接 drop,D 错

     

  • 相关阅读:
    docker安装kafka
    Prometheus警报
    MongoDB介绍
    SpringMvc中几个注解
    无DNS安装VCSA
    互联网本质
    什么是领导力
    58沈剑_一分钟专栏
    以数据库思维理解区块链
    区块链的4个实际应用
  • 原文地址:https://www.cnblogs.com/Babylon/p/8037252.html
Copyright © 2011-2022 走看看