Hello, Everyone, I have been told great things about the SAS Hash Join and am trying to implement it in a project with a very large dataset (WORK.MASTER) that I would like to join to a smaller dataset (WORK.HASH_CLASS). I can get the code to execute and join a table; however, SAS is joining ALL columns of the second table to my master table, even though I only desire and specify one. Please refer to my code as follows: My goal is to simply add the "CLASS_REMAPPED" field from the WORK.HASH_CLASS table to the WORK.MASTER table; however, SAS proceeds to join *all* fields from WORK.HASH_CLASS to WORK.MASTER, even though I only specified "CLASS_REMAPPED" in the .defineData property. Can anyone see what I'm doing wrong? Thanks!
... View more