Phone (800) 766-1884 for immediate Oracle support & training
Free Oracle Tips

Home Home
Oracle Monitoring
Growth Monitoring
Emergency DBA Support
Installs & Upgrades
Oracle Migration
Oracle Support Plan
Oracle SQL Tuning
Oracle Performance Tuning

 Our Remote DBA Clients

 

Free Oracle Tips


 
HTML Text

Free Oracle App Server Tips


 
HTML Text

 

   
  Oracle Tips by Burleson

Chapter 13 Oracle 10g Enhancements

The query selected all the columns, including the relevant columns SSN and CLAIM_AMOUNT; hence the restrictions were applied.

  • select count(*) from claims;

Not Restricted. The actual count of the records in the table is returned. Since the user did not specifically select any of the relevant columns, the restrictions were not placed.

  • select claim_id from claims;

Not Restricted. Since the query has no reference to SSN or CLAIM_AMOUNT, which are the relevant columns, all the records will be returned.

  • select claim_id from claims where SSN = ‘123456789’;

Restricted. Although the query did not specify the columns SSN or CLAIM_AMOUNT, the predicate has the SSN column; hence the restrictions are placed.

Auditing Enhancements

Oracle 10g supports a new type of auditing known as Extended Database Auditing. If specified, the regular AUDIT features also capture the exact SQL statements, even the bind variables. The option is specified at the instance level in the initialization file as

audit_trail = db_extended

The audit trails now provide a lot more information. The aud$ table has been expanded with several additional columns. Table 13.1 shows the additional columns of aud$ and their meaning.


The above text is an excerpt from:

Oracle Privacy Security Auditing

The Final Word on Oracle Security

 

This is the only authoritative book on Oracle Security, Oracle Privacy, and Oracle Auditing written by two of the world’s leading Oracle Security experts.

This indispensable book is only $39.95 and has an immediate download of working security scripts:

 

http://rampant-books.com/book_2003_2_audit.htm

 

Burleson Oracle consulting & training



 

 

WISE Oracle monitoring software
 

 

Oracle forum for DBA 

 

Rampant TechPress Oracle book publisher

image 

  

 

E-mail us for BC Oracle support:   

Copyright © 1996 -  2012 by Burleson Enterprises. All rights reserved.

Oracle® is the registered trademark of Oracle Corporation.