I have a database column with three columns: First Name, Last Name and Occupation.
I also have a workflow with three multi-value tokens corresponding to these columns. For example:
%(FirstName) - Al, Jack, Scarlet
%(LastName) - Pacino, Nicholson, Johannson
%(Occupation) - Mob Boss, Joker, Spy
What is the quickest way of inserting these tokens into the database table where the value indexes correspond to the columns?
I tried iterating over them using For Each Value and using an Insert Data activity inside the loop, but that quickly gets out of hand when dealing with large datasets. Is there a way to do it in a single operation?