The above code works perfectly in SQL*Plus, with suitable definitions in the remote database connection. There must be some confounding piece of software in your actual execution environment.
Try using the "in-line comment" form, instead of the "until end of line comment". Stylistically there's no need for ";" at the end of SQL statements unless your execution environment needs them, or you are submitting a multi-line procedural block of code (which this is not).
select *
from tax.tax_payer@reis tp
left outer join
re_right@reis r
on ( tp.tin = r.tin
or tp.tin = r.tin_a1
or tp.tin = r.tin_a2
)
where ( r.right_status = -1
or r.right_status is null
)
and tp.je_id = 12
/* and r.right_id is not null */
Also, you may want to move all of the computations into the remote database instead of pulling the data across the wire and doing the joins on your more-local database. (Some more recent versions of Oracle will do this optimization for you.)
C#? In what form is this query being executed? If it's being turned into an SQL string and then executed via a .NET object, it could be processing the comment incorrectly. – Dan J Mar 23 '11 at 18:43c#tag indicates that he runs the code in C#. – jgauffin Mar 23 '11 at 18:52