About Us

RSInfoMinds, a web based IT Training and Consultancy firm. It is established with high dreams in training people in IT Infrastructure Field. We provide Online and Class Room training in various fields of IT Infrastructure Management.

Join Us: http://www.facebook.com/RSInfoMinds
Mail Us: rsinfominds@gmail.com
Twitter: @RSInfoMinds

We are specialized in the below courses:

Redhat Linux Admin Redhat Linux Cluster
Redhat Virutualization IBM AIX Admin
IBM AIX Virtualization IBM AIX Cluster
HP Unix Admin HP Unix Cluster
HP Unix Virtualization Shell Scripting
Veritas Volume Manager Veritas Cluster
Oracle Core DBA VMWare


We provide training in such a way, So that you get in depth knowledge on the Courses you look for.

And we ensure you are very confident from each and every Techincal aspect that the IT Industry needs and expects from you.

We also conduct Workshops on the latest technology and the real time faculties sharing their work experiences to make you the best.

Thursday 19 June 2014

ORA-00845: MEMORY_TARGET not supported on this system

When you get the message ORA-00845: MEMORY_TARGET not supported on this system while starting the DB.

It means you are running short of memory for that instance.

1) Increase RAM on your machine.

2) Else rework on the memory assigned for your database.

3) Else stop other database and start the needed one.

Here I get a error while starting a DB called "ORCL"

SQL> startup;
ORA-00845: MEMORY_TARGET not supported on this system
SQL>

Since I already have a DB called "TEST". I am stopping it and starting the "ORCL".

SQL> select name from v$database;

NAME
---------
TEST

SQL> shutdown immediate;
Database closed.
Database dismounted.
ORACLE instance shut down.
SQL>


SQL> startup;
ORACLE instance started.

Total System Global Area  835104768 bytes
Fixed Size                  2217952 bytes
Variable Size             536872992 bytes
Database Buffers          293601280 bytes
Redo Buffers                2412544 bytes
Database mounted.
Database opened.
SQL> select name from v$database;

NAME
---------
ORCL

SQL>



No comments:

Post a Comment