Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
Please help me in this..
If you use sum you must use group by clause ....
Temp:
Load
Customer,
Sales
From TableName;
NoConcatenate
Final:
Load
Customer,
SUM(Sales) as TotalSales
Resident Temp
Group By Customer;
Drop table Temp;
Hi thnx for reply,
Yes i have used group by clause also..
Hi All,
Thanx for your replies,
may be my question is not very clear i believe.
am creating one NEW_TABLE by using multiple RESIDENT LOADS.
i have used 4 resident loads, in the creation of NEW_TABLE I have already used Group by clause on one sum() function.
i am facing problem in implementing one AGGR() function..
is there any limitation in sing AGR() in resident load..?
Could you please upload sample qvw?