Cannot join on Memo, OLE, or Hyperlink Object

前端 未结 4 1124
醉梦人生
醉梦人生 2021-01-27 21:18

I have a basic table in an Access database. In that table, I have a 10-digit numeric field that is stored as Long Text (leading zeros are significant). I extracted the unique

4条回答
  •  不知归路
    2021-01-27 21:50

    Try to convert the 10 digits numeric field stored as long text to short text. long text is for the memo that's why you're getting this error.

    I had the same error resulting from LEFT JOINING a msSQLserver table view ON a local msAccess table, the field datatype was nvarchar(80000) in SQL server table and was auto-converted into Memo datatype when linked to msAcces so I had to convert it to nvarchar(25) from SQL server and refresh the table link to solve the issue.

提交回复
热议问题