This syntax is not acceptable.
it has to be done something like this...
select * from ...
where ( col1, col2, col3, col4 ) not in ( select * from viewname ) ;
this will work as long as there are 4 columns in the view with the same data type family.
Thanks,