Here is my header for the specific file I want to load : Forumid | Personid | joinDate
For my previous files that were straight forward, they only had 2 columns.
How would I format this file so that I could load a piece of data on to the connecting edge between the forumID and personID?
You can consider removing the third column by some pre-processing, in case the joinDate isn’t required. Else you can create two rows for each row in your data, for eg.
Forumid | Personid | joinDate
will become Forumid | Personid Personid | joinDate
please let me know in case of any doubts.