当前位置: 代码迷 >> 综合 >> dropnbsp;anbsp;database
  详细解决方案

dropnbsp;anbsp;database

热度:16   发布时间:2023-12-20 10:20:34.0
drop a database
删除一个数据库因包含他的数据文件,日志文件,控制文件,初始化参数文件等。
使用“DROP DATABASE ”语句可以删除所有的控制文件,及控制文件中的所列的其他文件
为了成功执行以上命令,all of the following conditions must apply:
    1.The database must be mounted and closed.
    2.The database must be mounted exclusively--not in shared mode.
    3.The database must be mounted as RESTRICTED.
drop database 命令不能删除归档日志文件,backup copies,backup 。oracle 推荐使用rman来删除这些文件。

????
If you used the Database Configuration Assi stant to create your database, you can use
that tool to delete (drop) your database and remove the files.
这句话有点疑惑,如果创建数据库时没使用dbca,能用dbca删除数据库。
  相关解决方案