Calculated Field in Load Script takes much time!!!
Hi All,
I have to create a calculated field (a3 * b1) / b2 as c1 from the below script. But the issue is that each table is having more than 10 Million records and the calculation in taking a huge time.
Any other approaches to do this?
My script is like below:
I have a scenario like this:
A: ////12 million records
Load
a1,
a2,
a3
from A.qvd;
Left join
Load //// 10 million records
a1,
b1,
b2
from B.qvd;
A_New:
Load
*,
(a3 * b1) / b2 as c1 ///// This creation takes a huge time because of millions of records.