ananya
12/27/2022, 12:58 PM{
emails: [
{...},
{...}
],
activities: [
{...},
{...}
]
}
Now, I need to iterate over each item from emails array (and similarly for activities array) to push it to their respective tables as rows in Redshift, what’s happening now is that entire emails array gets dumped into table instead of individual records, which is not correct as it hits the max limit of table leading to trucation.
So is there a way to do it correctly?
Thanks!ananya
12/27/2022, 1:01 PM