Oracle 11中怎么删除数据库

开发技术 作者:Leah 2024-03-27 19:10:02
这篇文章将为大家详细讲解有关Oracle 11中怎么删除数据库,文章内容质量较高,因此小编分享给大家做个参考,希望大家阅读完这篇文章后对相关知识有一定的了解。1...

这篇文章将为大家详细讲解有关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;<br>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中怎么删除数据库就分享到这里了,希望以上内容可以对大家有一定的帮助,可以学到更多知识。如果觉得文章不错,可以把它分享出去让更多的人看到。

原创声明
本站部分文章基于互联网的整理,我们会把真正“有用/优质”的文章整理提供给各位开发者。本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
本文链接:http://www.jiecseo.com/news/show_986.html
oracle