Hello Everyone,
I am getting this strange error when I am using update_recordset to update the table, Kindly help me what I am missing.
update_recordset tablename
setting
stringfieldname = parameterTable.stringField tablename2.stringfield ","
join tablename2
where tablename2.stringField2 == tablename.stringfieldname;
The strange part is it is working when I remove "," in the setting statement but if I add any string it is throwing me the following error,
session 5120 (Admin)
UPDATE T1 SET stringfieldname =((? T2.stringfield) ?),RECVERSION=? FROM tablename T1 CROSS JOIN tablename2 T2 WHERE (T1.PARTITION=5637144576) AND ((T2.PARTITION=5637144576) AND (T2.stringfield2=T1.stringfieldname))
[Microsoft[ODBC Driver 17 for SQL Server[SQL ServerError converting data type nvarchar to bigint.
Object Server Azure:
Cannot edit a record in table name (tablename). Reference: 0. The SQL database has issued an error.
PS: I have already tried full db sync. please help me what I am doing wrong.