engineer2100
Programmer
Hi,
I have query inside a package which takes a form as below
Now this code works fine on our local dev database but fails on client database with an "invalid Identifier" on "a.k".
What seems to be the problem? I like spent 1 hr breaking my head over the issue, but in vain.
Thanks
Engi
I have query inside a package which takes a form as below
Code:
select x,
y,
(SELECT
a, b
From P inner join
(select c,d from Q where q.k = a.k) xx
ON P.C = xx.C) z,
t,
u
from
a
....
Now this code works fine on our local dev database but fails on client database with an "invalid Identifier" on "a.k".
What seems to be the problem? I like spent 1 hr breaking my head over the issue, but in vain.
Thanks
Engi