Posted on 13/10/2021 19:08:59
You want to copy the rows in the EcomProducts table. You could do something like:
INSERT INTO EcomProducts
SELECT ProductId, ProductVariantId, 'LANG2', ProductNumber, etc etc etc, FROM EcomProducts
This copies all rows and columns except the product language (which I have hardcoded here as LANG2). If needed, both your INSERT and SELECT statement could select specific columns only.
Alternatively, and probably easier, use Data Integration to export all products to a file, replace the language ID with the new ID and then import them again.
Hope this helps,
Imar