$ srvctl start database -d dbName
$ srvctl stop database -d dbName
$ srvctl start instance -d dbName -i dbName1
$ srvctl start instance -d dbName -i dbName2$ srvctl stop instance -d dbName -i dbName1
$ srvctl stop instance -d dbName -i dbName2
oracle howto avoid query oracle9i database solution 11 rdbms sql 92 tutorial statement 11g ddl search Oracle12c hints ask learn how sqlplus hint tuning dml slow query job max min decode outer join in explained how to example test production examples oracle11g oracle10g instruction command select update insert delete 12c merge pl/sql pl sql 2008 parse tsql convert migrate ora create tips table view tutorial speed find jobs flashback cluster find 12
To check the quota on tablespace for users you can use the following sql:
select username,
tablespace_name,bytes/(1024*1024) as used_mb,
max_bytes/(1024*1024) as max_mb
from dba_ts_quotas;
ORA-01452: | cannot CREATE UNIQUE INDEX; duplicate keys found |
Cause: | A CREATE UNIQUE INDEX statement specified one or more columns that currently contain duplicate values. All values in the indexed columns must be unique by row to create a UNIQUE INDEX. |
Action: | If the entries need not be unique, remove the keyword UNIQUE from the CREATE INDEX statement, then re-execute the statement. If the entries must be unique, as in a primary key, then remove duplicate values before creating the UNIQUE index. |