I'm struggling with the following problem. I want to restrict access to a table using Oracle VPD. In the where clause that the select policy function returns I need a reference to the table in a subquery as follows:

select * from Table t1
where not exists (select 1 from Table t2 where t2.name=t1.name and t2.date=t1.date)

(The example doesn't make a lot of sense except to illustrate the problem)

I have no control over the select part of the query.

select * from Table t1

The table can be given any alias or none at all. So therefore I have no idea how to reference the table in the where clause. Is there a way to get around this?

(Oracle 10GR2)

link|improve this question

69% accept rate
OK, thanks to Tony I got my solution. where (name,date) not in (select name,date ...) – Rene Oct 19 '10 at 13:09
feedback

1 Answer

up vote 0 down vote accepted

I think you will need to use NOT IN:

(name, datecol) not in (select name, datecol from table2)
link|improve this answer
Thanks for the workaround but I have two columns to compare. I'll update my example accordingly – Rene Oct 19 '10 at 13:05
I have updated my answer... – Tony Andrews Oct 19 '10 at 13:10
Thanks sometimes the solution is staring you in the face... but that's why there is Stackoverlflow – Rene Oct 19 '10 at 13:20
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.