Reputation: 17
Can't create a table in Cloud SQL. Error : Table "Persons" must be qualified with a dataset (e.g. dataset.table).
I have tried different names and still can't create tables.
Upvotes: 0
Views: 1042
Reputation: 1375
I believe you are missing the dataset name on where the table will be created. Something like this CREATE TABLE <myDatasetName>.Persons(...) .
CREATE TABLE <myDatasetName>.Persons(...)
For your reference please visit this documentation here, Additionally you can visit here for creating a dataset.
Upvotes: 3