blog Oracle blog in Spanish

Hide / obfuscate PL/SQL code (WRAP)

Sometimes it is necessary to hide (obfuscate) our PL/SQL source code. This utility should be used judiciously, it is not about hiding all the available code, but only that which for security reasons, should not be shared with third parties. The method used has been traditionally performed with the WRAP tool, which we detail below

Add disks to ASM

With the Grid environment variables set, run the following command: ./u01/app/oracle/21.0.0/grid/bin/asmca The ASM graphical configuration screen will appear; click on the "Disk Groups" option. Select the disks that will belong to the disk group you are creating. These are the disks listed as "candidates" in the second column. Select disks of the same size.

Secure External Password Store

In many cases, it is necessary or advisable to connect to the database quickly and, above all, securely, without the database connection details being visible. One example, as indicated on the Oracle website, is when we connect to the database from scripts.

Restore a table with RMAN

In version 12c, many very useful new features were introduced. Among them is the ability to recover a table using RMAN. This feature applies to both Multitenant Multitenant architectures, allowing you to recover a table from a PDB necessary. The official note link be found at the following link : RMAN

How to Create a PDB

CREATE AN APPLICATION PDB "Application containers" are a feature of Oracle Database version 12.2. An "application container" is an optional CDB component used to store data and metadata for an application. A CDB can have zero or more application containers. Each application consists of a configuration, metadata, and shared objects.
Oracle ACE