Extreme Oracle DB Infrastructure As A Service

Size: px
Start display at page:

Download "Extreme Oracle DB Infrastructure As A Service"

Transcription

1 Extreme Oracle DB Infrastructure As A Service COLLABORATE 14 IOUG Forum Charles Kim, Viscosity North America ABSTRACT Learn the secrets of the trade to rapidly provisioning Oracle DB Infrastructure-As-A-Service. This extreme session will cover topics of delivering Linux-As-S-Service, RAC-As-A-Service, ASM-As-A-Service, Database-As-A-Service, Backup-As-A- Service, and even Data-Guard-As-A-Service. Advanced techniques to deploy enterprise RAC and non-rac database deployments in an automated fashion will be shared. Save days and even weeks of deploy time by attending this session. There is no reason why you as a DBA or Architect, should not be able to deploy a fully patched RAC environment from bare metal Linux and create a RAC database in less than one hour. Anyone deploying RAC or even non-rac will learn the secret sauce and knowledge of how to properly deploy mission critical systems that is repeatable and consistent. Learn to deploy a fully patched ( or with PSU x or 12.1 with PSU x) two node RAC in less than one hour. Learn how to automate database builds and to leverage golden image database templates. We can't forget about multi-tenant deployment of Oracle 12c Pluggable Databases. Learn how to deploy pluggable databases (PDB) and to migrate PDBs and significantly increase your database consolidation density. The details of adding nodes to an existing clusters and removing nodes from the cluster will also be disseminated. TARGET AUDIENCE Any DBA, System Administrators, or Architect who want to save time from doing mundane database administrative tasks and do things more important should attend this session. EXECUTIVE SUMMARY DBAs start to work on RAC or stand-alone database builds, they are given a server as a blank canvas. We have to mold what we have and create an end product that has to become a masterpiece that performs well. We need to tweak from the Operating System level and work down the stack. In this two hour session, our goal is to demonstrate how you can rapidly provide: Linux as a Service RAC as a service ASM as a service Database as a service (DBaaS). We will proceed to the other MAA components and look at how to rapid provide Backup and Recovery as a service and Data Guard as a service. And if you are licensed for the multitenant option or are just curious to learn more about consolidation and achieving a deeper level of consolidation, we will extend DBaaS to encompass the pluggable database. LINUX AS A SERVICE The greatest advantage of choosing Oracle Enterprise Linux (Oracle Linux) over Red Hat Enterprise Linux was that Oracle provides a single RPM to literally setup and configure the Linux environment which includes setup of pertinent kernel parameters, unix accounts, unix groups, home directories, and most important, all the RPMs with all the dependencies. Earlier in 2009, Oracle launched their public yum repository which offers a free and convenient way to install packages from the Enterprise Linux. Obviously, the public yum server is offered with limited support. 1 P age Extreme Oracle DB Infrastructure as a Service

2 Starting with Oracle Database 11g Release 2 and Oracle Linux 6 including Unbreakable Enterprise Kernel (UEK), Oracle replaced the oracle-validated RPM with the oracle-rdbms-server-11gr2-preinstall RPM (the Oracle RDBMS Server 11gR2 Preinstall RPM) to pre-configure the Linux operating system for installation of Oracle Grid Infrastructure and Database. To successfully install the Oracle Database 11g Release 2 on Oracle Linux 6, there are quite a bit of pre-installation and configuration that have to be met. Using the Oracle RDBMS Server 11gR2 Pre-install RPM, you can complete majority of the pre-installation configuration tasks and automate the Linux server build. If you are leveraging Red Hat Linux, the public yum repository was considered to be of no or little use. In this section, we will show you how to leverage Oracle s oracle-rdbms-server-11gr2-preinstall or oracle-rdbms-server-12c-preinstall RPM for your Red Hat environment as still maintain your support and maintenance from Red Hat. CONFIGURE ORACLE-RDBMS-SERVER-12C-PREINSTALL FOR RED HAT In this section, you will learn how to configure the oracle-rdbms-server-12c-preinstall RPM so that we can leverage this RPM on Red Hat Linux. First install two RPMs to build both binary/source software packages and to aid in development of RPM packages. yum install rpm-build rpmdevtools y Create linux user called mockbuild. We need to keep the same username that oracle used to compile it s package to avoid a rpmbuild error: useradd mockbuild -p mockbuild -m -s /bin/bash su to the mockbuild user and execute the rpmdev-setuptree command: [root@duppy yum.repos.d]# su - mockbuild [mockbuild@duppy ~]$ rpmdev-setuptree The rpmdev-setuptree program will create the ~/rpmbuild directory and a set of subdirectories (e.g. SPECS and BUILD), which you will use for creating your packages. [mockbuild@duppy ~]$ ls -l rpmbuild total 20 drwxrwxr-x. 2 mockbuild mockbuild 4096 Jan 26 19:12 BUILD drwxrwxr-x. 2 mockbuild mockbuild 4096 Jan 26 19:12 RPMS drwxrwxr-x. 2 mockbuild mockbuild 4096 Jan 26 19:12 SOURCES drwxrwxr-x. 2 mockbuild mockbuild 4096 Jan 26 19:12 SPECS drwxrwxr-x. 2 mockbuild mockbuild 4096 Jan 26 19:12 SRPMS We will try a mock installation of the source RPM [mockbuild@rh6u3 ~]$ rpm -ivh oracle-rdbms-server-11gr2-preinstall el6.src.rpm warning: oracle-rdbms-server-12cr1-preinstall el6.src.rpm: Header V3 RSA/SHA256 Signature, key ID ec551f03: NOKEY 1:oracle-rdbms-server-12c########################################### [100%] Attempting to install the source rpm with the rpm ihv command will returns the prompt back instantly. We must check the.spec file located in the rpmbuild/spec subdirectory We need to remove the line in the SPEC file that has the hard dependency on the Unbreakable Enterprise Kernel (uek) [mockbuild@duppy ~]$ vi rpmbuild/specs/oracle-rdbms-server-12cr1-preinstall.spec #System requirement Requires:procps module-init-tools ethtool initscripts Requires:bc bind-utils nfs-utils util-linux-ng pam Requires:xorg-x11-utils xorg-x11-xauth # -- get rid of the line below # Requires:kernel-uek Requires:smartmontools 2 P age Extreme Oracle DB Infrastructure as a Service

3 Next, execute the rpmbuild to create the.rpm file which will create the binary package used to encapsulate software to be installed. ~]$ rpmbuild -ba rpmbuild/specs/oracle-rdbms-server-12cr1-preinstall.spec The -ba options will build source and binary packages from. We will build binary and source packages (after doing the %prep, %build, and %install stages). Executing(%prep): /bin/sh -e /var/tmp/rpm-tmp.9guahq + umask cd /home/mockbuild/rpmbuild/build + echo RPM_BUILD_ROOT=/home/mockbuild/rpmbuild/BUILDROOT/oracle-rdbms-server-12cR1-preinstall el6.x86_64 RPM_BUILD_ROOT=/home/mockbuild/rpmbuild/BUILDROOT/oracle-rdbms-server-12cR1-preinstall el6.x86_64 + cd /home/mockbuild/rpmbuild/build + rm -rf oracle-rdbms-server-12cr1-preinstall /bin/tar -xf - + /usr/bin/gzip -dc /home/mockbuild/rpmbuild/sources/oracle-rdbms-server-12cr1-preinstall-1.0.tar.gz + STATUS=0 + '[' 0 -ne 0 ']' + cd oracle-rdbms-server-12cr1-preinstall /bin/chmod -Rf a+rx,u+w,g-w,o-w. + exit 0 Executing(%build): /bin/sh -e /var/tmp/rpm-tmp.evgov9 + umask cd /home/mockbuild/rpmbuild/build + cd oracle-rdbms-server-12cr1-preinstall exit 0 Executing(%install): /bin/sh -e /var/tmp/rpm-tmp.yoxmat + umask cd /home/mockbuild/rpmbuild/build + cd oracle-rdbms-server-12cr1-preinstall rm -rf /home/mockbuild/rpmbuild/buildroot/oracle-rdbms-server-12cr1-preinstall el6.x86_64 + mkdir -p -m 755 /home/mockbuild/rpmbuild/buildroot/oracle-rdbms-server-12cr1-preinstall el6.x86_64/etc/sysconfig/oracle-rdbms-server-12cr1-preinstall + mkdir -p -m 755 /home/mockbuild/rpmbuild/buildroot/oracle-rdbms-server-12cr1-preinstall el6.x86_64/usr/bin + mkdir -p -m 755 /home/mockbuild/rpmbuild/buildroot/oracle-rdbms-server-12cr1-preinstall el6.x86_64/etc/rc.d/init.d + mkdir -p -m 755 /home/mockbuild/rpmbuild/buildroot/oracle-rdbms-server-12cr1-preinstall el6.x86_64/etc/security/limits.d + mkdir -p -m 700 /home/mockbuild/rpmbuild/buildroot/oracle-rdbms-server-12cr1-preinstall el6.x86_64/var/log/oracle-rdbms-server-12cr1-preinstall/results + install -m 700 oracle-rdbms-server-12cr1-preinstall-verify /home/mockbuild/rpmbuild/buildroot/oracle-rdbmsserver-12cr1-preinstall el6.x86_64/etc/sysconfig/oracle-rdbms-server-12cr1-preinstall + install -m 700 oracle-rdbms-server-12cr1-preinstall-verify /home/mockbuild/rpmbuild/buildroot/oracle-rdbmsserver-12cr1-preinstall el6.x86_64/usr/bin + install -m 600 oracle-rdbms-server-12cr1-preinstall.param /home/mockbuild/rpmbuild/buildroot/oracle-rdbmsserver-12cr1-preinstall el6.x86_64/etc/sysconfig/oracle-rdbms-server-12cr1-preinstall + install -m 700 oracle-rdbms-server-12cr1-preinstall-firstboot /home/mockbuild/rpmbuild/buildroot/oracle-rdbmsserver-12cr1-preinstall el6.x86_64/etc/rc.d/init.d + touch /home/mockbuild/rpmbuild/buildroot/oracle-rdbms-server-12cr1-preinstall el6.x86_64/etc/security/limits.d/oracle-rdbms-server-12cr1-preinstall.conf + ln -f -s /etc/sysconfig/oracle-rdbms-server-12cr1-preinstall/oracle-rdbms-server-12cr1-preinstall-verify /home/mockbuild/rpmbuild/buildroot/oracle-rdbms-server-12cr1-preinstall el6.x86_64/usr/bin/oracle-rdbmsserver-12cr1-preinstall-verify + /usr/lib/rpm/check-rpaths /usr/lib/rpm/check-buildroot + /usr/lib/rpm/brp-compress + /usr/lib/rpm/brp-strip + /usr/lib/rpm/brp-strip-static-archive + /usr/lib/rpm/brp-strip-comment-note Processing files: oracle-rdbms-server-12cr1-preinstall el6.x86_64 warning: File listed twice: /etc/sysconfig/oracle-rdbms-server-12cr1-preinstall/oracle-rdbms-server-12cr1- preinstall-verify warning: File listed twice: /etc/sysconfig/oracle-rdbms-server-12cr1-preinstall/oracle-rdbms-server-12cr1- preinstall.param Provides: config(oracle-rdbms-server-12cr1-preinstall) = el6 oracle-rdbms-server-12cr1-preinstall = 1.0 Requires(interp): /bin/sh /bin/sh /bin/sh /bin/sh 3 P age Extreme Oracle DB Infrastructure as a Service

4 Requires(rpmlib): rpmlib(compressedfilenames) <= rpmlib(payloadfileshaveprefix) <= rpmlib(versioneddependencies) <= Requires(pre): /bin/sh /etc/redhat-release Requires(post): /bin/sh Requires(preun): /bin/sh Requires(postun): /bin/sh Requires: /bin/bash Checking for unpackaged file(s): /usr/lib/rpm/check-files /home/mockbuild/rpmbuild/buildroot/oracle-rdbmsserver-12cr1-preinstall el6.x86_64 Wrote: /home/mockbuild/rpmbuild/srpms/oracle-rdbms-server-12cr1-preinstall el6.src.rpm Wrote: /home/mockbuild/rpmbuild/rpms/x86_64/oracle-rdbms-server-12cr1-preinstall el6.x86_64.rpm Executing(%clean): /bin/sh -e /var/tmp/rpm-tmp.0rnmi5 + umask cd /home/mockbuild/rpmbuild/build + cd oracle-rdbms-server-12cr1-preinstall rm -rf /home/mockbuild/rpmbuild/buildroot/oracle-rdbms-server-12cr1-preinstall el6.x86_64 + exit 0 Confirm that the RPM was successfully created in the rpmbuild/rpms/x86_64 subdirectory ls -lr rpmbuild/rpms/x86_64 rpmbuild/rpms/x86_64: total 16 -rw-rw-r--. 1 mockbuild mockbuild Jan 26 19:21 oracle-rdbms-server-12cr1-preinstall el6.x86_64.rpm You need to save this RPM as it will be the toolkit for you to provision Linux As A Service on bare-metal servers. We can simply perform the bare minimum install and use the RPM that we created to rapid provision a Linux server ready for Oracle installation. As root, you can install the 12cR1 preinstall RPM. PROVISION RED HAT SERVER WITH ORACLE-RDBMS-SERVER-12C-PREINSTALL When you install Red Hat, you can do a minimal installation of Red Hat 6, or any other installation of your choice (Desktop, Workstation, etc). For security purpose, most production environments run in runlevel 3 and so the minimal installation should be the preferred installation of choice. In this section, we will demonstrate how you can re-purpose the oracle-rdbms-server-12c-preinstall RPM on Red Hat 6 the same way you would do for Oracle Linux 6. Simply install the oracle-rdbms-server-preinstall RPM and your OS will be completely configured to install/configure Grid Infrastructure and Oracle database software. On Red Hat, we will want to perform a localinstall to install a set of local rpm files. yum localinstall ~mockbuild/rpmbuild/rpms/x86_64/oracle-rdbms-server-12cr1-preinstall el6.x86_64.rpm Installed: oracle-rdbms-server-12cr1-preinstall.x86_64 0: el6 Dependency Installed: cloog-ppl.x86_64 0: el6 compat-libcap1.x86_64 0: compat-libstdc x86_64 0: el6 cpp.x86_64 0: el6 gcc.x86_64 0: el6 gcc-c++.x86_64 0: el6 ksh.x86_64 0: el6 libxmu.x86_64 0: el6 libxxf86dga.x86_64 0: el6 libxxf86misc.x86_64 0: el6 libaio-devel.x86_64 0: el6 libdmx.x86_64 0: el6 libstdc++-devel.x86_64 0: el6 mpfr.x86_64 0: el6 ppl.x86_64 0: el6 xorg-x11-utils.x86_64 0:7.5-6.el6 xorg-x11-xauth.x86_64 1: el6 4 P age Extreme Oracle DB Infrastructure as a Service

5 Complete! We can now proceed with the Oracle Grid Infrastructure and Database 12c. BACKGROUND RAC Provisioning is extremely simple if you know the secret sauce. If you know the secret sauce, you will quickly learn that we do not install and configure RAC software and any of the patches anymore. We can simply clone the RAC environment from one cluster to the other. The beauty of cloning the RAC environment (both Grid Infrastructure and Database) is that we are taking a pristine golden image platform and cloning that to other environments. A pristine environment will consist of a fully tested and integrated stack. For example, as of January of 2014, Oracle support released , and PSU. Please review MOS ID: : Quick Reference to Patch Numbers for Database PSU, SPU(CPU), Bundle Patches and Patchsets for future updates. Non-RAC environments are even easier to deploy in an automated fashion, as we do not have to worry about components like shared disks, voting disks, cluster registry, networks for private interconnect and public network traffic. If you are leveraging ASM in a non-rac environment, maintenance of the Grid Infrastructure poses a little overhead to the effort. In a non-rac environment, we can tar and un-tar Oracle Homes and simply plug them in to the new server. We can do this with RAC also but more infrastructure steps are required and pre-configuration steps are necessary. In this paper, we will discuss how we can easily instantiate the non-rac environment first; then we will take the same concept and instantiate a RAC environment. STANDARDIZATION Standardization is crucial to effective and rapid Oracle GI and database software provisioning. As part of the corporate standards, DBAs need to standardize on common directory structures for ORACLE_HOME for Grid Infrastructure, ORACLE_HOME for the Database Home, ORACLE_BASE and INVENTORY_LOCATION. This same logic applies to naming ASM disks (whether you use udev rules or ASMLIB), network interface names, bonded interface names, VIP names, private hostnames, SCAN names, cluster names, and so on. The more you standardize, easier the automation will be and you will be able to achieve the most important aspect of automation, consistent reliable builds. On the database front, standardization for database names, ASM disk groups, initialization parameters, database accounts, stored procedures, triggers, and so on will enable you to automate a consistent and reliable database build. PREPARE RAC AS A SERVICE The first thing that we have to do is prepare the environment so that we can capture an image that we want to replicate. We want to capture an image of the operating system binary and a golden copy of the database that we want to provision to new environments that we will create. Non-RAC and RAC database provisioning starts with cloning the Grid Infrastructure and Oracle Home binaries. To clone our database environment, we must copy the software stack from the source to the target system that we are trying to provision. The complete binary code that make up the Grid Infrastructure Home and Oracle Home can be archived in a single TAR streaming archive file. We will want to clean up various log and output directories. This will not only clean up our archive file but also reduce the archive in size. Instead of cleaning up various log and output directories, we can simply exclude them while we are creating our archive file. This can be accomplished with the X option. export GRID_HOME=/u01/app/grid/ cd ${GRID_HOME} tar cpfx - ${EXCLUDE_LIST} * > ${NFS_DIR}/Grid.tar 5 P age Extreme Oracle DB Infrastructure as a Service

6 The environment variables for EXCLUDE_LIST and NFS_DIR are defined in a master configuration file. You will want to set the values for these environment variables to fit your environment with the export syntax (i.e. EXCLUDE_LIST=/u01/app/oracle/rac/EXCLUDE_GRID.txt and export NFS_DIR=/nfsdir/oracle). Here s the content of the ${EXCLUDE_LIST} where ORACLE_DB_HOME should be replaced by $ORACLE_HOME and Grid_home should be replaced by $GRID_HOME or $ORACLE_CRS_HOME: ${GRID_HOME}/host_name ${GRID_HOME}/log/host_name ${GRID_HOME}/gpnp/host_name ${GRID_HOME}/crf/* ${GRID_HOME}/log/diag/asmcmd/* ${GRID_HOME}/log/diag/tnslsnr/* ${GRID_HOME}/auth/{crs,css,evm,ohasd}/* ${GRID_HOME}/ccr/hosts/* ${GRID_HOME}/cdata/* ${GRID_HOME}/cfgtoollogs/opatch/lsinv/* ${GRID_HOME}/crs/install/*.txt ${GRID_HOME}/crs/init/* ${GRID_HOME}/evm/init/* ${GRID_HOME}/evm/log/* ${GRID_HOME}/install/*.log ${GRID_HOME}/srvm/admin/oratab.bak.* ${GRID_HOME}/network/admin/*.bak.* ${GRID_HOME}/network/admin/*.ora ${GRID_HOME}/ohasd/init/* ${GRID_HOME}/root.sh ${GRID_HOME}/*ouibak* *.ouibak *.ouibak1 *.log For RAC environments, there is a small but extremely important pre-requisite to creating an archive file for the Grid Infrastructure software directory. You must first unlock the Grid Infrastructure. Unlocking the Grid Infrastructure involves shutting down the cluster and changing file/directory permissions so that Oracle will have read/write permissions for all the necessary files. To unlock the GI Home, we issue the command: rootcrs.pl unlock from the $GRID_HOME/crs/install directory. Executing the rootcrs.pl command with the unlock option will shutdown the cluster and yield the following output: [root@rhel59dra install]#./rootcrs.pl -unlock Using configuration parameter file:./crsconfig_params CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'rhel59dra' CRS-2673: Attempting to stop 'ora.crsd' on 'rhel59dra' CRS-2790: Starting shutdown of Cluster Ready Services-managed resources on 'rhel59dra' CRS-2673: Attempting to stop 'ora.listener_scan3.lsnr' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.rhel59drb.vip' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.listener_scan1.lsnr' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.fra.dg' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.ocr_vote.dg' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.registry.acfs' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.dtccrac.db' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.cvu' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.lsnr_gtrrac.lsnr' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.listener.lsnr' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.listener_scan2.lsnr' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.oc4j' on 'rhel59dra' CRS-2677: Stop of 'ora.rhel59drb.vip' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.lsnr_gtrrac.lsnr' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.listener_scan3.lsnr' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.scan3.vip' on 'rhel59dra' CRS-2677: Stop of 'ora.listener_scan1.lsnr' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.scan1.vip' on 'rhel59dra' CRS-2677: Stop of 'ora.scan3.vip' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.scan1.vip' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.listener_scan2.lsnr' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.scan2.vip' on 'rhel59dra' 6 P age Extreme Oracle DB Infrastructure as a Service

7 CRS-2677: Stop of 'ora.listener.lsnr' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.rhel59dra.vip' on 'rhel59dra' CRS-2677: Stop of 'ora.scan2.vip' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.rhel59dra.vip' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.cvu' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.registry.acfs' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.dtccrac.db' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.data.dg' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.redo01.dg' on 'rhel59dra' CRS-2677: Stop of 'ora.redo01.dg' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.data.dg' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.fra.dg' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.oc4j' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.ocr_vote.dg' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.asm' on 'rhel59dra' CRS-2677: Stop of 'ora.asm' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.ons' on 'rhel59dra' CRS-2677: Stop of 'ora.ons' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.net1.network' on 'rhel59dra' CRS-2677: Stop of 'ora.net1.network' on 'rhel59dra' succeeded CRS-2792: Shutdown of Cluster Ready Services-managed resources on 'rhel59dra' has completed CRS-2677: Stop of 'ora.crsd' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.drivers.acfs' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.crf' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.ctssd' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.evmd' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.asm' on 'rhel59dra' CRS-2673: Attempting to stop 'ora.mdnsd' on 'rhel59dra' CRS-2677: Stop of 'ora.crf' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.evmd' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.mdnsd' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.asm' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.cluster_interconnect.haip' on 'rhel59dra' CRS-2677: Stop of 'ora.cluster_interconnect.haip' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.drivers.acfs' on 'rhel59dra' succeeded CRS-2677: Stop of 'ora.ctssd' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.cssd' on 'rhel59dra' CRS-2677: Stop of 'ora.cssd' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.gipcd' on 'rhel59dra' CRS-2677: Stop of 'ora.gipcd' on 'rhel59dra' succeeded CRS-2673: Attempting to stop 'ora.gpnpd' on 'rhel59dra' CRS-2677: Stop of 'ora.gpnpd' on 'rhel59dra' succeeded CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'rhel59dra' has completed CRS-4133: Oracle High Availability Services has been stopped. Successfully unlock /u01/app/11.2.0/grid For non-rac environments, you do not go through the preparatory steps to unlock the GI Home. You simply create an archive file for the contents of the GI Home. You should, however, exclude all the unnecessary log and output files. We can leverage the same tar command that we issued for the Grid Infrastructure home but create a separate exclude list for the database home. This%is%where%you%may%want%to%create%a%single%TAR5ball%of%the%/u01%file%system%(or%equivalent)% which%encompasses%all%of%the%oracle%software%stack%(gi%home,%db%home,%and%other% miscellaneous%binaries%such%as%oswatcher,%rac%check,%rda,%monitoring%scripts,%and%much% more).%%the%choice%is%yours,%and%you%can%modify%the%scripts%that s%provided%in%this%paper%as%it% suits%your%business% For the database Oracle homes, the steps are identical whether you are on RAC or non-rac. Here s the tar script with the exclude list: ORACLE_DB_HOME/network/admin/* ORACLE_DB_HOME/network/log/* ORACLE_DB_HOME/dbs/* 7 P age Extreme Oracle DB Infrastructure as a Service

8 As the final step, you can create the golden image extract of the Oracle Home: export ORACLE_HOME=/u01/app/oracle/product/11.2.0/db cd ${ORACLE_HOME} tar cpfx - ${EXCLUDE_LIST} * > ${NFS_DIR}/DB.tar Saavy Unix folks can take advantage of the tar command and redirect the files to the ssh command and extract the files in a single command on the target server. Here s an example of the single command that can be leveraged as root from the /u01/app/oracle/product/ directory: tar cvf grid ssh target_host cd /u01/app/11.2.0; tar xvf PROVISIONING RACAAS Before you start cloning the GI Home, you need to extract the TAR archive with the tar xvf command. You can perform the extract as either the oracle or root privileged user. Once the software binaries are extracted, you are ready to start provisioning the GI Home. The steps to performing the GI environment is displayed above. In a nutshell, the cloning process is really nothing more than executing a perl script and following all the instructions afterwards. Then we clone the Grid Home that is fully patched and add the Grid Home to the local oracle inventory. As part of the local inventory registration, creating /etc/orainst.loc and changing the permissions of the orainventory location, we must execute root.sh on every node. This root.sh execution is just touches files and permissions and completes instantly. Then we configure the Grid Infrastructure by running config.sh and then complete the process by executing root.sh on each of the RAC nodes. The second round of root.sh execution takes a while longer and all the magic of the cluster configuration happens. To clone the GI stack for RAC, change your directory to the $ORACLE_HOME/clone/bin directory and execute the perl cloning script called clone.pl with the following options: export ORACLE_BASE=/u01/app/oracle export GI_HOME=/u01/app/12.1.0/grid export INVENTORY_LOCATION=/u01/app/oraInventory JAVA_HOME=${GI_HOME}/jdk/bin/java PATH=$PATH:${JAVA_HOME} cd ${GI_HOME}/clone/bin perl ${GI_HOME}/clone/bin/clone.pl -silent ORACLE_HOME=${GI_HOME} ORACLE_HOME_NAME=OraGridHome1 ORACLE_BASE=$ORACLE_BASE -O'"CLUSTER_NODES={rac01,rac02,rac03,rac04}"' -O'"LOCAL_NODE=$(hostname -s)"' CRS=TRUE INVENTORY_LOCATION=${INVENTORY_LOCATION} To clone the GI stack for non-rac, we execute same clone.pl script but our options are reduced, and because we do not have the CLUSTER_NODES and LOCAL_NODES parameters, our script is significantly simplified: cat clone_grid_11203.sh cd /u01/app/grid/ /clone/bin 8 P age Extreme Oracle DB Infrastructure as a Service

9 perl clone.pl -silent ORACLE_BASE=/u01/app/oracle ORACLE_HOME=/u01/app/grid/ ORACLE_HOME_NAME=Ora11g_gridhome2 INVENTORY_LOCATION=/u01/app/oraInventory After we clone the GI Home, we will be prompted to execute root.sh. The root.sh execution registers the GI Home to the orainventory and set permissions and what not. After executing root.sh, you will prompt you to run config.sh shell script in silent mode or roothas.pl in a non-rac environment. For RAC builds, we can execute the config.sh in GUI mode (default) but if you want to automate the cloning process, you must figure out how to execute config.sh in silent mode. export DIR=$(pwd) FN=`echo $0 sed s/\.*[/]//` ${GRID_HOME}/crs/config/config.sh -silent -responsefile \ ${DIR}/${CLUSTER_NAME}.rsp \ -ignoreprereq -ignoresysprereqs The secret sauce of cloning the GI Home for RAC environments is executing the config.sh in GUI mode and saving the response file at the end so that you can manipulate that response file to do your bidding in the future. Executing config.sh in GUI mode, you are prompted for the same set of screens as if you are installing the software. Here s a screen shot what the saving the response file will look like. At the summary screen (at the end of the config.sh GUI wizard), you will be provided an option to save the response file (near the right bottom corner of the screen) for the GI configuration. You should save this response file at the end of the GUI config.sh or at the time of GI installation and configuration. The response file that is created are the same identical files. If you perform a diff between the two response files (install versus config.sh), you will see no differences between them. Here s what the response file looks for Oracle 11g Release 2 Grid Infrastructure after we remove all the comments and blank lines: [oracle@rac1 ~]$ cat grid.11.2.rsp grep -v ^# sed -e "/^$/d" oracle.install.responsefileversion=/oracle/install/rspfmt_crsinstall_response_schema_v11_2_0 ORACLE_HOSTNAME=rac1.viscosityna.com INVENTORY_LOCATION=/u01/app/oraInventory SELECTED_LANGUAGES=en oracle.install.option=crs_config ORACLE_BASE=/u01/app/oracle 9 P age Extreme Oracle DB Infrastructure as a Service

10 ORACLE_HOME=/u01/app/11.2.0/grid oracle.install.asm.osdba=oinstall oracle.install.asm.osoper=oinstall oracle.install.asm.osasm=oinstall oracle.install.crs.config.gpnp.scanname=rac-scan oracle.install.crs.config.gpnp.scanport=1521 oracle.install.crs.config.clustername=rac-clust oracle.install.crs.config.gpnp.configuregns=false oracle.install.crs.config.gpnp.gnssubdomain= oracle.install.crs.config.gpnp.gnsvipaddress= oracle.install.crs.config.autoconfigureclusternodevip=false oracle.install.crs.config.clusternodes=rac1.viscosityna.com:rac1-vip.viscosityna.com,rac2.viscosityna.com:rac2- vip.viscosityna.com,rac3.viscosityna.com:rac3-vip.viscosityna.com oracle.install.crs.config.networkinterfacelist=eth0: :3,eth1: :2,eth2: :1 oracle.install.crs.config.storageoption=asm_storage oracle.install.crs.config.sharedfilesystemstorage.diskdrivemapping= oracle.install.crs.config.sharedfilesystemstorage.votingdisklocations= oracle.install.crs.config.sharedfilesystemstorage.votingdiskredundancy=normal oracle.install.crs.config.sharedfilesystemstorage.ocrlocations= oracle.install.crs.config.sharedfilesystemstorage.ocrredundancy=normal oracle.install.crs.config.useipmi=false oracle.install.crs.config.ipmi.bmcusername= oracle.install.crs.config.ipmi.bmcpassword= oracle.install.asm.sysasmpassword= oracle.install.asm.diskgroup.name=data oracle.install.asm.diskgroup.redundancy=external oracle.install.asm.diskgroup.ausize=1 oracle.install.asm.diskgroup.disks=/dev/asmcrs001,/dev/asmcrs002,/dev/asmcrs003 oracle.install.asm.diskgroup.diskdiscoverystring=/dev/asm* oracle.install.asm.monitorpassword= oracle.install.crs.upgrade.clusternodes= oracle.install.asm.upgradeasm=false oracle.installer.autoupdates.option= oracle.installer.autoupdates.downloadupdatesloc= AUTOUPDATES_MYORACLESUPPORT_USERNAME= AUTOUPDATES_MYORACLESUPPORT_PASSWORD= PROXY_HOST= PROXY_PORT=0 PROXY_USER= PROXY_PWD= PROXY_REALM= [ConfigWizard] Lot of parameters in the response file will not change with new RAC installations. As you can see, if you have a corporate standard for naming conventions, lot of the parameters will be repeated in the new RAC builds. After we execute config.sh, we will be prompted to execute root.sh again. Up to this point, we are merely building our configuration for our RAC Grid Infrastructure deployment. All the magic will happen at the 2 nd invocation of root.sh for the Grid Infrastructure home; although, Oracle has built-in lot of pre-configuration and pre-installation checks along the way, you will also detect your failures in this stage also. As the privileged user or as sudo, you will need to execute root.sh to complete your clone of your Grid Infrastructure. For non-rac environments, we will be prompted to execute roothas.pl instead of config.sh for the stand-alone server: To configure Grid Infrastructure for a Stand-Alone Server run the following command as the root user: /u01/app/ /grid/perl/bin/perl -I/u01/app/ /grid/perl/lib -I/u01/app/ /grid/crs/install /u01/app/ /grid/crs/install/roothas.pl For the ron-rac environment, our Grid Infrastructure work is done here. We have some post clone work that is needed for ASM but that will be addressed in another section. PROVISIONING DB HOME We can realistically provision a fully functional database(s) to our customers in matter of minutes instead of hours, days or even weeks. The biggest benefits of cloning the database software stack are: 10 P age Extreme Oracle DB Infrastructure as a Service

11 We do not need to configure X Windows or vncserver on the database server or deal with X-Windows client or vncviewer on our desktops. The database home cloning is extremely quick compared to installing the latest Database software, applying PSUs and applying any one-off patches. When we clone an Oracle Home from one server to another or from a Golden Image, we take with it all the patches that were performed against the source Oracle Home. The database cloning process is extremely simple as shown in the diagram to the right. If you look at the perl script (clone.pl), you will see that the cloning of the DB home is similar to the GI home. The logic is very similar to cloning the database stack. We will proceed from the Clone DB Home on each node with the clone.pl script. cd ${GI_HOME}/clone/bin perl ${GI_HOME}/clone/bin/clone.pl -silent \ ORACLE_HOME=${GI_HOME} \ ORACLE_HOME_NAME=OraGridHome1 \ ORACLE_BASE=$ORACLE_BASE \ -O'"CLUSTER_NODES={rac1,rac2,rac3}"' \ -O'"LOCAL_NODE=$(hostname -s)"' \ CRS=TRUE INVENTORY_LOCATION=${INVENTORY_LOCATION} Executing the clone.pl script for the DB Home produces the folloing output and will ask you to run root.sh on each node../runinstaller -clone -waitforcompletion "ORACLE_HOME=/u01/app/oracle/product/11.2.0/db" "ORACLE_HOME_NAME=OraDBHome1" "ORACLE_BASE=/u01/app/oracle" "CLUSTER_NODES={rac1,rac2,rac3}" "LOCAL_NODE=$(hostname -s)" "CRS=TRUE" "INVENTORY_LOCATION=/u01/app/oraInventory" -silent -noconfig -nowait Starting Oracle Universal Installer... Checking swap space: must be greater than 500 MB. Actual 3695 MB Passed Preparing to launch Oracle Universal Installer from /tmp/orainstall _ am. Please wait...oracle Universal Installer, Version Production Copyright (C) 1999, 2011, Oracle. All rights reserved. You can find the log of this install session at: /u01/app/orainventory/logs/cloneactions _ am.log. Performing tests to see whether nodes rac2,rac3 are available % Done. Installation in progress (Sunday, August 25, :01:06 AM CDT)... 79% Done. Install successful Linking in progress (Sunday, August 25, :01:14 AM CDT) Link successful Setup in progress (Sunday, August 25, :03:05 AM CDT) Setup successful End of install phases.(sunday, August 25, :03:29 AM CDT) WARNING: The following configuration scripts need to be executed as the "root" user in each new cluster node. Each script in the list below is followed by a list of nodes. /u01/app/oracle/product/11.2.0/db/root.sh #On nodes rac1 To execute the configuration scripts: 1. Open a terminal window 11 P age Extreme Oracle DB Infrastructure as a Service

12 COLLABORATE 14 IOUG Forum 2. Log in as "root" 3. Run the scripts in each cluster node The cloning of OraDBHome1 was successful. Please check '/u01/app/orainventory/logs/cloneactions _ am.log' for more details. The cloning scripts for the DB home do not take long time at all. Unlike the scripts for the GI home, it is a quick process as it simply registers the Oracle Homes, changes file/directory permissions and performs so cleanup tasks. For non-rac databases, the steps are identical except we will not provide a CLUSTER_NODES and LOCAL_NODE parameter in our clone.pl script. PREPARE DBAAS We strongly believe that DBAs should only perform installations once. We believe that DBAs should only patch once for each release of oracle. They should maintain one environment for each version of Oracle they support. DBAs should create tar archives and deploy Oracle environments with tar-balls. There is no reason why DBAs should not be able to provision a database on a new server in matter of minutes. We will focus on creating what we coin creating golden image database templates from an existing database. What%is%a%golden%image%database%template?%%% Preserve%corporate%standards%for%monitoring% Preserve%corporate%standards%for%redo%log%sizes%and%archive%log%mode% Preserve%corporate%standards%for%security%profiles%and%security%related%roles% Preserve%corporate%standards%for%auditing% Preserve%corporate%standards%for%password%verification%and%authentication% Preserve%corporate%standards%for%common%users% List%goes%on%and%on%and%on% % From the $ORACLE_HOME/bin directory, we can execute dbca with the -createclonetemplate option. The -createclonetemplate option will shutdown the database, and create a cold backup as backupset using RMAN to the location specified in the -datafilejarlocation parameter. dbca will also create a template configuration (.dbc) file that is XML based that you can manipulate as needed for your automation needs. In our example below, we will call our template name db_gold_01 and place the backup of the database in /bkups/templates as specified by the $BKUP_DIR environment variable. Other relevant parameters are sysdbausername and the sysdbapassword. Here s the dbca script in silent mode that will create the golden image database template. $ > cat create_clone_template.ksh export BKUP_DIR=/bkups/templates dbca -silent -createclonetemplate \ 12 P a g e Extreme Oracle DB Infrastructure as a Service

13 -sourcesid RACDB \ -templatename db_gold_01 \ -sysdbausername sys \ -sysdbapassword oracle123 \ -maintainfilelocations false \ -datafilejarlocation $BKUP_DIR Here s the output that this script produces: $./create_clone_template.ksh Gathering information from the source database 4% complete 8% complete 13% complete 17% complete 22% complete Backup datafiles 28% complete 88% complete Creating template file 100% complete Look at the log file "/u01/app/oracle/cfgtoollogs/dbca/silent.log_ _ am" for further details. Locate the the tempate xml file in the format of.dbc with the find command: $ find. -name '*.dbc'./assistants/dbca/templates/general_purpose.dbc./assistants/dbca/templates/data_warehouse.dbc./assistants/dbca/templates/db_gold_01.dbc Copy to the.dbc file to your backup directory where your $BKUP_DIR was specified as part of the -datafilejarlocation so that we have everything in a centralized location. cp $ORACLE_HOME/assistants/dbca/templates/db_gold_01.dbc $BKUP_DIR $ > ls -l /bkups/templates total rw-r oracle oinstall May 8 08:37 gb_gold_01.ctl -rw-r oracle oinstall May 8 08:37 gb_gold_01.dfb DEPLOY DBAAS Now you created your Golden Template as a database template, what do you do next? How do you leverage it? With a single dbca command, you can have your cake and eat it too. Here s the dbca script that will save you ton of time. dbca -silent \ -createdatabase \ -templatename db_gold_01.dbc \ -gdbname racdb \ -sid racdb \ -SysPassword oracle123 \ -SystemPassword oracle123 \ -emconfiguration NONE \ -redologfilesize 500 \ -recoveryareadestination FRA \ -storagetype ASM \ -asmsyspassword oracle123 \ -diskgroupname DATA \ -listeners LISTENER_RAC \ -characterset AL32UTF8 \ -nationalcharacterset AL16UTF16 \ -databasetype MULTIPURPOSE \ -nodelist rac1,rac2,rac3 \ -initparams audit_file_dest= /oraacfs/trace/racdb/adump' \ -initparams compatible=' ' \ -initparams db_create_file_dest='+data' \ -initparams db_create_online_log_dest_1='+data' \ -initparams db_create_online_log_dest_2='+fra' \ 13 P age Extreme Oracle DB Infrastructure as a Service

14 -initparams diagnostic_dest= /oraacfs' \ -initparams parallel_max_servers=32 \ -initparams pga_aggregate_target= \ -initparams processes=400 \ -initparams sga_target= \ -initparams db_recovery_file_dest='+fra' \ -initparams db_recovery_file_dest_size= ADDING A NODE TO THE CLUSTER Adding a RAC node to an existing cluster is not something that we do every day. Adding a RAC node to an existing cluster is relatively straight forward., you should always exercise the addnode.sh functionality in the lower environments before you attempt to add a node to the production RAC cluster. You need to go through the infrastructure limitations and holes before proceeding to touch the production environment. Here s are some initial high level instructions: On target, create the orainventory directory as an empty directory and change the ownership to be oracle:dba or whatever meets your corporate security requirements On target, make sure /u01/app/ directory is created and also empty. Make sure that it is owned by oracle:dba Run the customized addnode.ksh on an existing RAC node with parameters replaced as oracle. Please notice that this is a custom script that invokes Oracle-supplied addnode.sh in silent mode You will be instructed to run root.sh on target node as root Here s some caveats to consider. We are disabling pre-addnode checks with the IGNORE_PREADDNODE_CHECKS value to Y. /u01/app/orainventory has to be pre-created and owned by oracle:dba and be completely empty. /u01/app/ has to be owned by oracle:dba. The /u01/app/12.1.0/grid directory cannot exist even as an empty directory. The addnode.sh script attempts to do a "mkdir grid" as oracle, and if it fails, it dies. We did not use the -nocopy method. The copy the Grid Home from source RAC node to the new RAC node added about 5 minutes to the overall time. Here s the contents of our custom addnode.ksh script (not the same as the addnode.sh). This script in fact invokes the Oracle-supplied addnode.sh shell script from the $ORACLE_HOME/addnode directory (new in Oracle 12c). +ASM1 > cat addnode.ksh export ORACLE_HOME=/u01/app/12.1.0/grid export PATH=$ORACLE_HOME/bin:$PATH cd $ORACLE_HOME/addnode rementnnnn export IGNORE_PREADDNODE_CHECKS=Y #./addnode.sh -silent "CLUSTER_NEW_NODES={rhel59drb}" "CLUSTER_NEW_VIRTUAL_HOSTNAMES={rhel59b-vip}" -nocopy./addnode.sh -silent "CLUSTER_NEW_NODES={rhel59drb}" "CLUSTER_NEW_VIRTUAL_HOSTNAMES={rhel59drb-vip}" "CLUSTER_NEW_PRIVATE_NODE_NAMES={rhel59drb-priv}" The ability to rapidly grow (addnode.sh) makes DBaaS feasible. We can easily scale a RAC database as demand grows. We will be lot more confident as we get more comfortable with adding nodes to the existing cluster. Something to think about is that we can add more than one node to an existing cluster at a time. DROPPING A NODE TO THE CLUSTER As our workload demand shrinks, we have the need to remove an existing RAC node from the cluster. Deleting an existing RAC node from the cluster is extremely simple. The first step to drop a node is first to delete the node with the crsctl delete node command. crsctl delete node -n rac03 crsctl delete node -n rac04 14 P age Extreme Oracle DB Infrastructure as a Service

15 Second, we need to cleanup the orphaned VIPs: ~]# crsctl delete resource ora.rac04.vip -f ~]# crsctl delete resource ora.rac03.vip -f Once we are done with our deletion of node and removal of VIPs, we can check the status of the cluster resources: crsctl stat res -t PLUGGABLE DATABASES Oracle Database 12c features a new option called Pluggable Database (PDB). With PDB, you now have more incentive to lean towards the schema consolidation. PDB begins to eliminate the typical issues that come with schema consolidation; such as namespace collisions, security, and granularity of recovery. The schema consolidation model has consistently provided the most opportunities for reducing operating expenses, since you only have a single big database to maintain, monitor, and manage. Though schema consolidation allows the best ROI (w.r.t CapEX/OPex), you are sacrificing flexibility for compaction. Consolidation and isolation tend to move in opposite directions. The more you consolidate the less capabilities you ll have for isolation; in contrast, the more you try to isolate, the more you sacrifice benefits of consolidation. Custom (home-grown) apps have been best fit use cases for schema consolidation, since application owners and developers have more control on how the application and schema is built. Let s review some terminologies before we begin: Root Container Database Or the root CDB (cdb$root) is the name you give it will be name of the instance. The CDB database owns the SGA and running processes. You can have many CDBs on the same database server (each with its own PDBs). You can have up to 252 PDBs per CDB. This number is just an arbitrary number that Oracle specified. As customers driver more and more towards the PDB consolidation model and define a need to increase the maximum number of PDBs, we are sure that Oracle will increase this number to meet their customer requirements. You can have a more than one CDB on the same database server, each with it s own PDBs, allowing DBAs to have a Database Instance consolidation model coupled a schema consolidation. For best scalability, mix in RAC and leverage all the benefits of RAC Services, QoS, and Workload Distribution. The seed PDB (PDB$SEED) is an Oracle supplied system template that the CDB can use to create new PDBs. The seed PDB is named PDB$SEED. One cannot add or modify objects in PDB$SEED. Pluggable Database The PDB databases are sub-containers that serviced by CDB resources. The true beauty of the PDB is its mobility. You can unplug and plug 12c databases into and out of CDBs. You can create like new PDBs from existing PDB, like full snapshots. Everyone needs to know that the Pluggable Database is not a free option. You must pay for use of this feature and is listed as a Multitenant option under the Enterprise Edition Options. The following screen shot is as of January 2014: 15 P age Extreme Oracle DB Infrastructure as a Service

16 There are several ways to leverage the pluggable database option. The first option is to leverage dbca to create a CDB/PDB database, maintain, plug/unplug, archive PDBs: Here s an example of dbca to create a CDB/PDB. You can create a database with CDB/PDB enabled at the time of creation. In this example, we are creating a database called CDB1 with a pluggable database called VNA. 16 P age Extreme Oracle DB Infrastructure as a Service

17 Here s screen shots to demonstrate how you can also leverage dbca to manage pluggable databases. Here s an example screen shot of creating PDBs from PDB archives or PDB file sets. You can also download the Apex application for provisioning PDBs (still in beta as of January 2014): Oracle provides a Multitenant Self-Service Provisioning via Application Express to provide a simplified GUI interface to Oracle Database 12c Multitenant and allows for the self-service provisioning of Pluggable Databases (PDBs). This Apex application is provided to encourage learning about PDBs in development / test environments with powerful PDB features including create, clone, plug, and unplug. Another way to manage PDBs is with Oracle Enterprise Manager Database Express, also referred to as EM Express, is a web-based tool for managing Oracle Database 12c. You can login to the EM Express using a browser of your choice and manage PDBs. The last and preferred method to provision PDBs is the old fashion command line interface (CLI). The CLI will be our method for initiating the automated scripting that we are discussing in this session. Let s start with creating a CDB/PDB database with dbca in silent mode: cd /u01/app/oracle/product/12.1.0/dbhome_1/bin./dbca -silent \ -createdatabase \ -templatename General_Purpose.dbc \ -gdbname TEST \ -sid TEST \ -SysPassword oracle123 \ -createascontainerdatabase true \ -numberofpdbs 2 \ -pdbname VNA \ -SystemPassword oracle123 \ -emconfiguration DBEXPRESS \ -redologfilesize 100 \ -recoveryareadestination FRA \ -storagetype ASM \ -asmsnmppassword oracle123 \ -asmsyspassword oracle123 \ -diskgroupname DATA \ -listeners LISTENER \ -registerwithdirservice false \ -characterset AL32UTF8 \ -nationalcharacterset AL16UTF16 \ -databasetype MULTIPURPOSE \ -nodelist ol59a,ol59b \ -initparams audit_file_dest='/u01/app/oracle/admin/test/adump' \ 17 P age Extreme Oracle DB Infrastructure as a Service

18 -initparams compatible=' ' \ -initparams db_create_file_dest='+data' \ -initparams db_create_online_log_dest_1='+data' \ -initparams db_create_online_log_dest_2='+fra' \ -initparams db_recovery_file_dest='+fra' \ -initparams pga_aggregate_target=100m \ -initparams diagnostic_dest='/u01/app/oracle' \ -initparams parallel_max_servers=8 \ -initparams processes=400 \ -initparams sga_target= \ -initparams db_recovery_file_dest_size= Notice the three lines that is highlighted in red that start with the createascontainerdatabase option. All other options to creating dbca in silent mode remain the same. CREATE PDBS FROM NON-CDB As you saw from the examples and screenshots, creating a PDB is extremely simple with dbca. Now, let s do this with the command line interface. Creating PDBs, migrating a non-cdb database, or moving PDBs between CDBs requires some PL/SQL interface. In our first example, let s take a look at creating a PDB from a non-cdb database. Before we can create the XML manifest, the database must be placed in read-only mode. For RAC databases, we can stop the RAC database and then start just the first instance in read-only mode: $ srvctl stop database -d PSOFT $ srvctl start instance -d PSOFT -startoption "READ ONLY" -n rac01 Next, we must create an XML manifest which contains metadata to describe the non-cdb using the DBMS_PDB package. begin dbms_pdb.describe( pdb_descr_file => '/u01/app/oracle/oradata/psoft.xml'); end; / PL/SQL procedure successfully completed. You can view a sample PDB XML manifest from: We need to determine whether a pluggable database described by file pdb_descr_file is compatibile with the current CDB. Login to the CDB and execute the DBMS_PDB.CHECK_PLUG_COMPATIBILITY procedure: BEGIN IF dbms_pdb.check_plug_compatibility('/u01/app/oracle/oradata/psoft.xml', 'PSOFTDEV') THEN dbms_output.put_line('true'); ELSE dbms_output.put_line('false'); END IF; END; / FALSE PL/SQL procedure successfully completed. We can check the PDB_PLUG_IN_VIOLATIONS table to see what the potential issues are: SQL> select * from pdb_plug_in_violations where name='psoftdev'; 18-FEB PM PSOFTDEV Non-CDB to PDB WARNING 0 18 P age Extreme Oracle DB Infrastructure as a Service

19 1 PDB plugged in is a non-cdb, requires noncdb_to_pdb.sql be run. PENDING Run noncdb_to_pdb.sql. 18-FEB PM PSOFTDEV Parameter WARNING 0 1 CDB parameter memory_target mismatch: Previous Current 0 PENDING Please check the parameter in the current CDB As you can see from the warning messages, we are OK to proceed to create the PDB database from the non-cdb. The next step is to shutdown the database that will be plugged into our CDB: $ srvctl stop database -d PSOFT Now, we will connect to our CDB database that we created called VPROD and issue the commands to create the PSOFT pluggable database: SQL> select name, open_mode from V$PDBS; NAME OPEN_MODE PDB$SEED READ ONLY VNA MOUNTED SQL> set echo on SQL> create pluggable database PSOFT using '/u01/app/oracle/oradata/psoft.xml' copy file_name_convert=('+data','+data'); Pluggable database created. Note, that when you create the PDB, it is initially in mounted mode with a status of NEW. View the OPEN MODE status of a PDB by querying the OPEN_MODE column in the V$PDBS view or view the status of a PDB by querying the STATUS column of the CDB_PDBS or DBA_PDBS view. Next, we will need to set our container to our new PDB and execute the noncdb_to_pdb.sql script from the $ORACLE_HOME/rdbms/admin directory. This script must be executed before the PDB can be opened for the first time. SQL> alter session set container=psoft; Session altered. SQL> SQL> -- leave the PDB in the same state it was when we started SQL> BEGIN 2 execute immediate '&open_sql &restricted_state'; 3 EXCEPTION 4 WHEN OTHERS THEN 5 BEGIN 6 IF (sqlcode <> -900) THEN 7 RAISE; 8 END IF; 9 END; 10 END; 11 / old 2: execute immediate '&open_sql &restricted_state'; new 2: execute immediate ' '; PL/SQL procedure successfully completed. 19 P age Extreme Oracle DB Infrastructure as a Service

20 SQL> SQL> WHENEVER SQLERROR CONTINUE; Here s a tail-end output of the script. As you can see, the script puts the database back to the state that it was at prior to invocation. The output to this script is rather extensive; for the curious, you can view the complete output from: After the script executed, we need to open the PSOFT PDB in READ WRITE mode: SQL> alter pluggable database psoft open; Pluggable database altered. Let s look at our PDBs and see some details of each PDB: col pdb_name for a30 set lines 122 trims on select con_id, dbid, name, open_mode, total_size from v$pdbs; select dbid, con_id, guid, con_uid, pdb_name, status from CDB_PDBS; CON_ID DBID NAME OPEN_MODE TOTAL_SIZE PDB$SEED READ ONLY VNA MOUNTED PSOFT READ WRITE DBID CON_ID GUID CON_UID PDB_NAME STATUS F2B00B9803F75A09E0430A2910AC0F VNA NORMAL F2AFD228598D4F2CE0430A2910AC50CF PDB$SEED NORMAL F2B1597C0F080518E0430A2910AC PSOFT NORMAL DIFFERENT WAYS TO CREATE A PDB In addition to the above methods, this section will show additional methods to create a PDB. The beauty of PDB is not only mobility (plug and unplug), which will be demonstrated later, but that we can create/clone a new PDB from a "gold-image PDB". That's real agility and a Database as a Service (DBaaS) play. METHOD 1: CREATE A PDB FROM SEED The easiest way to create a PDB is from the seeded files that Oracle provides. SQL> alter session set container=cdb$root; Session altered. SQL> CREATE PLUGGABLE DATABASE pdbhansolo admin user hansolo identified by hansolo roles=(dba); Pluggable database created. SQL> alter pluggable database pdbhansolo open; Pluggable database altered. SQL> select file_name from cdb_data_files; FILE_NAME PDBDATA/YODA/E51109E2AF22127AE043EDFE10AC1DD9/DATAFILE/system P age Extreme Oracle DB Infrastructure as a Service

21 +PDBDATA/YODA/E51109E2AF22127AE043EDFE10AC1DD9/DATAFILE/sysaux Notice that it just contains the basic files to enable a PDB. The CDB will copy from the PDB$SEED the System and Sysaux tablesapces and instantiate them in the new PDB. When you create a new PDB from the seed, an administrator for the PDB must be specified in the CREATE PLUGGABLE DATABASE syntax. The administrator will be created as a local user in the PDB and granted the PDB_DBA role locally. METHOD #2: CLONE FROM AN EXISTING PDB CDB$ROOT@YODA> alter session set container=cdb$root; Session altered. CDB$ROOT@YODA> alter pluggable database pdbobi close; Pluggable database altered. CDB$ROOT@YODA> alter pluggable database pdbobi open read only; Pluggable database altered. CDB$ROOT@YODA> CREATE PLUGGABLE DATABASE pdbleia from pdbobi; Pluggable database created. CDB$ROOT@YODA> alter pluggable database pdbleia open; Pluggable database altered. CDB$ROOT@YODA> select file_name from cdb_data_files; FILE_NAME PDBDATA/YODA/E51109E2AF23127AE043EDFE10AC1DD9/DATAFILE/system PDBDATA/YODA/E51109E2AF23127AE043EDFE10AC1DD9/DATAFILE/sysaux PDBDATA/YODA/E51109E2AF23127AE043EDFE10AC1DD9/DATAFILE/users PDBDATA/YODA/E51109E2AF23127AE043EDFE10AC1DD9/DATAFILE/example PDBDATA/YODA/E51109E2AF23127AE043EDFE10AC1DD9/DATAFILE/obiwan Notice, that the OBI tablespace that we created in PDBOBI came over as part of this Clone process!! Let's create a new clone from an existing PDB, but with a new path. SQL> create pluggable database PDBvader from PDBOBI FILE_NAME_CONVERT=('+PDBDATA/YODA/DD7D8C1D4C234B38E04325AAE80AF577/DATAFILE','+PDBDATA'); Pluggable database created. METHOD #3: CREATE A PDB AS A SNAPSHOT FROM ANOTHER PDB Cloning technologies have existed for years but it s never been so easy for DBAs. With Oracle Database 12c Multitenant option and integration with, DBAs simply execute commands from SQL*Plus to: Create full copy database clones Execute and manage snapshot copies of the production or gold image on NetApp, ASM Cluster File System (ACFS) and ZFS Storage Appliance (ZFSSA). Essentially you will need a NAS Appliannce, or any technology that will provide you with COW snapshot. To create a full copy database clone, the DBA would simply issue create pluggable database ODSPROD from PROD;. Behind the scene, Oracle Parallel Execution slaves do all the heavy lifting. Internally, each of the full copy clones be assigned a unique global id (GUID) and named and tagged with the new PDB GUID. 21 P age Extreme Oracle DB Infrastructure as a Service

22 The snapshot copy is based on underlying storage copy-on-write (COW) technology for the file system and provides faster snapshot copy clones. To create a snapshot copy, the DBA would issue a simple create pluggable database DEV from PROD snapshot copy; command from SQL*Plus. This technology is evolving and will continue to be improved. As of Oracle version 12.1, we are still limited to: 1. Local Clones Only 2. Source PDB cannot be dropped 3. Source PDB cannot be unplugged 4. Both source and cloned PDBs may be opened read-write For additional information on establishing PDB snapshots from another PDB, you are encouraged to view DOC ID : Oracle Multitenant Pluggable Database Snapshot Cloning: Use Cases and Supported Platforms. PDB DATAFILES FOR ASM Leveraging PDB for RAC and ASM can give DBAs the perception of added complexity. The goal in this section is to show you that it s not much different than being on the file system. Let s create couple of new tablespaces in the PSOFT PDB. In this section, you will see how Global Identifier for that PDB impacts the directory structure for the database files inside of ASM. SQL> alter session set container=psoft; Session altered. SQL> create tablespace psoft_data; Tablespace created. SQL> create tablespace psoft_index; Tablespace created. Let s look at the datafile names for the new tablespaces that we created. FILE_NAME DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/users DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/sysaux DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/psoft_data DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/psoft_index DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/system CON_ID FILE_NAME ONLINE_ DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/users ONLINE 4 +DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/sysaux ONLINE 4 +DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/psoft_data ONLINE 4 +DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/psoft_index ONLINE 4 +DATA/VPROD/F2B1597C0F080518E0430A2910AC7076/DATAFILE/system SYSTEM The datafiles listed in v$datafile differs from cbd_data_files. cdb_data_files only shows datafiles from "open" PDB, so just be careful if you are looking at the correct datafile. The long identifier, " F2B1597C0F080518E0430A2910AC7076", in the OMF name is the GUID or Global Identifier for that PDB. This is not the same as container unique identifier (CON_UID). The con_uid is a local identifier; whereas the GUID is universal. Keep in mind that we can unplug a PDB from one CDB into another CDB, so the GUID provides this uniqueness and streamlines portability. 22 P age Extreme Oracle DB Infrastructure as a Service

23 PUTTING IT ALL TOGETHER Rapid RAC provisioning is extremely simple if you know the tricks of the trade to clone the Grid Infrastructure and Database Home. Prior to cloning the Grid Infrastructure home, you will be required create (really manipulate) a response file that encompasses all the information about the cluster such as network interfaces, hostnames, VIPs, SCAN information, private hostnames, ASM or shared disk information, etc. Earlier we displayed what the Grid Infrastructure response file looked like for Oracle Database 11g Release 2. The Grid Infrastructure response file for Oracle Grid Infrastructure 12c has less than 50 parameters to modify (less in Oracle 11g Release 2). [oracle@rac01 ~]$ cat grid.12c.rsp egrep -v "^# ^$ ^\[" more oracle.install.responsefileversion=/oracle/install/rspfmt_crsinstall_response_schema_v ORACLE_HOSTNAME=rac01.viscosityna.com INVENTORY_LOCATION=/u01/app/oraInventory SELECTED_LANGUAGES=en oracle.install.option=crs_config ORACLE_BASE=/u01/app/oracle ORACLE_HOME=/u01/app/12.1.0/grid oracle.install.asm.osdba=oinstall oracle.install.asm.osoper=oinstall oracle.install.asm.osasm=oinstall oracle.install.crs.config.gpnp.scanname=rac-scan oracle.install.crs.config.gpnp.scanport=1521 oracle.install.crs.config.clustertype=standard oracle.install.crs.config.clustername=rac-cluster oracle.install.crs.config.gpnp.configuregns=false oracle.install.crs.config.autoconfigureclusternodevip=false oracle.install.crs.config.gpnp.gnsoption=create_new_gns oracle.install.crs.config.gpnp.gnsclientdatafile= oracle.install.crs.config.gpnp.gnssubdomain= oracle.install.crs.config.gpnp.gnsvipaddress= oracle.install.crs.config.clusternodes=rac01.viscosityna.com:rac01- vip.viscosityna.com,rac02.viscosityna.com:rac02-vip.viscosityna.com,rac03.viscosit yna.com:rac03-vip.viscosityna.com,rac04.viscosityna.com:rac04-vip.viscosityna.com oracle.install.crs.config.networkinterfacelist=eth0: :3,eth1: :5,eth2: :1 oracle.install.crs.managementdb.configure=true oracle.install.crs.config.storageoption=flex_asm_storage oracle.install.crs.config.sharedfilesystemstorage.votingdisklocations= oracle.install.crs.config.sharedfilesystemstorage.votingdiskredundancy=normal oracle.install.crs.config.sharedfilesystemstorage.ocrlocations= oracle.install.crs.config.sharedfilesystemstorage.ocrredundancy=normal oracle.install.crs.config.useipmi=false oracle.install.crs.config.ipmi.bmcusername= oracle.install.crs.config.ipmi.bmcpassword= oracle.install.asm.sysasmpassword= oracle.install.asm.diskgroup.name=ocrvote oracle.install.asm.diskgroup.redundancy=external oracle.install.asm.diskgroup.ausize=1 oracle.install.asm.diskgroup.disks=orcl:asmdisk1,orcl:asmdisk2,orcl:asmdisk3 oracle.install.asm.diskgroup.diskdiscoverystring= oracle.install.asm.monitorpassword= oracle.install.crs.config.ignoredownnodes=false oracle.installer.autoupdates.option= oracle.installer.autoupdates.downloadupdatesloc= AUTOUPDATES_MYORACLESUPPORT_USERNAME= AUTOUPDATES_MYORACLESUPPORT_PASSWORD= PROXY_HOST= PROXY_PORT=0 PROXY_USER= PROXY_PWD= PROXY_REALM= oracle.install.asm.useexistingdiskgroup=false In this output, we stripped out all the blank lines, all the lines that start with a # sign (for comments) and headers that start with [. As you can see, of the 50 parameters, lot of the parameters have empty values. Understanding about ½ dozen key parameters are key to being able to manipulate the response to do your bidding. For example, understanding the oracle.install.crs.config.networkinterfacelist parameter (below) is extremely important. 23 P age Extreme Oracle DB Infrastructure as a Service

24 oracle.install.crs.config.networkinterfacelist=eth0: :3,eth1: :5,eth2: :1 Each value triplets are separated by a comma. The first component of the value triplet is the interface name. The second components is the Subnet mask, and the last value is the interface type. In Oracle 12c, the values range from 1 to 5 of which 4 and 5 are new to Oracle Database 12c. The value of 1 denotes that the interface is to be used for the public network. A value of 2 indicates that the interface is to be used for the private network. A value of 3 is used to denote that the interface is not to be used. A value of 4 is for ASM traffic for Flex ASM. In this scenario, we would are dedicating a separate network interface for Flex ASM traffic. A value of 5 indicates that the interface is to be leveraged for ASM and the private interconnect. If we have 2 network interfaces (bonded), we would leverage one bonded interface for the public network (1) and the second bonded interface for ASM and private network (5) if we are leveraging Flex ASM. If you standardize, less you have to manipulate the response file. For example, you need to standardize the name of the disk group created at the initial grid cloning process. If you name this disk group OCRVOTE and make it NORMAL with three ASM disks: ORCL:OCRVOTE1, ORCL:OCRVOTE2, and ORCL:OCRVOTE3, this part of the response file would never change. In our example, we needed all of the ASMLIB disks for the OCRVOTE disk group with external redundancy because we only had limited storage. Another big area that you should standard on are things like OraInventory Location, Oracle Base, Grid Infrastructure Homes, Oracle Database Homes, SCAN and VIP names. Other miscellaneous areas that can be standardized are things like cluster name and ports. You should put generic placeholders in the response file. You should create a RAC configuration file that has the changes that you want to make to the response file. Response file generation is a simple global search and replacement from the small configuration file to replace the required parameters in the response file. We put the following menu system ready to rapidly deploy RAC without much thinking process around it. We are constantly making the product better. With each conference, this RAC menu system get more and more robust as additional functionality and hate to say it, a few bug fixes. # RAC Menu System - racclust # First Node: rac01 VIP: rac01-vip.viscosityna.com # Second Node: rac02 VIP: rac02-vip.viscosityna.com # Third Node: rac03 VIP: rac03-vip.viscosityna.com # 10. Prepare Source RAC Cluster for Cloning (as root) # # 20. Deploy Scripts to all the RAC nodes # 30. root cleanup and environment check # # 40. Clone Grid Infrastructure - /u01/app/12.1.0/grid # 50. Execute config.sh in silent mode # # 60. Post Clone Checks # # 70. Clone Database Home - /u01/app/oracle/product/12.1.0/dbhome_1 # 80. ASM Disk Group Configuration # # 90. Create RAC Database - PROD # 100. Post Database Tasks # # x. Exit # 24 P age Extreme Oracle DB Infrastructure as a Service

25 We will reveal all the functionality to the RAC menu system during our demo at our presentation. COLLABORATE 14 IOUG Forum ASM AS A SERVICE Similar to the RAC menu system, we have created a set of ASM related tasks to manage the ASM environment. The ASM menu system includes additional screens to manage ASMLIB, kfed/kfod, ACFS and ASM Disk Group Management. Just about everything you need to administer the ASM environment will be included. You will be able to rapidly provision all components of ASM. # Automatic Storage Management Menu System # # Primary Host: rac01 Standby Host: racdr01 # 10. crsctl check has/css # # 11. crsctl stat # # 12. Check for ASMLIB rpms # # 20. sfdisk ASM Disk (only echos command to execute) # # 21. Configm sfdisk ASM Disk (only echos command to execute) # # 22. dd Write Input File To Block Device # # 23. dd Read Input File From Block Device # # 25. Prepare ASM Disk (only echos command to execute) # # 26. Prepare ASM Disk Interactive (only echos command to execute) # # 30. Launch ASMLIB Management Submenu # # 40. Launch ASM Disk Group Management Submenu # # 50. View ASM Disk Group and Disks Free Space # # 51. View ASM IO Statistics Inforation # # 52. ASMLIB to Device File Mappings # # 53. Read ASM Disk Header with od # # 70. kfed / kfod Troubleshooting Utilities Submenu # # 100. Launch ACFS Management Submenu # # x. Exit # # Enter Task Number: Please come visit the session as we will reveal all the functionality to the ASM menu system during our demo at our presentation. DATA GUARD AS A SERVICE Myriads of best practice techniques are provided from Oracle s Maximum Availability Architecture (MAA) team and industry experts that address Data Guard when it comes to performance, scalability and reliability. Compliance with best practices can help mitigate potential performance and infrastructure issues that ails lot of companies. One of the best ways to comply with industry best practices is with automated processes and procedures. This paper will disseminate fundamental Data Guard best practices and demonstrate how DBAs can automate setup, configuration, monitoring and maintenance of physical standby Data Guard environments with assistance from the Data Guard (DG) Toolkit with concentration on the following topics: Building the Physical Standby Monitoring and Maintaining the Physical Standby Configuring Data Guard Broker Performing Backup and Recovery with RMAN Setting Archive Retention Performing Switchovers and Failovers 25 P age Extreme Oracle DB Infrastructure as a Service

26 # Data Guard Toolkit # # Primary Host: rac01a Standby Host: rac01dra # Primary DB: VNA Standby DB: VNADR # P SCAN: rac-scan:1521 S SCAN: racdr-scan:1521 # 10. Launch Preliminary Check Submenu # # 20. Launch Build Standby Database Submenu # # 30. Launch the Data Guard Broker Submenu # # 40. Launch Monitor Physical Standby Data Guard Submenu # # 50. Launch Monitor Logical Standby Data Guard Submenu # # 60. Launch Automatic Diagnostic Repository (ADR) CLI Submenu # # 100. Launch RMAN Backup to Disk Submenu # # 200. RMAN Backup Primary based on Standby SCN / Recover Standby Database # # x. Exit # # Enter Task Number: Please come visit the session as we will reveal all the functionality to the DG menu system during our demo at our presentation. BACKUP & RECOVERY AS A SERVICE The Backup and Recovery section leverages the rman2disk shell script from and encompasses both RMAN backup sets and RMAN backup as copy options. You are encouraged to leverage the backup as copy option and update the baseline copy with incremental backups on a nightly basis especially if you have a VLDB situation. Conceptually, you will rarely need to perform a full level 0 image copy of the database again. Even with the backup as copy option, you should perform a full backup at least once per month or quarter basis. Alternatively, the RMAN2DISK also provides the option to perform level 0 backup sets and even compressed level 0 backup sets. The only caveat is that the DG Toolkit does not provide interfaces to the Media Management Layer (MML) so only D2D backups are supported. # Data Guard RMAN Backup to Disk Submenu: dg_rman2disk_menu.ksh # Primary Host: rac01a Standby Host: rac01dra # 10. Enable Block Change Tracking on the VNA1 on rac01a # 20. Perform full level 0 backupset of VNA1 on rac01a # 30. Perform compressed full level 0 backupset of VNA1 on rac01a # 40. Perform backup as copy image backup of VNA1 on rac01a # # 50. Perform level 1 incremental backup of VNA1 on rac01a # 60. Perform level 1 compressed incremental backup of VNA1 on rac01a # 70. Perform level 1 incremental backup for recover (UPDATE IMAGE COPY) of VNA1 on rac01a # 100. Configure archivelog retention policy for VNA1 on rac01a # 110. Configure archivelog retention policy for VNADR1 on rac01dra # x. Exit # # Enter Task Number: 26 P age Extreme Oracle DB Infrastructure as a Service

27 27 P age Extreme Oracle DB Infrastructure as a Service

28 COLLABORATE 14 IOUG Forum APPENDICES We made RAC and non-rac deployment easy with simple to use menu like system for easy and automated RAC deployment. We put all of the automation together and provide it as a simple interface for you to download. REFERENCES This white paper is a snippet of the Database Infrastructure As A Service book authored by Charles Kim/George Trujillo/Steve Jones. The first release of the book is available for download and is available for ibook. For complete reference and technical details, please download our book from the Apps store. We will offer free updates to the Database Infrastructure As a Service. In this book we will focus on best practices of Oracle Database as a Service with discussions around Linux, consolidation, multi-tenancy, virtualization and cloud deployments. The authors have spent a number of years focused on the virtualization of tier-one high performance platforms. In this book we will share knowledge learned in the field and best practices around deploying Oracle Database-as-a-Service. Whether you are virtualized or running in bare-metal, this book will be your reference of choice for best practices and industry reference architectures. AUTHOR BIOGRAPHY Charles Kim is an Oracle ACE Director, VMware vexpert, an Oracle Certified DBA, and a Certified RAC Expert. Charles specializes in Exadata, RAC, and Virtualization (VMware and Oracle VM) and authored three books: 1. Oracle Database 11g New Features for DBA and Developers 2. Linux Recipes for Oracle DBAs 3. Oracle Data Guard 11g Handbook 4. Database Infrastructure As a Service Handbook Charles holds certifications in Oracle, VMware, Red Hat Linux, and Microsoft and has over 22 years of Oracle experience on mission and business critical databases. Charles presents regularly at local, regional, national and international Oracle conferences including IOUG Collaborate, VMware World, and Oracle OpenWorld on topics of RAC, ASM, Linux Best Practices, Data Guard Best Practices, VMware virtualization, Oracle VMware virtualization, and 7x24 High Availability Considerations. Charles is the technical editor of the Automatic Storage Management book by Oracle Press and blogs regularly at and Charles is the current Vice President and Vendor Liaison of the SIG for the Independent Oracle User Group. Charles is a co-author of the upcoming Hadoop-as-a-Service and Expert Exadata book with Pearson. 28 P a g e Extreme Oracle DB Infrastructure as a Service

Install Oracle10g Real Application Clusters Release 1 (10.1.0.4) on SuSE Linux Enterprise Server 9 and Matrix Server

Install Oracle10g Real Application Clusters Release 1 (10.1.0.4) on SuSE Linux Enterprise Server 9 and Matrix Server Install Oracle10g Real Application Clusters Release 1 (10.1.0.4) on SuSE Linux Enterprise Server 9 and Matrix Server This Installation Guide is intended to augment the Oracle and Novell documentation for

More information

What s New with Oracle Database 12c on Windows On-Premises and in the Cloud

What s New with Oracle Database 12c on Windows On-Premises and in the Cloud What s New with Oracle Database 12c on Windows On-Premises and in the Cloud Santanu Datta Vice President Server Technologies Alex Keh Senior Principal Product Manager Server Technologies Oracle Database

More information

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated R2

Oracle 11g: RAC and Grid Infrastructure Administration Accelerated R2 Oracle 11g: RAC and Grid Infrastructure Administration Accelerated R2 Duration: 5 Days What you will learn This Oracle 11g: RAC and Grid Infrastructure Administration Accelerated training teaches you about

More information

Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack

Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack Automated Deployment of Oracle RAC Using Enterprise Manager Provisioning Pack By Kai Yu As a part of the Oracle Enterprise Manager s lifecycle management solutions, the Oracle Enterprise Manager Provisioning

More information

Oracle Database 12c: New Features for Administrators

Oracle Database 12c: New Features for Administrators Oracle University Contact Us: 67 52 67 24 Oracle Database 12c: New Features for Administrators Duration: 5 Days What you will learn In the Oracle Database 12c: New Features for Administrators course, you

More information

How to Build an RPM OVERVIEW UNDERSTANDING THE PROCESS OF BUILDING RPMS. Author: Chris Negus Editor: Allison Pranger 09/16/2011

How to Build an RPM OVERVIEW UNDERSTANDING THE PROCESS OF BUILDING RPMS. Author: Chris Negus Editor: Allison Pranger 09/16/2011 How to Build an RPM Author: Chris Negus Editor: Allison Pranger 09/16/2011 OVERVIEW You have created some software that you want to install on Red Hat Enterprise Linux systems. Now that it is done, the

More information

Oracle 12c Multitenant and Encryption in Real Life. Christian Pfundtner

Oracle 12c Multitenant and Encryption in Real Life. Christian Pfundtner Oracle 12c Multitenant and Encryption in Real Life Christian Pfundtner Christian Pfundtner, DB Masters GmbH Over 20 years of Oracle Database OCA, OCP, OCE, OCM, ACE Our Credo: Databases are our world 4

More information

Advanced Oracle DBA Course Details

Advanced Oracle DBA Course Details Advanced Oracle DBA Course Details By Besant Technologies Course Name Category Venue Advanced Oracle DBA (RAC, ASM, Data guard) Database Administration Besant Technologies No.24, Nagendra Nagar, Velachery

More information

ORACLE DATABASE 12C: NEW FEATURES FOR ADMINISTRATORS GRADE CURRICULAR. Enterprise Manager Express home page versus Enterprise Manager Database Control

ORACLE DATABASE 12C: NEW FEATURES FOR ADMINISTRATORS GRADE CURRICULAR. Enterprise Manager Express home page versus Enterprise Manager Database Control FACULDADE DE EDUCAÇÃO SUPERIOR DO PARANÁ CURSO DE EXTENSÃO UNIVERSITÁRIA ORACLE DATABASE 12C: NEW FEATURES FOR ADMINISTRATORS GRADE CURRICULAR Enterprise Manager and Other Tools Enterprise Manager (EM)

More information

Oracle Recovery Manager

Oracle Recovery Manager 1 sur 6 05/08/2014 14:17 ORACLE.COM TECHNOLOGY NETWORK PARTNERS STORE SUPPORT (Sign In / Register for a free DownloadsDocumentation Discussion Forums Articles Sample Code Training RSS Resources For PRODUCT

More information

Ultimate Guide to Oracle Storage

Ultimate Guide to Oracle Storage Ultimate Guide to Oracle Storage Presented by George Trujillo [email protected] George Trujillo Twenty two years IT experience with 19 years Oracle experience. Advanced database solutions such

More information

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide

TECHNICAL REPORT. Nimble Storage Oracle Backup and Recovery Guide TECHNICAL REPORT Nimble Storage Oracle Backup and Recovery Guide N I M B L E T E C H N I C A L R E P O R T : N I M B L E S T O R A G E F O R O R A C L E B A C K U P A N D R E C O V E R Y 1 Document Revision

More information

ORACLE DATABASE: ADMINISTRATION WORKSHOP I

ORACLE DATABASE: ADMINISTRATION WORKSHOP I ORACLE DATABASE: ADMINISTRATION WORKSHOP I CORPORATE COLLEGE SEMINAR SERIES Date: March 18 April 25 Presented by: Lone Star Corporate College in partnership with Oracle Workforce Development Program Format:

More information

Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux

Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux Installing IBM Websphere Application Server 7 and 8 on OS4 Enterprise Linux By the OS4 Documentation Team Prepared by Roberto J Dohnert Copyright 2013, PC/OpenSystems LLC This whitepaper describes how

More information

An Oracle White Paper January 2014. Oracle Database 12c: Full Transportable Export/Import

An Oracle White Paper January 2014. Oracle Database 12c: Full Transportable Export/Import An Oracle White Paper January 2014 Oracle Database 12c: Full Transportable Export/Import Introduction... 3 Benefits of Using Full Transportable Export/Import... 4 Full Transportable Export/Import Support

More information

About the Author About the Technical Contributors About the Technical Reviewers Acknowledgments. How to Use This Book

About the Author About the Technical Contributors About the Technical Reviewers Acknowledgments. How to Use This Book About the Author p. xv About the Technical Contributors p. xvi About the Technical Reviewers p. xvi Acknowledgments p. xix Preface p. xxiii About This Book p. xxiii How to Use This Book p. xxiv Appendices

More information

Oracle Software. Hardware. Training. Consulting. Mythics Complete.

Oracle Software. Hardware. Training. Consulting. Mythics Complete. Oracle Software. Hardware. Training. Consulting. Mythics Complete. Database Cloud in a Box DBaaS on Oracle Database Appliance [UGF10279] Oracle Open World 2015 Introduction to Erik Benner Erik Benner Enterprise

More information

OpenGeo Suite for Linux Release 3.0

OpenGeo Suite for Linux Release 3.0 OpenGeo Suite for Linux Release 3.0 OpenGeo October 02, 2012 Contents 1 Installing OpenGeo Suite on Ubuntu i 1.1 Installing OpenGeo Suite Enterprise Edition............................... ii 1.2 Upgrading.................................................

More information

Oracle Cloud Storage and File system

Oracle Cloud Storage and File system 2012 Tieto Corporation Oracle Cloud Storage and File system Andrejs Karpovs Oracle Apps DBA Tieto, [email protected] Few notes about me I Am a DBA Work in Tieto Have 4 years exprerience working

More information

Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance

Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance Deploying Oracle Database 12c with the Oracle ZFS Storage Appliance Paul Johnson Principal Software Engineer Bryce Cracco Senior Product Manager Nagendran J Principal Software Engineer Wendy Chen Principal

More information

Why Not Oracle Standard Edition? A Dbvisit White Paper By Anton Els

Why Not Oracle Standard Edition? A Dbvisit White Paper By Anton Els Why Not Oracle Standard Edition? A Dbvisit White Paper By Anton Els Copyright 2011-2013 Dbvisit Software Limited. All Rights Reserved Nov 2013 Executive Summary... 3 Target Audience... 3 Introduction...

More information

Performing Database and File System Backups and Restores Using Oracle Secure Backup

Performing Database and File System Backups and Restores Using Oracle Secure Backup Performing Database and File System Backups and Restores Using Oracle Secure Backup Purpose This lesson introduces you to Oracle Secure Backup which enables you to perform database and file system backups

More information

Oracle Data Mining. Administrator's Guide 11g Release 2 (11.2) E16807-08

Oracle Data Mining. Administrator's Guide 11g Release 2 (11.2) E16807-08 Oracle Data Mining Administrator's Guide 11g Release 2 (11.2) E16807-08 July 2013 Oracle Data Mining Administrator's Guide, 11g Release 2 (11.2) E16807-08 Copyright 1996, 2013, Oracle and/or its affiliates.

More information

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk.

Windows Template Creation Guide. How to build your own Windows VM templates for deployment in Cloudturk. Windows Template Creation Guide How to build your own Windows VM templates for deployment in Cloudturk. TABLE OF CONTENTS 1. Preparing the Server... 2 2. Installing Windows... 3 3. Creating a Template...

More information

SSIM Database Extension Pack 4.0 for Oracle on Linux Installation Guide

SSIM Database Extension Pack 4.0 for Oracle on Linux Installation Guide SSIM Database Extension Pack 4.0 for Oracle on Linux Installation Guide SSIM Database Extension Pack 4.0 for Oracle on Linux Installation Guide The software described in this book is furnished under a

More information

Storage Management for the Oracle Database on Red Hat Enterprise Linux 6: Using ASM With or Without ASMLib

Storage Management for the Oracle Database on Red Hat Enterprise Linux 6: Using ASM With or Without ASMLib Storage Management for the Oracle Database on Red Hat Enterprise Linux 6: Using ASM With or Without ASMLib Sayan Saha, Sue Denham & Lars Herrmann 05/02/2011 On 22 March 2011, Oracle posted the following

More information

How to resolve Root Certificate Expiry Issue for Enterprise Manager - Database Control (10.2.0.4)

How to resolve Root Certificate Expiry Issue for Enterprise Manager - Database Control (10.2.0.4) PURPOSE 14 th June, 2011 This paper demonstrates how to resolve the Oracle Enterprise Manager Database Control configuration errors in Oracle Database versions 10.2.0.4 or 10.2.0.5, arising due to the

More information

LAE 4.6.0 Enterprise Server Installation Guide

LAE 4.6.0 Enterprise Server Installation Guide LAE 4.6.0 Enterprise Server Installation Guide 2013 Lavastorm Analytics, Inc. Rev 01/2013 Contents Introduction... 3 Installing the LAE Server on UNIX... 3 Pre-Installation Steps... 3 1. Third-Party Software...

More information

Oracle Database Cloud Services OGh DBA & Middleware Day

Oracle Database Cloud Services OGh DBA & Middleware Day Oracle Database Cloud Services OGh DBA & Middleware Day Jan van Tiggelen Principal Sales Consultant Oracle Core Technology June 4th, 2015 Safe Harbor Statement The following is intended to outline our

More information

IBM WebSphere Application Server Version 7.0

IBM WebSphere Application Server Version 7.0 IBM WebSphere Application Server Version 7.0 Centralized Installation Manager for IBM WebSphere Application Server Network Deployment Version 7.0 Note: Before using this information, be sure to read the

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: 1.800.529.0165 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This Oracle Database 11g: Administration Workshop I Release 2

More information

Oracle Net Service Name Resolution

Oracle Net Service Name Resolution Oracle Net Service Name Resolution Getting Rid of the TNSNAMES.ORA File! Simon Pane Oracle Database Principal Consultant March 19, 2015 ABOUT ME Working with the Oracle DB since version 6 Oracle Certified

More information

Oracle 11g Database Administration

Oracle 11g Database Administration Oracle 11g Database Administration Part 1: Oracle 11g Administration Workshop I A. Exploring the Oracle Database Architecture 1. Oracle Database Architecture Overview 2. Interacting with an Oracle Database

More information

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability

Oracle Database Performance Management Best Practices Workshop. AIOUG Product Management Team Database Manageability Oracle Database Performance Management Best Practices Workshop AIOUG Product Management Team Database Manageability Table of Contents Oracle DB Performance Management... 3 A. Configure SPA Quick Check...6

More information

Getting Started with Database Provisioning

Getting Started with Database Provisioning Getting Started with Database Provisioning VMware vfabric Data Director 2.0 This document supports the version of each product listed and supports all subsequent versions until the document is replaced

More information

SQL and PL/SQL Development and Leveraging Oracle Multitenant in Visual Studio. Christian Shay Product Manager, NET Technologies Oracle

SQL and PL/SQL Development and Leveraging Oracle Multitenant in Visual Studio. Christian Shay Product Manager, NET Technologies Oracle SQL and PL/SQL Development and Leveraging Oracle Multitenant in Visual Studio Christian Shay Product Manager, NET Technologies Oracle Oracle Confidential Internal/Restricted/Highly Restricted Program Agenda

More information

Oracle MultiTenant Pros and Cons

Oracle MultiTenant Pros and Cons Oracle MultiTenant Pros and Cons Overview With the release of Oracle Database Server 12c, Oracle changed the architecture of the database significantly to support multiple databases within a single instance,

More information

Zenoss Resource Manager ZenUp Installation and Administration

Zenoss Resource Manager ZenUp Installation and Administration Zenoss Resource Manager ZenUp Installation and Administration Zenoss Resource Manager ZenUp Installation and Administration Copyright 2014 Zenoss, Inc. All rights reserved. Redistribution or duplication

More information

Oracle security done right. Secure database access on the (unix and linux) operating system level.

Oracle security done right. Secure database access on the (unix and linux) operating system level. Oracle security done right. Secure database access on the (unix and linux) operating system level. By Frits Hoogland, VX Company Security is an important part of modern database administration, and is

More information

ZERO DOWNTIME BI-DIRECTIONAL PHYSICAL TO VIRTUAL MIGRATION FOR ORACLE EBS R12 WITH RAC ON VBLOCK SYSTEMS

ZERO DOWNTIME BI-DIRECTIONAL PHYSICAL TO VIRTUAL MIGRATION FOR ORACLE EBS R12 WITH RAC ON VBLOCK SYSTEMS Zero Downtime Bi-Directional Physical to Virtual Migration for Oracle EBS R12 with RAC on Vblock Systems Table of Contents www.vce.com ZERO DOWNTIME BI-DIRECTIONAL PHYSICAL TO VIRTUAL MIGRATION FOR ORACLE

More information

INTRODUCTION TO CLOUD MANAGEMENT

INTRODUCTION TO CLOUD MANAGEMENT CONFIGURING AND MANAGING A PRIVATE CLOUD WITH ORACLE ENTERPRISE MANAGER 12C Kai Yu, Dell Inc. INTRODUCTION TO CLOUD MANAGEMENT Oracle cloud supports several types of resource service models: Infrastructure

More information

RecoveryVault Express Client User Manual

RecoveryVault Express Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I

COURCE TITLE DURATION. Oracle Database 11g: Administration Workshop I COURCE TITLE DURATION DBA 11g Oracle Database 11g: Administration Workshop I 40 H. What you will learn: This course is designed to give students a firm foundation in basic administration of Oracle Database

More information

Monitoring Clearswift Gateways with SCOM

Monitoring Clearswift Gateways with SCOM Technical Guide Version 01 28/11/2014 Documentation Information File Name Document Author Document Filename Monitoring the gateways with _v1.docx Iván Blesa Monitoring the gateways with _v1.docx Issue

More information

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0

Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5. Version 1.0 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 Version 1.0 November 2008 Deploying IBM Lotus Domino on Red Hat Enterprise Linux 5 1801 Varsity Drive Raleigh NC 27606-2072 USA Phone: +1 919 754

More information

EMC Replication Manager Integration with Oracle Database Server

EMC Replication Manager Integration with Oracle Database Server White Paper EMC Replication Manager Integration with Oracle Database Server A Detailed Review Abstract This white paper offers an in-depth look at how EMC Replication Manager integrates with Oracle Database

More information

Online Backup Linux Client User Manual

Online Backup Linux Client User Manual Online Backup Linux Client User Manual Software version 4.0.x For Linux distributions August 2011 Version 1.0 Disclaimer This document is compiled with the greatest possible care. However, errors might

More information

SnapManager for Oracle 2.2. Anand Ranganathan Product & Partner Engineer (PPE)

SnapManager for Oracle 2.2. Anand Ranganathan Product & Partner Engineer (PPE) SnapManager for Oracle 2.2 Anand Ranganathan Product & Partner Engineer (PPE) Agenda Introduction Key Features Concepts Platform & Protocol Support Installation & Configuration New in Version 2.2 Coming

More information

MySQL Backups: From strategy to Implementation

MySQL Backups: From strategy to Implementation MySQL Backups: From strategy to Implementation Mike Frank Senior Product Manager 1 Program Agenda Introduction The 5 Key Steps Advanced Options References 2 Backups are a DBAs Top Priority Be Prepared

More information

Online Backup Client User Manual

Online Backup Client User Manual For Linux distributions Software version 4.1.7 Version 2.0 Disclaimer This document is compiled with the greatest possible care. However, errors might have been introduced caused by human mistakes or by

More information

Deployment Guide: Unidesk and Hyper- V

Deployment Guide: Unidesk and Hyper- V TECHNICAL WHITE PAPER Deployment Guide: Unidesk and Hyper- V This document provides a high level overview of Unidesk 3.x and Remote Desktop Services. It covers how Unidesk works, an architectural overview

More information

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/-

Oracle. Brief Course Content This course can be done in modular form as per the detail below. ORA-1 Oracle Database 10g: SQL 4 Weeks 4000/- Oracle Objective: Oracle has many advantages and features that makes it popular and thereby makes it as the world's largest enterprise software company. Oracle is used for almost all large application

More information

Oracle Database 11g: Administration Workshop I Release 2

Oracle Database 11g: Administration Workshop I Release 2 Oracle University Contact Us: (+202) 35 35 02 54 Oracle Database 11g: Administration Workshop I Release 2 Duration: 5 Days What you will learn This course is designed to give you a firm foundation in basic

More information

Department of Veterans Affairs VistA Integration Adapter Release 1.0.5.0 Enhancement Manual

Department of Veterans Affairs VistA Integration Adapter Release 1.0.5.0 Enhancement Manual Department of Veterans Affairs VistA Integration Adapter Release 1.0.5.0 Enhancement Manual Version 1.1 September 2014 Revision History Date Version Description Author 09/28/2014 1.0 Updates associated

More information

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Administration Workshop I Release 2. 5 Jours [35 Heures]

Objectif. Participant. Prérequis. Pédagogie. Oracle Database 11g - Administration Workshop I Release 2. 5 Jours [35 Heures] Plan de cours disponible à l adresse http://www.adhara.fr/.aspx Objectif Monitor performance Describe Oracle Database Architecture Install Oracle Grid Infrastructure Install and configure Oracle Database

More information

DocuShare Installation Guide

DocuShare Installation Guide DocuShare Installation Guide Publication date: February 2011 This document supports DocuShare Release 6.6.1 Prepared by: Xerox Corporation DocuShare Business Unit 3400 Hillview Avenue Palo Alto, California

More information

Oracle WebCenter Sites. Backup and Recovery Guide 11g Release 1 (11.1.1)

Oracle WebCenter Sites. Backup and Recovery Guide 11g Release 1 (11.1.1) Oracle WebCenter Sites Backup and Recovery Guide 11g Release 1 (11.1.1) April 2012 Oracle WebCenter Sites Backup and Recovery Guide, 11g Release 1 (11.1.1) Copyright 2012 Oracle and/or its affiliates.

More information

Oracle Enterprise Manager Cloud Control 12c

Oracle Enterprise Manager Cloud Control 12c Oracle Enterprise Manager Cloud Control 12c (Setting up Metrics and Monitoring) Top 10 Features for DBAs Prepared by: Leighton L. Nelson About Me @leight0nn About Me Agenda Setting up Metrics and Monitoring

More information

Using RMAN to restore a database to another server in an ASM environment

Using RMAN to restore a database to another server in an ASM environment Using RMAN to restore a database to another server in an ASM environment It is possible to restore an Oracle 11g database to another server easily in an ASM environment by following the steps below. 1.

More information

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW

D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW D12C-AIU Oracle Database 12c: Admin, Install and Upgrade Accelerated NEW Duration: 5 Days What you will learn This Oracle Database 12c: Admin, Install and Upgrade Accelerated course will provide you with

More information

11. Oracle Recovery Manager Overview and Configuration.

11. Oracle Recovery Manager Overview and Configuration. 11. Oracle Recovery Manager Overview and Configuration. Abstract: This lesson provides an overview of RMAN, including the capabilities and components of the RMAN tool. The RMAN utility attempts to move

More information

Using Single Sign-on with Samba. Appendices. Glossary. Using Single Sign-on with Samba. SonicOS Enhanced

Using Single Sign-on with Samba. Appendices. Glossary. Using Single Sign-on with Samba. SonicOS Enhanced SonicOS Enhanced Using Single Sign-on with Samba Using Single Sign-on with Samba Introduction Recommended Versions Caveats SonicWALL Single Sign-on in Windows SonicWALL Single Sign-on with Samba Checking

More information

Implementing a Weblogic Architecture with High Availability

Implementing a Weblogic Architecture with High Availability Implementing a Weblogic Architecture with High Availability Contents 1. Introduction... 3 2. Topology... 3 2.1. Limitations... 3 2.2. Servers diagram... 4 2.3. Weblogic diagram... 4 3. Components... 6

More information

DS License Server. Installation and Configuration Guide. 3DEXPERIENCE R2014x

DS License Server. Installation and Configuration Guide. 3DEXPERIENCE R2014x DS License Server Installation and Configuration Guide 3DEXPERIENCE R2014x Contains JAVA SE RUNTIME ENVIRONMENT (JRE) VERSION 7 Contains IBM(R) 64-bit SDK for AIX(TM), Java(TM) Technology Edition, Version

More information

Think Outside the Data Center: Monitoring Retail and Cloud Locations CON7513 - Oracle OpenWorld 2015

Think Outside the Data Center: Monitoring Retail and Cloud Locations CON7513 - Oracle OpenWorld 2015 Think Outside the Data Center: Monitoring Retail and Cloud Locations CON7513 - Oracle OpenWorld 2015 Roy Prowell ( Oracle Database 11g OCP ) Lead Engineer/Systems Architect, Oracle Enterprise Manager Safeway,

More information

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved.

MarkLogic Server. Installation Guide for All Platforms. MarkLogic 8 February, 2015. Copyright 2015 MarkLogic Corporation. All rights reserved. Installation Guide for All Platforms 1 MarkLogic 8 February, 2015 Last Revised: 8.0-4, November, 2015 Copyright 2015 MarkLogic Corporation. All rights reserved. Table of Contents Table of Contents Installation

More information

ORACLE DATABASE 11G: COMPLETE

ORACLE DATABASE 11G: COMPLETE ORACLE DATABASE 11G: COMPLETE 1. ORACLE DATABASE 11G: SQL FUNDAMENTALS I - SELF-STUDY COURSE a) Using SQL to Query Your Database Using SQL in Oracle Database 11g Retrieving, Restricting and Sorting Data

More information

How to build secure Apache Tomcat deployments with RPM.

How to build secure Apache Tomcat deployments with RPM. How to build secure Apache Tomcat deployments with RPM. My security experiences really tie into everyday work. A colleague called me from my last gig and asked how to build a RedHat Package Manager (RPM)

More information

Oracle vs. SQL Server. Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012

Oracle vs. SQL Server. Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012 Oracle vs. SQL Server Simon Pane & Steve Recsky First4 Database Partners Inc. September 20, 2012 Agenda Discussions on the various advantages and disadvantages of one platform vs. the other For each topic,

More information

EVault Software. Course 361 Protecting Linux and UNIX with EVault

EVault Software. Course 361 Protecting Linux and UNIX with EVault EVault Software Course 361 Protecting Linux and UNIX with EVault Table of Contents Objectives... 3 Scenario... 3 Estimated Time to Complete This Lab... 3 Requirements for This Lab... 3 Computers Used in

More information

ORACLE DATABASE ADMINISTRATOR RESUME

ORACLE DATABASE ADMINISTRATOR RESUME 1 of 5 1/17/2015 1:28 PM ORACLE DATABASE ADMINISTRATOR RESUME ORACLE DBA Resumes Please note that this is a not a Job Board - We are an I.T Staffing Company and we provide candidates on a Contract basis.

More information

ORACLE NOSQL DATABASE HANDS-ON WORKSHOP Cluster Deployment and Management

ORACLE NOSQL DATABASE HANDS-ON WORKSHOP Cluster Deployment and Management ORACLE NOSQL DATABASE HANDS-ON WORKSHOP Cluster Deployment and Management Lab Exercise 1 Deploy 3x3 NoSQL Cluster into single Datacenters Objective: Learn from your experience how simple and intuitive

More information

StreamServe Persuasion SP4

StreamServe Persuasion SP4 StreamServe Persuasion SP4 Installation Guide Rev B StreamServe Persuasion SP4 Installation Guide Rev B 2001-2009 STREAMSERVE, INC. ALL RIGHTS RESERVED United States patent #7,127,520 No part of this document

More information

SysPatrol - Server Security Monitor

SysPatrol - Server Security Monitor SysPatrol Server Security Monitor User Manual Version 2.2 Sep 2013 www.flexense.com www.syspatrol.com 1 Product Overview SysPatrol is a server security monitoring solution allowing one to monitor one or

More information

Oracle Universal Installer

Oracle Universal Installer Oracle Universal Installer and OPatch User s Guide 11g Release 1 (11.1) for Windows and UNIX B31207-10 August 2010 Oracle Universal Installer and OPatch User s Guide, 11g Release 1 (11.1) for Windows and

More information

Highly Available NFS over Oracle ASM Cluster File System (ACFS)

Highly Available NFS over Oracle ASM Cluster File System (ACFS) An Oracle White Paper May 2013 Highly Available NFS over Oracle ASM Cluster File System (ACFS) Introduction High Availability NFS (HANFS) provides uninterrupted service of NFS V2/V3 exported paths by exposing

More information

Oracle Database 12c Upgrade Tools and Best Practices from Oracle Support

Oracle Database 12c Upgrade Tools and Best Practices from Oracle Support Oracle Database 12c Upgrade Tools and Best Practices from Oracle Support Roderick Manalac Architect Database Proactive Support Oracle Software Support October 29, 2015 Safe Harbor Statement The following

More information

Installation Guide for FTMS 1.6.0 and Node Manager 1.6.0

Installation Guide for FTMS 1.6.0 and Node Manager 1.6.0 Installation Guide for FTMS 1.6.0 and Node Manager 1.6.0 Table of Contents Overview... 2 FTMS Server Hardware Requirements... 2 Tested Operating Systems... 2 Node Manager... 2 User Interfaces... 3 License

More information

Configuring and Integrating Oracle

Configuring and Integrating Oracle Configuring and Integrating Oracle The Basics of Oracle 3 Configuring SAM to Monitor an Oracle Database Server 4 This document includes basic information about Oracle and its role with SolarWinds SAM Adding

More information

Oracle Database 10g: New Features for Administrators

Oracle Database 10g: New Features for Administrators Oracle Database 10g: New Features for Administrators Course ON10G 5 Day(s) 30:00 Hours Introduction This course introduces students to the new features in Oracle Database 10g Release 2 - the database for

More information

Oracle Database Public Cloud Services

Oracle Database Public Cloud Services Oracle Database Public Cloud Services A Strategy and Technology Overview Bob Zeolla Principal Sales Consultant Oracle Education & Research November 23, 2015 Safe Harbor Statement The following is intended

More information

Top 10 Things You Always Wanted to Know About Automatic Storage Management But Were Afraid to Ask

Top 10 Things You Always Wanted to Know About Automatic Storage Management But Were Afraid to Ask Top 10 Things You Always Wanted to Know About Automatic Storage Management But Were Afraid to Ask Nitin Vengurlekar RAC/ASM Engineering Grid Product Strategy Agenda ASM Overview 2

More information

USER GUIDE. Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20

USER GUIDE. Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20 USER GUIDE Product Snow Inventory Client for Unix Version 1.1.03 Release date 2015-04-29 Document date 2015-05-20 CONTENT ABOUT THIS DOCUMENT... 3 OVERVIEW... 3 OPERATING SYSTEMS SUPPORTED... 3 PREREQUISITES...

More information

Administration GUIDE. SharePoint Server idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201

Administration GUIDE. SharePoint Server idataagent. Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201 Administration GUIDE SharePoint Server idataagent Published On: 11/19/2013 V10 Service Pack 4A Page 1 of 201 Getting Started - SharePoint Server idataagent Overview Deployment Configuration Decision Table

More information

Oracle Database 11g: RAC Administration Release 2

Oracle Database 11g: RAC Administration Release 2 Oracle University Contact Us: 01-800-919-3027 & 01-800-913-0322 Oracle Database 11g: RAC Administration Release 2 Duration: 4 Days What you will learn This Oracle Database 11g: RAC Administration Release

More information

Installation & Upgrade Guide

Installation & Upgrade Guide Installation & Upgrade Guide Document Release: September 2012 SnapLogic, Inc. 71 East Third Avenue San Mateo, California 94401 U.S.A. www.snaplogic.com Copyright Information 2011-2012 SnapLogic, Inc. All

More information

Introduction. Automated Discovery of IT assets

Introduction. Automated Discovery of IT assets ORACLE DATABASE LIFECYCLE MANAGEMENT PACK ORACLE DATABASE LIFECYCLE MANAGEMENT PACK KEY FEATURES Auto Discovery of hosts and databases Inventory tracking and reporting Database provisioning Schema and

More information

Key Factors For a Successful ODA Deployment

Key Factors For a Successful ODA Deployment Key Factors For a Successful ODA Deployment Caleb Small [email protected] The Goal To Provide blueprint for successful deployment of ODA devices in a common industry configuration Background Primary database

More information

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices

Oracle Backup and Recovery Best Practices Dell Compellent Storage Center. Dell Compellent Technical Best Practices Oracle Backup and Recovery Best Practices Dell Compellent Storage Center Dell Compellent Technical Best Practices ii Document Revision Table 1. Revision History Date Revision Description 6/15/2011 A Initial

More information

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts

AlienVault Unified Security Management (USM) 4.x-5.x. Deploying HIDS Agents to Linux Hosts AlienVault Unified Security Management (USM) 4.x-5.x Deploying HIDS Agents to Linux Hosts USM 4.x-5.x Deploying HIDS Agents to Linux Hosts, rev. 2 Copyright 2015 AlienVault, Inc. All rights reserved. AlienVault,

More information

1. Product Information

1. Product Information ORIXCLOUD BACKUP CLIENT USER MANUAL LINUX 1. Product Information Product: Orixcloud Backup Client for Linux Version: 4.1.7 1.1 System Requirements Linux (RedHat, SuSE, Debian and Debian based systems such

More information

INF-110. GPFS Installation

INF-110. GPFS Installation INF-110 GPFS Installation Overview Plan the installation Before installing any software, it is important to plan the GPFS installation by choosing the hardware, deciding which kind of disk connectivity

More information

Data virtualization: playing with Oracle 12c on Docker containers

Data virtualization: playing with Oracle 12c on Docker containers Data virtualization: playing with Oracle 12c on Docker containers This year will be about data virtualization. We can t continue to multiply our database storage for each preprod, test, dev, etc. environments

More information

Installing Oracle 12c Enterprise on Windows 7 64-Bit

Installing Oracle 12c Enterprise on Windows 7 64-Bit JTHOMAS ENTERPRISES LLC Installing Oracle 12c Enterprise on Windows 7 64-Bit DOLOR SET AMET Overview This guide will step you through the process on installing a desktop-class Oracle Database Enterprises

More information