Hello
Thank you for your answers, they helped my solve the problem.
This is my insert bulk command:
BULK INSERT Product FROM 'C:\ProductData.txt' WITH(FIELDTERMINATOR = '.',ROWTERMINATOR = '\n', KEEPNULLS)
I added FIRE_TRIGGERS and the new records were registered in the tracking table.
This one does the trick
BULK INSERT Product FROM 'C:\ProductData.txt' WITH(FIELDTERMINATOR = '.',ROWTERMINATOR = '\n', KEEPNULLS, FIRE_TRIGGERS )
sb_angela