zoukankan      html  css  js  c++  java
  • 052-212(新增70题2018)

    You need to rename a data file of a tablespace.

    How would you perform this?

    A. bring the database to the NOMOUNT state, rename the data file using the operating system, and then execute the: ALTER TABLESPACE ... RENAME DATAFILE ... statement

    B. take the tablespace that contains the data file offline, rename the data file using the operating system, execute the: ALTER DATABASE ... RENAME DATAFILE ... statement, and bring the tablespace online

    C. take the tablespace that contains the data file offline, rename the data file using the operating system, execute the: ALTER TABLESPACE ... RENAME DATAFILE ... statement, and bring the tablespace online

    D. make the tablespace that contains the data file read only, rename the data file using the operating system, execute the: ALTER TABLESPACE ... RENAME DATAFILE ... statement to rename the data file, and make the tablespace read/write

    Answer: C

    Renaming and Relocating Data Files

    You can rename and relocate data files in one or more tablespaces using the ALTER DATABASE RENAME FILE statement. This method is the only choice if you want to rename or relocate data files of several tablespaces in one operation. You must have the ALTER DATABASE system privilege.

    Note:

    To rename or relocate data files of the SYSTEM tablespace, the default temporary tablespace, or the active undo tablespace you must use this ALTER DATABASE method because you cannot take these tablespaces offline.

    To rename data files in multiple tablespaces, follow these steps.

    1. Ensure that the database is mounted but closed.

      Note:

      Optionally, the database does not have to be closed, but the data files (or temp files) must be offline.
  • 相关阅读:
    css 如何让背景图片拉伸填充避免重复显示
    CDHtmlDialog 基本使用
    RES协议
    Sata win7 热插拔(AHCI)
    __argc和__argv变量
    MFC进度条刷新处理
    SVN强制注释
    自动build服务器 CruiseControl.NET
    opencv Mat 像素操作
    std::string 用法
  • 原文地址:https://www.cnblogs.com/Babylon/p/8607784.html
Copyright © 2011-2022 走看看