André
André

Reputation: 527

MySQL Data Export: 'ascii' codec can't decode byte 0xc3 in position 60: ordinal not in range(128)

When I try to dump data from my Cloud SQL database through MySQL Workspace, I get this in the log of the export process:

Error executing task: 'ascii' codec can't decode byte 0xc3 in position 60: ordinal not in range(128)

Error executing task local variable 'p1' referenced before assignment

What's causing this and how do I solve it?

EDIT: It works when dumping data from a local MySQL server, so the problem occurs only when trying to dump from Google Cloud SQL. I still don't know why it happens.

Upvotes: 4

Views: 7719

Answers (1)

Beauregard
Beauregard

Reputation: 11

I had the same error message. The problem was, that in my local path (where I wanted to save the backup) a folder had a french character é. When saved it in another folder, then it worked

Upvotes: 1

Related Questions