I have established linked server connection, it is working fine but got some problem with 2 fields, Col1
which got datatype varchar(10000)
and also same for Col2 varchar(10000)
from source. when I queried:
select
*
from
[MySQL_Linked]...SorceTbl
I got the below error:
OLE DB provider "MSDASQL" for linked server "MySQL_Linked" returned message "Requested conversion is not supported.".
Msg 7341,
Level 16, State 2, Line 1 Cannot get the current row value of column "[MySQL_Linked]...[MyDB].SorceTbl" from OLE DB provider "MSDASQL" for linked server "MySQL_Linked".
I tried with Cast and Convert
but no use. any help?
someone marked this quesion as duplicate but the difference is
his solution is changed data type at source but for me I don't have permissions to change data types from source.