Most Popular Databases

Creating a RAC Test Environment in Oracle 12c

Oracle RAC environments should first be created for testing and proving concepts for how the failover works for different applications. The RAC test environments should continue to be available for testing for production systems because different workloads and failover can’t be tested against a single node. After the installs of the Oracle Clusterware and database […]

Read More

Understanding Oracle 12c Real Application Clusters (RAC)

Oracle Real Application Clusters (RAC) provides a database environment that is highly available as well as scalable. If a server in the cluster fails, the database instance will continue to run on the remaining servers or nodes in the cluster. With Oracle Clusterware, implementing a new cluster node is made simple. RAC provides possibilities for […]

Read More

Learn About Backup Retention Strategies in Oracle 12c

Backups are very important, but they have a shelf life, too. You cannot just keep taking backups and retain all of them forever. You need to decide how long you would like to retain your backups before you can safely remove them in order to make space for more backups. Storage on a disk or […]

Read More

Using Oracle RMAN to Restore

When you create backups with RMAN, they get created in one or more backupsets; these backupsets are in proprietary format. In order to use them again for recovery, first you need to extract them from this proprietary format. This process is called restore. You use the RESTORE command of RMAN to restore the backup. For […]

Read More

Back to basics with Resource Governor IO in SQL Server 2014

SQL Server Resource Governor concepts have been in existence since the SQL Server 2008 versions. With every version, there have been new additions, and it has steadily gotten better and better. It started with CPU throttling and memory throttling; now, with SQL Server 2014, they introduced IO throttling. There are three important concepts related to Resource Governor: Resource […]

Read More

Code Instrumentation Best Practices for Oracle Databases

 It is critical to know when to use the various types of code instrumentation features, where to place them, and, most importantly, what you are trying to achieve by instrumenting your code. Achievable goals usually target two groups of problems: Inefficient debugging Poor understanding of resource utilization The majority of existing IT system professionals spend […]

Read More

How Switching to PL/SQL Can Simplify Oracle Performance Tuning

Knowing how to select appropriately between SQL-based and PL/SQL-based solutions is one of the most important skills in Oracle database development. Let’s look at two less common examples of using PL/SQL in actual systems development. The first example illustrates the notion of performance tuning by going outside of the regular solution patterns, while the second […]

Read More

About Oracle Database 12c RMAN

Recovery Manager (RMAN) is the tool for backup and recovery of Oracle databases. RMAN is client software that connects to a target database and performs backups or recovery on it. RMAN always stores data about itself and its operations in the database control files as well as a special schema in another database. The best […]

Read More