Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: select "triggers"

Re: select "triggers"

From: Prem K Mehrotra <premmehrotra_at_hotmail.com>
Date: 29 Apr 2004 09:20:06 -0700
Message-ID: <43441e77.0404290820.5297ab8e@posting.google.com>


"Anurag Varma" <avdbi_at_hotmail.com> wrote in message news:<jf%jc.126856$e17.120642_at_twister.nyroc.rr.com>...
> "Prem K Mehrotra" <premmehrotra_at_hotmail.com> wrote in message news:43441e77.0404281938.5ff05f82_at_posting.google.com...
> > Oracle 9i introduced Fine Grained Auditing whereby when data is
> > selected from a table,
> > audit event handler can be invoked to track changes. I, however, want
> > to do follwing:
> >
> > when a row is selected, I want to modify its data before it is
> > returned to user.
> > I cannot do it in application code because my application is third
> > party. Is there something like a insert trigger for select (reverse
> > of insert), where value returned can be modified, e.eg.m if data was
> > stored in a column in compressed fsaion, I
> > want to return it as uncompressed in a "select" trigger.
> >
> > I looked at FGA, I could not find anyway to aalter returned data.
> >
> >
> > Appreciate any help,
> >
> > Thanks a lot.
>
> Re-think your FGA approach .. and instead create a view.
> That takes care of your select.
> "create or replace view myview as select col1, myfunc.uncompress(col2) from mytable".
>
> And use instead of triggers to take care of inserts/updates/deletes to the view.
>
> Anurag

Anurag:

Good suggestion. I did not think of the view earlier. Oracle has many restrictions on what can be done inside a functin which is accessed from sql.
I hope those restriction do not cause problems when implementing uncmpression.

I will still like to know whether in FGA audit handler, there is anyway to modify the returned value, that's why I had created this thread. Received on Thu Apr 29 2004 - 11:20:06 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US