千家信息网

Oracle 11中怎么删除数据库

发表于:2024-11-20 作者:千家信息网编辑
千家信息网最后更新 2024年11月20日,这篇文章将为大家详细讲解有关Oracle 11中怎么删除数据库,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。1- 导入数据库的SID,如果没有定义的话
千家信息网最后更新 2024年11月20日Oracle 11中怎么删除数据库

这篇文章将为大家详细讲解有关Oracle 11中怎么删除数据库,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。

1- 导入数据库的SID,如果没有定义的话

export ORACLE_SID=database
2- 以操作系统认证连接数据库
[oracle@Oracle11 ~]$ sqlplus / as sysdba SQL*Plus: Release 11.2.0.1.0 Production on Mon Dec 1 17:38:02 2014Copyright (c) 1982, 2009, Oracle. All rights reserved.Connected to an idle instance.
3- 启动数据库实例
SQL> startup ORACLE instance started.Total System Global Area 3340451840 bytesFixed Size 2217952 bytesVariable Size 1828718624 bytesDatabase Buffers 1493172224 bytesRedo Buffers 16343040 bytesDatabase mounted.Database opened.
4- 关闭数据库
SQL> shutdown immediate; Database closed.Database dismounted.ORACLE instance shut down.
5- 启动独占模式
SQL> startup mount exclusive restrict ORACLE instance started. Total System Global Area 3340451840 bytesFixed Size 2217952 bytesVariable Size 1828718624 bytesDatabase Buffers 1493172224 bytesRedo Buffers 16343040 bytesDatabase mounted.
6- 删除数据库
SQL> drop database;
Database dropped. Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit ProductionWith the Partitioning, OLAP, Data Mining and Real Application Testing options

关于Oracle 11中怎么删除数据库就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

0