Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I will link LOAD NoConcatenate 2 tables with an inner join on field PROJECT_PKID
TABLE_A_TEMP:
NoConcatenateLOAD * Resident TABLE_AWHERE LCM_HED_TP_CD='CNT';
DROP TABLE TABLE_A;
RENAME Table TABLE_A_TEMP to TABLE_A;
INNER JOIN (PROJECT_PKID) // table A and Table B have a common field PROJECT_PKID
TABLE_B_TEMP:
NoConcatenateLOAD * Resident TABLE_B;
DROP TABLE TABLE_B;
RENAME Table TABLE_B_TEMP TO TABLE_B;
but the NoConcatenate doesn't work with the TABLE_B ,
If a delete NoConcatenate the script works but the Table B is concatenated to the Table A
After inner join, we don't specify field name, its the first table we want to inner join with the upcoming table.
May be try like this -
INNER JOIN (TABLE_A) // table A and Table B have a common field PROJECT_PKID
LOAD * Resident TABLE_B;
The final output should be in Table_A.