I am tyring to create a SSIS packet that delete records from a table in one server(Production server) by joining it with the other table in different server (development server). The example of the query is as below. We cannot create new table in server001, the production server but we can in server002, the development server.
Delete tb1
from server0001.Database1.dbo.table1 tb1
inner join server0002.Database2.dbo.table2 tb2 on tb1.ColumnId = tb2.ColumnId