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: masking column values

Re: masking column values

From: <chopras_at_gmail.com>
Date: 11 Feb 2005 10:09:39 -0800
Message-ID: <1108145379.488767.100410@g14g2000cwa.googlegroups.com>


p1 and p2 are not any attributes. They represented arbitrary predicates in the example.

For example the query could be

select name, id, dept, sal
from emp
where (sal < 5000)
union
select name, id, dept, null
from emp
where (sal > 5000);

The only point was that the predicates p1 and p2 do not act on the same tuples.

Additionally I cannot use VPD to solve this issue. Im wondering if a good solution exists using views.

Thanks...

Sandeep Received on Fri Feb 11 2005 - 12:09:39 CST

Original text of this message

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