Re: Query regarding implementation of parallel-replication

2014-09-05 Thread Ajay Garg
Hi Wagner. That is what I did as the last resort, and that is "only" what solved the issue. Thanks. On Fri, Sep 5, 2014 at 1:52 AM, wagnerbianchi.com wrote: > You can try these steps: > > 1-) Stop slave and write down the replication coordinates getting that in > MySQL's error log (*very impo

MySQL Proxy 0.8.5 alpha has been released

2014-09-05 Thread Hery Ramilison
Dear MySQL Users, We are pleased to announce MySQL Proxy 0.8.5, an alpha release. All users of MySQL Proxy 0.8.x are recommend to upgrade. Download: http://dev.mysql.com/downloads/mysql-proxy/ Changes in MySQL Proxy 0.8.5 (2014-09-05) Bugs Fixed * A stored function that used cursors caus

RE: Getting error while launching mysqld

2014-09-05 Thread Banerjee, Somnath
Thanks a lot. I changed rsh to ssh and things worked ! -somnath From: shawn l.green [shawn.l.gr...@oracle.com] Sent: Friday, September 05, 2014 8:21 PM To: mysql@lists.mysql.com Subject: Re: Getting error while launching mysqld Hello Somnath, On 9/4/2014

Re: database developer tool "Database Workbench 5" now available

2014-09-05 Thread shawn l.green
Hello Martin, On 9/5/2014 7:52 AM, Martin Gainty wrote: ... snip ... MG>My development is identical ..Development on Windows..Production on Linux MG>When google routes me to Vladimir Putins site for "Official Windows Mysql Stack" you download god knows what MG>solution is to give the customer

Re: Getting error while launching mysqld

2014-09-05 Thread shawn l.green
Hello Somnath, On 9/4/2014 3:33 AM, Banerjee, Somnath wrote: Hi, We are getting following error while launching mysqld_safe in local machine. Any help would be appreciated. -- connect to address 127.0.0.1 port 544: Connection refused connect

Re: converting numeric to date-time?

2014-09-05 Thread Johan De Meersman
- Original Message - > From: "Jan Steinman" > Subject: RE: converting numeric to date-time? > > I don't think the OP has a Unix timestamp. OP explicitly says "epoch including milliseconds" - so it's going to be three digits too long :-) divide by 1000; split off decimal; from_unixtime(

Re: Getting error while launching mysqld

2014-09-05 Thread wagnerbianchi.com
Have you changed the default mysqld port? Could you share with us the below command output? $ my_print_defaults mysqld -- *Wagner Bianchi, MySQL Database Specialist* Mobile: +55.31.8654.9510 E-mail: m...@wagnerbianchi.com Twitter: @wagnerbianchijr 2014-09-04 4:33 GMT-03:00 Banerjee, Somnath

Re: 1045 Error accessing mysql db

2014-09-05 Thread wagnerbianchi.com
FYI WB 2014-09-04 21:27 GMT-03:00 정천기 : > Hi~~ > I think this trouble because change OS and MySQL grant Initialization.. > > Could you please follow my step... > > First.. check your (foo) grant > > root#] mysql -u root -p > mysql > select * from mysql.user where 'foo'; > > there is HOST column.

Re: database developer tool "Database Workbench 5" now available

2014-09-05 Thread Martijn Tonies (Upscene Productions)
MG>My development is identical ..Development on Windows..Production on Linux MG>When google routes me to Vladimir Putins site for "Official Windows Mysql Stack" you download god knows what MG>solution is to give the customer an in-between solution such as mysqld, mysqladmin and mysql shell sc

RE: database developer tool "Database Workbench 5" now available

2014-09-05 Thread Martin Gainty
> From: m.ton...@upscene.com > To: j...@ecoreality.org; mysql@lists.mysql.com > Subject: Re: database developer tool "Database Workbench 5" now available > Date: Fri, 5 Sep 2014 07:57:37 +0200 > > Hello Jan, list, > > >> From: "Martijn Tonies (Upscene Productions)" > >> > >> Database Workbench

Re: converting numeric to date-time?

2014-09-05 Thread Glyn Astill
> From: Jan Steinman >To: mysql@lists.mysql.com >Sent: Thursday, 4 September 2014, 16:40 >Subject: RE: converting numeric to date-time? > > >> From: "Ed Mierzwa (emierzwa)" >> >> >> FROM_UNIXTIME(1409304102.153)/*your epoch column here*/ > >I don't think the OP has a Unix timestamp. Re