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 ??
Merci pour vos retours
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4 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
Partager