Posts

Showing posts from June, 2016

12c new features

Oracle Database 12c New Features - DBA Let us discuss new features of Oracle Database 12c Release 1.(12.1). Oracle says there are 500+ new features incorporated in 12c. We will see very few which are going to make a change in database world. Multitenant architecture: Pluggable databases (PDBs) and Container Database (CDB) is the new architecture for 12c.We can have may PDBs in a single database occurrence (CDB).PDBs are just like ordinary 11g or 10g databases. This architecture reducing the total cost of operations and improving the functionalists.It has other benefits like it is very easy to clone the database and new database creation.By doing one patching all PDBs will get upgraded. We can patch a PDB by unplug and plug in to different CDB. There is one set of background processes shared by the root and all PDBs.  There is a single redo log and a single control file for an entire CDB  There are single SGA shared by all pluggable databases. However, we can d...

basic dba task

IMPORTANT DATABASE TASKS   @Task 1: Evaluate the Database Server hardware >uname >uname -i  show the host name >uname -m >uname -a >lscpu   command which cpu in your machine >lsblk  command which show cpu >lsblk -a >fdisk -l >dmidecode -t processor @task 2 >database installation task 10.1.0.1.0 1 major database release number 2 database maintenance number 3 application server release number 4 component server release number 5 platform release number Checking Your Current Release Number SELECT * FROM PRODUCT_COMPONENT_VERSION; @Task 3: Plan the Database As the database administrator, you must plan: The logical storage structure of the database The overall database design A backup strategy for the database It is important to plan how the logical storage structure of the database will affect system performance and various database management operations. For example, before creating any tablespaces for your...