OK so I have this one dataflow, DataFlow A, that feeds into other dataflows, DataFlow B and DataFlow C, that works perfectly fine until I try and add this one additional column to it called Lead Source. When I add this column to DataFlow A it runs just fine, however, DataFlow B and C then fail due to this reason: "Row size is wider than MySql supports. Please reduce the row size or number of columns."
In DataFlow A, I have tried the following but neither have worked:
1) CAST(a.`LeadSource` as CHAR(1000)) as LeadSource
2) ALTER TABLE `agreements2` MODIFY COLUMN `LeadSource` VARCHAR(100)
Then when trying to edit DataFlow B and C, I can't even load the table to remove the column since its not needed for those dataflows.
Is there something else I can try? Please help!