Posts

Showing posts from September, 2018

How to drop database manually

                                   Drop Oracle Database We can drop oracle database in 2 ways : 1. Using DBCA (Database Configuration Assistance) utility . 2. Drop Database Manually . In this Blog I am covering Drop oracle database manually. Please make sure you have proper backup before dropping database.   Connect to target database with sys user, and issue following query to check database mode:  sqlplus / as sysdba SQL*Plus: Release 11.2.0.4.0 Production on Tue Sep 11 12:27:53 2018 Copyright (c) 1982, 2013, Oracle. All rights reserved. Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64bit Production With the Partitioning, OLAP, Data Mining and Real Application Testing options  Step 1:  Normally shutdown your database: SQL> shut immediate; Database closed....