Home » Oracle » Oracle Database » Page 54

Oracle Database

An Oracle database is a collection of data treated as a unit. The purpose of a database is to store and retrieve related information. A database server is the key to solving the problems of information management.Many companies has implemented their data in Oracle. Most of them are mission critical. So Oracle database concept need to be very clear to manage these mission critical things. At the same time Oracle database needs to deliver high performance also. A database server also prevents unauthorized access and provides efficient solutions for failure recovery.

Below section I have tried to present all the important features in Oracle Database management

How to add any node to Oracle RAC cluster in 10g and 11g

Step 1: Prepare the server to be added a) Shared the Database Storage b) Shared the OCR and voting disk c) Check the new box for ssh connectivity Step 2: Run cluvfy cluvfy stage -post hwos -n SUN12OS Step 3: Add node to Cluster using the $ORACLE_HOME/oui/bin/addnode.sh from the node existing in cluster And choose …

How to add any node to Oracle RAC cluster in 10g and 11g Read More »

why-database-not-startup-automatic in 11gR2 cluster

There is one important attribute in 11gR2 cluster  ie. AUTO_START We can check it using following command $ crsctl status resource ora.TEST.db -p | grep AUTO_START AUTO_START=restore – always: Restarts the resource when the server restarts regardless of the state of the resource when the server stopped. – restore: Restores the resource to the same …

why-database-not-startup-automatic in 11gR2 cluster Read More »

Oracle Clusterware

What is Oracle cluster The Oracle Clusterware was introduced in 10.1 (initially called CRS ) and is the product that lies under RAC. It enables servers to operate together as if they are one server. Each server looks like any standalone server. However, each server has additional processes that communicate with each other so the …

Oracle Clusterware Read More »

Result cache in 11g

Prior to 10g, every query must be re-executed even if there is no change in the tables. This reexecution is unnecessary for few static tables and only caching using at client tools resolve this issue. But, in 11g, query results can be cached in SGA. Just to avoid confusion, this is much different from buffer …

Result cache in 11g Read More »

Scroll to Top