SOLVED

ORA-12719: Operation Requires Database is in RESTRICTED Mode

Asked by OracleDba13 viewsoracle
1
2
3
4
5
ORA-12719: Operation Requires Database is in RESTRICTED Mode

PROBLEM:

While dropping a database,  in mount stage got this error.
#oracle#error

Solutions(1)

Accepted Solution
1
2
3
4
5
6
7
8
9
10
11
12
13
So drop a database we need to start the database in exclusive restrict mode.

startup mount exclusive restrict

drop database;

Another way to drop database is:

startup mount

alter system enable restricted session;

drop database
OracleDba

Post Your Solution