Saturday, October 5, 2013

Re: An unknown error occurred in Cloud SQL import...

You can access the Cloud SQL instance using the command line tool [1], the SQL Prompt, App Engine [2] or via JDBC [3].


-- Razvan ME


On Sat, Oct 5, 2013 at 5:02 PM, Hans Simtanda Caspersen <admin@simtanda.com> wrote:
By the way i replaced the 'DROP TABLE' with 'DROP TABLE IF EXISTS' and my import is now a success, so thanks.

Final question, after a successful import, where can i acces my database and its tables...


On Sunday, October 6, 2013 1:54:08 AM UTC+2, Razvan Musaloiu-E. wrote:
I'm not familiar with either generatedata or the mysqldumper so there is not much I can help on that front. :-( The Cloud SQL import simply issues the queries from the import file one by one and expects all of them to succeed. So make sure the import file contains queries that don't fail. Dropping a table that doesn't exist will generate a failure. Creating a table that exists is will also generate a failure.

-- Razvan ME


On Sat, Oct 5, 2013 at 4:42 PM, Hans Simtanda Caspersen <ad...@simtanda.com> wrote:
ok, i got the sql dump from http://www.generatedata.com just to test google sql import.

Otherwise im using mysqldumper to create multi gzip dumps, but i cant see where and how i should aply:

 mysqldump --databases database_name [-u username -p password] --hex-blob > database_file.sql



On Sunday, October 6, 2013 1:26:23 AM UTC+2, Razvan Musaloiu-E. wrote:
The error you are hitting now is:

Unknown table \'myTestTable\' (DROP TABLE `myTestTable`)

Can you replace the 'DROP TABLE' with 'DROP TABLE IF EXISTS'?

How did you obtain the MySQL dump? If you can do another one can you make sure you use something like this:

mysqldump --databases database_name [-u username -p password] --hex-blob > database_file.sql

The above recommendation comes from the Cloud SQL docs: Importing data.

-- Razvan ME


On Sat, Oct 5, 2013 at 4:19 PM, Hans Simtanda Caspersen <ad...@simtanda.com> wrote:
done, i have now created a database called authorbooksdatabase, but im still getting an unknown error when importing.

my sql file looks like this:

USE authorbooksdatabase;

DROP TABLE `myTestTable`;

CREATE TABLE `myTestTable` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `test` varchar(255) default NULL,
  PRIMARY KEY (`id`)
) AUTO_INCREMENT=1;

INSERT INTO `myTestTable` (`test`) VALUES ("Miranda");
INSERT INTO `myTestTable` (`test`) VALUES ("Margaret");
INSERT INTO `myTestTable` (`test`) VALUES ("Margaret");

PS: What am i doing wrong?

On Sunday, October 6, 2013 12:01:57 AM UTC+2, Razvan Musaloiu-E. wrote:
You will see it in code.google.com/apis/console. Take a look at the above screenshot.

-- Razvan ME


On Sat, Oct 5, 2013 at 2:58 PM, Hans Simtanda Caspersen <ad...@simtanda.com> wrote:
do i find it in cloudsql or app engine?


On Saturday, October 5, 2013 11:49:54 PM UTC+2, Hans Simtanda Caspersen wrote:
i cant find the sql prompt

On Saturday, October 5, 2013 11:43:35 PM UTC+2, Razvan Musaloiu-E. wrote:
Can you use the 'SQL Prompt' and do a 'CREATE DATABASE authorbooksdatabase'? The screenshot just shows that the instance abcategories-com:authorbooksdatabase exists. You can see the databases by doing a 'SHOW DATABASES'.

-- Razvan ME


On Sat, Oct 5, 2013 at 12:24 PM, Hans Simtanda Caspersen <ad...@simtanda.com> wrote:
Amit Mondal, could the error be occurring, because my sql file is not a hex type, but instead it is a binary/octet-stream according to google cloud storage...


On Saturday, October 5, 2013 2:19:34 AM UTC+2, Hans Simtanda Caspersen wrote:
yes, i have attached a screen shot

On Saturday, October 5, 2013 2:10:41 AM UTC+2, Amit Mondal wrote:

Does the database exist?

On Oct 4, 2013 4:59 PM, "Hans Simtanda Caspersen" <ad...@simtanda.com> wrote:
still with no luck

On Saturday, October 5, 2013 1:58:52 AM UTC+2, Hans Simtanda Caspersen wrote:
Im not sure i fully understand, but i have now replaced:

USE authorbooksdatabase;

with

USE authorbooksdatabase

Meaning i have removed ; in my sql file

On Saturday, October 5, 2013 1:44:13 AM UTC+2, Amit Mondal wrote:
The error is:

"mysql_query Unknown database \'authorbooksdatabase\' (USE authorbooksdatabase)"



On Fri, Oct 4, 2013 at 4:01 PM, Hans Simtanda Caspersen <ad...@simtanda.com> wrote:
hi, Instance ID: abcategories-com:authorbooksdatabase and Instance Name: authorbooksdatabase

Note that i have corrected USE autobooksdatabase; to USE authorbooksdatabase; and i am stil getting an unknown error

On Saturday, October 5, 2013 12:53:08 AM UTC+2, Amit Mondal wrote:
what is the instance name?


On Fri, Oct 4, 2013 at 3:05 PM, Hans Simtanda Caspersen <ad...@simtanda.com> wrote:
I have added ( USE autobooksdatabase; ), but with no success

------------------------------------------

USE autobooksdatabase;

DROP TABLE `myTestTable`;

CREATE TABLE `myTestTable` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `test` varchar(255) default NULL,
  PRIMARY KEY (`id`)
) AUTO_INCREMENT=1;

INSERT INTO `myTestTable` (`test`) VALUES ("Miranda");
INSERT INTO `myTestTable` (`test`) VALUES ("Margaret");
INSERT INTO `myTestTable` (`test`) VALUES ("Margaret");
INSERT INTO `myTestTable` (`test`) VALUES ("Charlotte");
INSERT INTO `myTestTable` (`test`) VALUES ("Aileen");
INSERT INTO `myTestTable` (`test`) VALUES ("Kylie");
INSERT INTO `myTestTable` (`test`) VALUES ("Candice");
INSERT INTO `myTestTable` (`test`) VALUES ("Zia");
INSERT INTO `myTestTable` (`test`) VALUES ("Dakota");
INSERT INTO `myTestTable` (`test`) VALUES ("Quail");
INSERT INTO `myTestTable` (`test`) VALUES ("Leilani");
INSERT INTO `myTestTable` (`test`) VALUES ("Ivy");
INSERT INTO `myTestTable` (`test`) VALUES ("Roanna");
INSERT INTO `myTestTable` (`test`) VALUES ("Orla");
INSERT INTO `myTestTable` (`test`) VALUES ("Jane");
INSERT INTO `myTestTable` (`test`) VALUES ("Jena");
INSERT INTO `myTestTable` (`test`) VALUES ("Isabelle");
INSERT INTO `myTestTable` (`test`) VALUES ("Fredericka");
INSERT INTO `myTestTable` (`test`) VALUES ("Adara");
INSERT INTO `myTestTable` (`test`) VALUES ("Joan");
INSERT INTO `myTestTable` (`test`) VALUES ("Abra");
INSERT INTO `myTestTable` (`test`) VALUES ("Darrel");
INSERT INTO `myTestTable` (`test`) VALUES ("Demetria");
INSERT INTO `myTestTable` (`test`) VALUES ("Aurora");
INSERT INTO `myTestTable` (`test`) VALUES ("Alea");
INSERT INTO `myTestTable` (`test`) VALUES ("Fleur");
INSERT INTO `myTestTable` (`test`) VALUES ("Teagan");
INSERT INTO `myTestTable` (`test`) VALUES ("Galena");
INSERT INTO `myTestTable` (`test`) VALUES ("Carly");
INSERT INTO `myTestTable` (`test`) VALUES ("Isadora");
INSERT INTO `myTestTable` (`test`) VALUES ("Rylee");
INSERT INTO `myTestTable` (`test`) VALUES ("Samantha");
INSERT INTO `myTestTable` (`test`) VALUES ("Allegra");
INSERT INTO `myTestTable` (`test`) VALUES ("Janna");
INSERT INTO `myTestTable` (`test`) VALUES ("Zorita");
INSERT INTO `myTestTable` (`test`) VALUES ("Amena");
INSERT INTO `myTestTable` (`test`) VALUES ("Xaviera");
INSERT INTO `myTestTable` (`test`) VALUES ("Camille");
INSERT INTO `myTestTable` (`test`) VALUES ("Amber");
INSERT INTO `myTestTable` (`test`) VALUES ("Cherokee");
INSERT INTO `myTestTable` (`test`) VALUES ("Tana");
INSERT INTO `myTestTable` (`test`) VALUES ("Maggie");
INSERT INTO `myTestTable` (`test`) VALUES ("Madison");
INSERT INTO `myTestTable` (`test`) VALUES ("Nicole");
INSERT INTO `myTestTable` (`test`) VALUES ("Guinevere");
INSERT INTO `myTestTable` (`test`) VALUES ("Allegra");
INSERT INTO `myTestTable` (`test`) VALUES ("Callie");
INSERT INTO `myTestTable` (`test`) VALUES ("Petra");
INSERT INTO `myTestTable` (`test`) VALUES ("Hadassah");
INSERT INTO `myTestTable` (`test`) VALUES ("Cameran");
INSERT INTO `myTestTable` (`test`) VALUES ("Ciara");
INSERT INTO `myTestTable` (`test`) VALUES ("Hadley");
INSERT INTO `myTestTable` (`test`) VALUES ("Hollee");
INSERT INTO `myTestTable` (`test`) VALUES ("Jeanette");
INSERT INTO `myTestTable` (`test`) VALUES ("Ivy");
INSERT INTO `myTestTable` (`test`) VALUES ("Ima");
INSERT INTO `myTestTable` (`test`) VALUES ("Pascale");
INSERT INTO `myTestTable` (`test`) VALUES ("Gretchen");
INSERT INTO `myTestTable` (`test`) VALUES ("Nichole");
INSERT INTO `myTestTable` (`test`) VALUES ("Sydney");
INSERT INTO `myTestTable` (`test`) VALUES ("Petra");
INSERT INTO `myTestTable` (`test`) VALUES ("Kendall");
INSERT INTO `myTestTable` (`test`) VALUES ("Nomlanga");
INSERT INTO `myTestTable` (`test`) VALUES ("Reagan");
INSERT INTO `myTestTable` (`test`) VALUES ("Virginia");
INSERT INTO `myTestTable` (`test`) VALUES ("Noelle");
INSERT INTO `myTestTable` (`test`) VALUES ("Sara");
INSERT INTO `myTestTable` (`test`) VALUES ("Tasha");
INSERT INTO `myTestTable` (`test`) VALUES ("Sheila");
INSERT INTO `myTestTable` (`test`) VALUES ("Simone");
INSERT INTO `myTestTable` (`test`) VALUES ("Ayanna");
INSERT INTO `myTestTable` (`test`) VALUES ("Phoebe");
INSERT INTO `myTestTable` (`test`) VALUES ("Judith");
INSERT INTO `myTestTable` (`test`) VALUES ("Nelle");
INSERT INTO `myTestTable` (`test`) VALUES ("Jena");
INSERT INTO `myTestTable` (`test`) VALUES ("Rinah");
INSERT INTO `myTestTable` (`test`) VALUES ("Olympia");
INSERT INTO `myTestTable` (`test`) VALUES ("Lillian");
INSERT INTO `myTestTable` (`test`) VALUES ("Lacota");
INSERT INTO `myTestTable` (`test`) VALUES ("Angelica");
INSERT INTO `myTestTable` (`test`) VALUES ("Olga");
INSERT INTO `myTestTable` (`test`) VALUES ("Patience");
INSERT INTO `myTestTable` (`test`) VALUES ("Imelda");
INSERT INTO `myTestTable` (`test`) VALUES ("Ava");
INSERT INTO `myTestTable` (`test`) VALUES ("Chanda");
INSERT INTO `myTestTable` (`test`) VALUES ("Rowan");
INSERT INTO `myTestTable` (`test`) VALUES ("Justine");
INSERT INTO `myTestTable` (`test`) VALUES ("Tatiana");
INSERT INTO `myTestTable` (`test`) VALUES ("Callie");
INSERT INTO `myTestTable` (`test`) VALUES ("Catherine");
INSERT INTO `myTestTable` (`test`) VALUES ("Rhonda");
INSERT INTO `myTestTable` (`test`) VALUES ("Summer");
INSERT INTO `myTestTable` (`test`) VALUES ("Molly");
INSERT INTO `myTestTable` (`test`) VALUES ("Keely");
INSERT INTO `myTestTable` (`test`) VALUES ("Melyssa");
INSERT INTO `myTestTable` (`test`) VALUES ("Maile");
INSERT INTO `myTestTable` (`test`) VALUES ("Clementine");
INSERT INTO `myTestTable` (`test`) VALUES ("Kaitlin");
INSERT INTO `myTestTable` (`test`) VALUES ("Kiara");
INSERT INTO `myTestTable` (`test`) VALUES ("Amity");


On Friday, October 4, 2013 11:37:22 PM UTC+2, Amit Mondal wrote:
Are you missing "USE <database>" at the beginning?


On Fri, Oct 4, 2013 at 2:18 PM, Hans Simtanda Caspersen <ad...@simtanda.com> wrote:
Hi, i am getting An unknown error occurred in Cloud SQL import with the following sql file:

-------------------------

DROP TABLE `myTestTable`;

CREATE TABLE `myTestTable` (
  `id` mediumint(8) unsigned NOT NULL auto_increment,
  `test` varchar(255) default NULL,
  PRIMARY KEY (`id`)
) AUTO_INCREMENT=1;

INSERT INTO `myTestTable` (`test`) VALUES ("Miranda");
INSERT INTO `myTestTable` (`test`) VALUES ("Margaret");
INSERT INTO `myTestTable` (`test`) VALUES ("Margaret");
INSERT INTO `myTestTable` (`test`) VALUES ("Charlotte");
INSERT INTO `myTestTable` (`test`) VALUES ("Aileen");
INSERT INTO `myTestTable` (`test`) VALUES ("Kylie");
INSERT INTO `myTestTable` (`test`) VALUES ("Candice");
INSERT INTO `myTestTable` (`test`) VALUES ("Zia");
INSERT INTO `myTestTable` (`test`) VALUES ("Dakota");
INSERT INTO `myTestTable` (`test`) VALUES ("Quail");
INSERT INTO `myTestTable` (`test`) VALUES ("Leilani");
INSERT INTO `myTestTable` (`test`) VALUES ("Ivy");
INSERT INTO `myTestTable` (`test`) VALUES ("Roanna");
INSERT INTO `myTestTable` (`test`) VALUES ("Orla");
INSERT INTO `myTestTable` (`test`) VALUES ("Jane");
INSERT INTO `myTestTable` (`test`) VALUES ("Jena");
INSERT INTO `myTestTable` (`test`) VALUES ("Isabelle");
INSERT INTO `myTestTable` (`test`) VALUES ("Fredericka");
INSERT INTO `myTestTable` (`test`) VALUES ("Adara");
INSERT INTO `myTestTable` (`test`) VALUES ("Joan");
INSERT INTO `myTestTable` (`test`) VALUES ("Abra");
INSERT INTO `myTestTable` (`test`) VALUES ("Darrel");
INSERT INTO `myTestTable` (`test`) VALUES ("Demetria");
INSERT INTO `myTestTable` (`test`) VALUES ("Aurora");
INSERT INTO `myTestTable` (`test`) VALUES ("Alea");
INSERT INTO `myTestTable` (`test`) VALUES ("Fleur");
INSERT INTO `myTestTable` (`test`) VALUES ("Teagan");
INSERT INTO `myTestTable` (`test`) VALUES ("Galena");
INSERT INTO `myTestTable` (`test`) VALUES ("Carly");
INSERT INTO `myTestTable` (`test`) VALUES ("Isadora");
INSERT INTO `myTestTable` (`test`) VALUES ("Rylee");
INSERT INTO `myTestTable` (`test`) VALUES ("Samantha");
INSERT INTO `myTestTable` (`test`) VALUES ("Allegra");
INSERT INTO `myTestTable` (`test`) VALUES ("Janna");
INSERT INTO `myTestTable` (`test`) VALUES ("Zorita");
INSERT INTO `myTestTable` (`test`) VALUES ("Amena");
INSERT INTO `myTestTable` (`test`) VALUES ("Xaviera");
INSERT INTO `myTestTable` (`test`) VALUES ("Camille");
INSERT INTO `myTestTable` (`test`) VALUES ("Amber");
INSERT INTO `myTestTable` (`test`) VALUES ("Cherokee");
INSERT INTO `myTestTable` (`test`) VALUES ("Tana");
INSERT INTO `myTestTable` (`test`) VALUES ("Maggie");
INSERT INTO `myTestTable` (`test`) VALUES ("Madison");
INSERT INTO `myTestTable` (`test`) VALUES ("Nicole");
INSERT INTO `myTestTable` (`test`) VALUES ("Guinevere");
INSERT INTO `myTestTable` (`test`) VALUES ("Allegra");
INSERT INTO `myTestTable` (`test`) VALUES ("Callie");
INSERT INTO `myTestTable` (`test`) VALUES ("Petra");
INSERT INTO `myTestTable` (`test`) VALUES ("Hadassah");
INSERT INTO `myTestTable` (`test`) VALUES ("Cameran");
INSERT INTO `myTestTable` (`test`) VALUES ("Ciara");
INSERT INTO `myTestTable` (`test`) VALUES ("Hadley");
INSERT INTO `myTestTable` (`test`) VALUES ("Hollee");
INSERT INTO `myTestTable` (`test`) VALUES ("Jeanette");
INSERT INTO `myTestTable` (`test`) VALUES ("Ivy");
INSERT INTO `myTestTable` (`test`) VALUES ("Ima");
INSERT INTO `myTestTable` (`test`) VALUES ("Pascale");
INSERT INTO `myTestTable` (`test`) VALUES ("Gretchen");
INSERT INTO `myTestTable` (`test`) VALUES ("Nichole");
INSERT INTO `myTestTable` (`test`) VALUES ("Sydney");
INSERT INTO `myTestTable` (`test`) VALUES ("Petra");
INSERT INTO `myTestTable` (`test`) VALUES ("Kendall");
INSERT INTO `myTestTable` (`test`) VALUES ("Nomlanga");
INSERT INTO `myTestTable` (`test`) VALUES ("Reagan");
INSERT INTO `myTestTable` (`test`) VALUES ("Virginia");
INSERT INTO `myTestTable` (`test`) VALUES ("Noelle");
INSERT INTO `myTestTable` (`test`) VALUES ("Sara");
INSERT INTO `myTestTable` (`test`) VALUES ("Tasha");
INSERT INTO `myTestTable` (`test`) VALUES ("Sheila");
INSERT INTO `myTestTable` (`test`) VALUES ("Simone");
INSERT INTO `myTestTable` (`test`) VALUES ("Ayanna");
INSERT INTO `myTestTable` (`test`) VALUES ("Phoebe");
INSERT INTO `myTestTable` (`test`) VALUES ("Judith");
INSERT INTO `myTestTable` (`test`) VALUES ("Nelle");
INSERT INTO `myTestTable` (`test`) VALUES ("Jena");
INSERT INTO `myTestTable` (`test`) VALUES ("Rinah");
INSERT INTO `myTestTable` (`test`) VALUES ("Olympia");
INSERT INTO `myTestTable` (`test`) VALUES ("Lillian");
INSERT INTO `myTestTable` (`test`) VALUES ("Lacota");
INSERT INTO `myTestTable` (`test`) VALUES ("Angelica");
INSERT INTO `myTestTable` (`test`) VALUES ("Olga");
INSERT INTO `myTestTable` (`test`) VALUES ("Patience");
INSERT INTO `myTestTable` (`test`) VALUES ("Imelda");
INSERT INTO `myTestTable` (`test`) VALUES ("Ava");
INSERT INTO `myTestTable` (`test`) VALUES ("Chanda");
INSERT INTO `myTestTable` (`test`) VALUES ("Rowan");
INSERT INTO `myTestTable` (`test`) VALUES ("Justine");
INSERT INTO `myTestTable` (`test`) VALUES ("Tatiana");
INSERT INTO `myTestTable` (`test`) VALUES ("Callie");
INSERT INTO `myTestTable` (`test`) VALUES ("Catherine");
INSERT INTO `myTestTable` (`test`) VALUES ("Rhonda");
INSERT INTO `myTestTable` (`test`) VALUES ("Summer");
INSERT INTO `myTestTable` (`test`) VALUES ("Molly");
INSERT INTO `myTestTable` (`test`) VALUES ("Keely");
INSERT INTO `myTestTable` (`test`) VALUES ("Melyssa");
INSERT INTO `myTestTable` (`test`) VALUES ("Maile");
INSERT INTO `myTestTable` (`test`) VALUES ("Clementine");
INSERT INTO `myTestTable` (`test`) VALUES ("Kaitlin");
INSERT INTO `myTestTable` (`test`) VALUES ("Kiara");
INSERT INTO `myTestTable` (`test`) VALUES ("Amity");

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/7432ef04-8687-4e4e-8b80-b5fd6d304c62%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/1b3a695f-3c8a-4037-9772-26b69b025309%40googlegroups.com.

For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/3d60d2ff-d3c0-4343-b04f-810f0d833729%40googlegroups.com.

For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/16cd4d6b-737b-4547-ad6f-8a7d4e0b3100%40googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/971372cf-55ed-43da-b768-ab6308be48c9%40googlegroups.com.

For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/41e5203d-e50c-4b6d-8156-bbc1d12624d6%40googlegroups.com.

For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/bf150337-9385-4019-9b38-0c25fc2cf7ab%40googlegroups.com.

For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/4f947c2e-727f-448d-a871-b7ca89f66178%40googlegroups.com.

For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/3283a8a5-e048-4d38-8aef-0c728a7cbc9a%40googlegroups.com.

For more options, visit https://groups.google.com/groups/opt_out.

--
You received this message because you are subscribed to the Google Groups "Google Cloud SQL discuss" group.
To unsubscribe from this group and stop receiving emails from it, send an email to google-cloud-sql-discuss+unsubscribe@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/google-cloud-sql-discuss/CA%2BUvTg2cKP4WzdsKpotHgQv3Ri0TZdRsOmjYmLBcRgLuhhumMw%40mail.gmail.com.
For more options, visit https://groups.google.com/groups/opt_out.

No comments:

Post a Comment