Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi QV Experts,
I have 2 fields that i renamed in the script in one particular table.
I need to use the same re-named fields to add a calculated field in the same table. It is not letting me do that. Any work around?
Thanks,
Ram
You need to use preceding load:
LOAD
<<Renamed field>>
....,
;
LOAD
Field as Renamed Field,
...,
from Table ;
You can use resident load too..
-Siva