Bonjour,

A partir d'une table sur mon Sql Server, j'aimerais supprimer les lignes d'une table hébergée sur un linked server Sybase avec une jointure.

La commande suivante ne marche pas.
Pouvez-vous m'aider ??

DELETE FROM OPENQUERY (LINK_SYBASE, 'select * from table_sybase where col = "0" ') TS
inner join table_sql_server TSS
on TSS.ident = TS.ident
and TS.col2 = 1

Merci pour vos retours