Memory Issues after joining tables
Hello All,
Very frustrating issue here. I perform a join of two tables. Both tables are small, about 9-10 rows and 40 columns. The join completes successfully with this code.dt_join = dt1 << (With(dt2), Merge Same Name Columns, By Matching Columns(:col1 = :col1, :col2=:col2), Include Nonmatches(1,1), Preserve main table order(1));
If I run any code after that there are no issues. My total memory wit...