Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I am getting the table not found error...in the attached qvw
can anyone help?
Hi
you mast insert NoConcatenate like this
NoConcatenate
RatesUSD:
Load
Currency,
DATE,
Rates
Resident Tab1;
DROP Table Tab1;
Table1:
Load * inline
[
A,B
10.20
];
Tab3:
Load * Inline
[A,F
10,90
];
Left join (Tab3)
load *
Resident Table1;
I've seen your doc but what do you want to do?
I am trying to left join a resident table with other resident table where I encounter table not found error. attached was a example. but in my original doc I keep getting the same error.
Hi Gautham,
You missed INLINE keyword in your script, please try below script
Table1:
Load * inline
[
A,B
10.20
];
Tab3:
Load *
INLINE
[A,F
10,90
];
Left join (Tab3)
load *
Resident Table1;
So this could be the solution?
Table1:
Load * inline
[
A,B
10,20
];
Left Join
Tab3:
Load * Inline
[A,F
10,90
];
Hi. You forget inline in second table
Table1:
Load * inline
[
A,B
10.20
];
Tab3:
Load * inline
Hi Gautham,
Another way of doing it that works for me:
Tab3:
Load * inline
[A,F
10,90
];
Left join (Tab3)
Load * inline
[
A,B
10,20
];
hi,
attached the document where I face the issue by replicating with similar example.