When the update below is run for the first time, the field exits correctly the way I want it as below, but if I run it again, it comes out that way. What I want is that regardless of how many times the script runs, do not duplicate the month or year.
(WRONG) Esttartitulo Strategic Assisted ProductionOctober 2017October-2017
(CORRECT) Esttartitulo Strategic Assisted ProductionOctober 2017
Update script
UPDATE EstoqueTarefa
SET EstTarTitulo = (SELECT CONCAT(EstTarTitulo,DATENAME(MONTH,getdate()),'-',DATEPART(YEAR,getdate())))
WHERE EstTarID = 246