update all linkedserver tables with openquery on db

Solutions on MaxInterview for update all linkedserver tables with openquery on db by the best coders in the world

showing results for - "update all linkedserver tables with openquery on db"
Nicole
03 Jun 2018
1UPDATE a 
2SET    a.MMDWNO = '21'
3FROM   OPENQUERY(NMIIFLIB,
4       'select * from MVXCDTANSN.MITMAS WHERE MMITTY = ''25''') a 
Liam
22 Jan 2020
1UPDATE OPENQUERY(NMIIFLIB, 'select * from MVXCDTANSN.MITMAS where MMITTY = ''25''')
2SET MMDWNO = 21