Error when trying to update Zoho
Posted: Wed 24 Nov 2021 17:58
OLE DB provider "MSDASQL" for linked server "ZOHOCRM" returned message "[Devart][ODBC][Zoho CRM]SQLite error
parser stack overflow".
Msg 7343, Level 16, State 4, Line 11
The OLE DB provider "MSDASQL" for linked server "ZOHOCRM" could not UPDATE table "[ZOHOCRM]...[Contacts]".
I have tried updating a few different fields on a contact record in a few different ways.
SELECT statements work as expected
I also added the Contacts table to an access database and was able to view the data but when I tried to make updates I would get the same error.
Seems like it might be related to this thread viewtopic.php?f=55&t=48622&p=200270&hil ... ow#p200270
parser stack overflow".
Msg 7343, Level 16, State 4, Line 11
The OLE DB provider "MSDASQL" for linked server "ZOHOCRM" could not UPDATE table "[ZOHOCRM]...[Contacts]".
I have tried updating a few different fields on a contact record in a few different ways.
Code: Select all
UPDATE openquery(ZOHOCRM,'SELECT * FROM Contacts WHERE Id=''xxxx''') SET Salutation='Mr.'
UPDATE [ZOHOCRM]...[Contacts] set Salutation='Mr.' WHERE Id='xxxx'
Code: Select all
SELECT * FROM [ZOHOCRM]...[Contacts] WHERE Id='xxxx'
Seems like it might be related to this thread viewtopic.php?f=55&t=48622&p=200270&hil ... ow#p200270