views:

9

answers:

1

While using inner join on Pro*C I am getting the below error:

PCC-S-02201, Encountered the symbol "inner" when expecting one of the following:

I've just used a simple inner join. When I searched for solution, I was told that 10g doesn't support these kind of syntax and I should use dynamic SQL instead. Is that true? How to achieve inner join using dynamic SQL?

A: 

Pro*C 10g version doesn't allow inner/outer joins. If you want to have these, you will have to upgrade your Pro*C compiler.
If you use, 11g you can use the solution suggested here: http://forums.oracle.com/forums/thread.jspa?threadID=665519

San