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 with just Chrome and File explorer and JMP is about 10%. However, if I try to do anything with the newly joined table the whole JMP app becomes unresponsive and has to be force closed.
Additionally, I had also tried (my ultimate goal) to join the joined table with one more table to yield a final joined table of 3 tables and when I attempt that I also get an unresponsive app and my memory usage goes to 99% and after some time I get a "unable to allocate memory message".
Here is my memory makeup under normal usage with JMP on but no actions taken on the joined table
Any thoughts or possible solutions. This is incredible frustrating.