That’s Me

Gavin Soorma
  • Oracle Certified Professional
  • 7.3, 8i, 9i,10g, 11g
  • 11i Apps DBA OCP
  • 10g RAC OCE
  • Certified GoldenGate Implementation Specialist
  • 10g OCM
  • 11g OCM

  • Feedback

    1,650,000 hits

    Thanks A MILLION for your support!

    Please send me your valuable feedback and suggestions






    11g Tablespace Encryption

    In Oracle 10g itself Transparent Data Encryption (TDE) was introduced. But the downside of that feature was that we could only perform the encryption individually at the table column level.

    Now in Oracle 11g, we can enable encryption at the tablespace level and that will then cascade down to every table which resides in that particular tablespace.

    Let’s now see the steps involved.

    We need to specify the encryption wallet location in the sqlnet.ora file as shoewn below.

    ENCRYPTION_WALLET_LOCATION=
    (SOURCE=(METHOD=FILE)(METHOD_DATA=
    (DIRECTORY=/u01/app/oracle/admin/leven202/wallet)))

    Next provide an encryption key for the wallet. Think of it as a password which will be required to open the wallet.

    SQL> ALTER SYSTEM SET ENCRYPTION KEY AUTHENTICATED BY “gavin”;

    System altered.

    We will see that a file ‘ewallet.p12′ has been created in the location which we specified for the wallet in the sqlnet.ora.

    SQL> !ls /u01/app/oracle/admin/leven202/wallet
    ewallet.p12

    Note – this will also automatically open the wallet as well. If we try and open the

    Continue reading 11g Tablespace Encryption

    11g Upgrade Workshop and some upgrade lessons learnt

    As a large number of the Oracle community would I guess be in the process of upgrading to 11g (Release 2 and its patch is already available), I am including some presentations taken from the 11g Upgrade Workshop which was conducted by Oracle Corp staff members Roy Swonger & Mike Dietrich.

    The workshop was highly detailed but very practical in nature and is a must read for anyone who has not attended these workshops, but are considering upgrading to 11g in the near future.

    Here are the workshop slides:

    upgrade11gr1_workshop1
    upgrade11gr1_workshop2

    Here are some other upgrade tips which I have picked up along the way.

    Upgrade of the database is NOT dependent of size of the database. It depends on options installed in the database like Spatial, Text, Java, Intermedia etd.

    Upgrade typically can take between 90-180 minutes on a machine with fairly standard specifications.

    Compilation of INVALID objects is where a majority of the time is

    Continue reading 11g Upgrade Workshop and some upgrade lessons learnt

    Upgrading from 10g to 11g Release 2 with a physical standby database

    This note details the procedure for upgrading a 10.2.0.2 database running on a Windows 2003 Server platform to an Oracle 11g Release 2 database on the same platform using the Database Upgrade Assistant.

    Addtional steps are shown in this note which deals with how to perform the upgrade of the Data Guard Physical Standby database at the same time as when the upgrade of the Primary Database is in progress.

    The notes on Oracle Metalink related to performing a database upgrade of the standby database are not very clear and point us to the official Oracle documentation whch is also not very clear. Hope this note of mine makes things more clear and would like some feedbcak from the community after attempting the same.

    Read the note …..