Reputation: 1490
I have a very large CSV file (>1 GB) and a Google Cloud SQL table to move this into. Will the graphical interface be able to handle import quickly? LOAD DATA INFILE is not supported, so is there another way to move a large CSV? The source data is in text only, and not from another MySQL.
Upvotes: 1
Views: 7523
Reputation: 31
You can pull the data into the local drive, and then use the command LOAD DATA FILE. See thread below:
Import CSV file from Google Cloud Storage to Google Cloud SQL
Upvotes: 0
Reputation: 5126
Yes, the import via the Cloud Console will offer you the best performance.
I suggest doing the follow to obtain the best performance:
Upvotes: 4