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.
  • 相关阅读:
    ES数据-MySql处理Date类型的数据导入处理
    es搜索引擎
    Java Web学习路线
    九樱天下-观察期
    一些平常的总结
    ES搜索引擎-简单入门
    工作中异常的一些总结
    抽象和封装的一点总结
    python之路_django分页及session介绍
    python之路_django中母板及cookie介绍
  • 原文地址:https://www.cnblogs.com/Babylon/p/8607784.html
Copyright © 2011-2022 走看看