I am trying to write a workflow to copy tables from one Azure SQL DB to another.
After loading the data from the source DB to a DB Reader…I am pushing the data to a target DB Table creator and then a DB Loader. (In other words: Source DB Reader => Target DB Table Creator => Target DB Loader)
In the Target DB Creator I am creating a table based on the source using dynamic settings. This node completes successfully.
When the DB Loader executes, I get an error that the varchar(319) cannot fit into a varchar(255) but I am not told which column is the offender.
I tried going back to the DB Loader, unchecked dynamic settings, and tried to manually define a varchar 1000 to see if I could push things through, but it reset the varchar(1000) to varchar (255).
My Questions:
- If both the source and target DB’s are SQL Server, why doesn’t “dynamic settings” work? Is this a bug?
- What other variable types or workflow steps should I try?