Can anyone help me with this conversion error? `I...
# ask-community-for-troubleshooting
c
Can anyone help me with this conversion error?
Copy code
Is this your first time deploying Airbyte?: Yes
OS Version / Instance: Windows
Memory / Disk: 16 gb / 1 tb
Deployment: Docker
Airbyte Version: Latest
Source name/version: Facebook Marketing 0.2.48
Destination name/version: MS SQL Server 0.1.17
Step: The issue happens at the end of the sync
Description: Everything seems to go well, then I get this error and sync fails to complete:
(‘42000’, ‘[42000] [Microsoft][ODBC Driver 17 for SQL Server][SQL Server]Error converting data type nvarchar to float. (8114) (SQLMoreResults)
m
Please can you post the complete log file here. V
c
looks like it has something to do with ads_account
m
Are you using a default account for facebook?
Copy code
"message": "(#17) User request limit reached",
you need to ask for a developer account to increase your quota limit
c
Yes, with a developper account I created an app to get API access. After retrying it ends up being able to make some calls and populate the database. It's only this one table that seems to create an error and fail the synch.
Ok, I have removed other tables and isolated only ad_account. Now there's no quota limit reached, but still the same conversion error.
m
Looks it's a problem with schema: $.tax_id: string found, but [null, number] is required
so Airbyte tries to convert this to float but it's a string
c
exactly what I was writing at the moment. tax ids in Canada contain a letter.
so when it tries to convert to float at the end, there's an error
m
no way!
you probably need to change the schema to string, do you mind submitting a PR to fix it?
c
first time doing this, would you mind reviewing my process? https://github.com/airbytehq/airbyte/pull/13109
m
Why did you close the pr?
c
@Marcos Marx (Airbyte) Sorry for the delay, been busy with work. I closed the PR because I realized I didn't follow the guidelines (i had never done PR before). should i open an issue that someone could try and resolve? thanks