I am trying to push through an update command to a SQL SERVER table using the dynamic input tool. The query is set to:
SELECT 1;
UPDATE [Database].[Schema].[Table] SET [Column] = 'Alpha'
Alpha is updated from a flow-variable. However, this does not work (unexpectedly) and "Error opening "SELECT * FROM ": No Columns Returned" is returned. Help is welcome.
P.S. : Variations like
SELECT TOP 1 * FROM [A_TABLE_WITH_ATLEAST_ONE_ROW];
UPDATE [Database].[Schema].[Table] SET [Column] = 'Alpha'
work.