J'obtiens l'erreur suivante en exécutant ce script SQL :
MERGE TridionCentres TridionCentres
USING (SELECT * FROM #CentresToUpdate) NewInfo
ON (TridionCentres.[publication id] = NewInfo.[publication id] AND
TridionCentres.centre_number = NewInfo.centre_number)
WHERE matched THEN
UPDATE
SET TridionCentres.centre = NewInfo.centre,
TridionCentres.[date] = NewInfo.[date];
Erreur :
Msg 156, Niveau 15, Etat 1, Ligne 5
Syntaxe incorrecte à proximité du mot clé 'WHERE'.
Je ne vois pas où je me suis trompé !