We need to use database sequences for unique IDs since they need to be shared between multiple processes, including database stored procedures.
I can select a single NEXT VALUE from the sequence in an Input tool, but it only returns one, not one per row in my data stream.
I think I need to add the correct syntax* to my Output tool, but I can't figure out how.
I investigated Dynamic Replace, but I think it will put the command in as a text string, not in the SQL itself.
SELECT
*NEXT VALUE FOR [SCHEMA].[SEQUENCE NAME],
COLUMN2,
COLUMN3,
etc
FROM [SCHEMA].[TABLE]