Hi Folks,
I'm creating a scripted Calculation view with below sql query,
var_out = SELECT A.PERIO, SUM(A.VV010) AS Revenue, SUM(A.VV290) AS Price_Variance, A.VKORG from _SYS_BIC."ASHOK_ECC/AV_ACTUAL" AS A JOIN _SYS_BIC."ASHOK_ECC/AV_PLAN" AS B ON A.VKORG = B.VKORG
GROUP BY A.PERIO, A.VKORG ORDER BY A.PERIO;
while previewing the data I'm receiving an error "column store error search table error 9 memory allocation failed".
Earlier I have created an scripted calculation view by joining two analytic views and it came of successfully... But his one I'm trying to join both Analytic and Attribute view.
Could anyone explain me why I'm getting this error?