Hi ,
We are geting below error when using an array and we are using SAS Di to run the code.
data &_output;
set &_input;
array char_input[*] _character_;
do i=1 to dim(char_input);
char_input[i]=tranwrd(char_input[i],'$',' ');
end;
run;
ERROR: Sort execution failure.
ERROR: SQL View WORK.WADMZKC2 could not be processed
the input dataset is having around 4 Lakh records.
Kindly let me know how we can solve this error.