When Inserting data from Oracle 12c blob datatype to sql server varbinary datatype data is getting mismatch. Using the below statment
Insert into sqltable
select * from openquery(DBname,Select column1, column2 from oracletbl)
but when I use below query with where condition with the column name data comes proper.
Insert into sqltable
select * from openquery(DBname,Select column1, column2 from oracletbl where column1 = '**' )