mysql-5.1 64bit and windows 7

2014-01-01 Thread Elim Qiu
I installed mysql 5.1 to windows 7 using mysql-5.1.73-winx64.msi and got confused on how to relocate the datadir. my basedir was F:/MySQL and datadir was F:/MySQL/data It works fine and I'm trying to relocate the datadir: (0) stop mysql service (1) copy F:/MySQL/data to F:/DBData/MySQL/data (2

Re: mysql-5.1 64bit and windows 7

2014-01-01 Thread Reindl Harald
Am 01.01.2014 23:30, schrieb Elim Qiu: I installed mysql 5.1 to windows 7 using mysql-5.1.73-winx64.msi and got confused on how to relocate the datadir. my basedir was F:/MySQL and datadir was F:/MySQL/data It works fine and I'm trying to relocate the datadir: (0) stop mysql service

Mysql 5.1 union with group by for results

2013-11-08 Thread Machiel Richards
Good day all I am hoping someone can assist me in the following. One of our servers were running mysql 5.0 still and as part of a phased upgrade route we have upgraded to version 5.1. However since the upgrade, the query below gives us an error stating that the syntax

Re: Mysql 5.1 union with group by for results

2013-11-08 Thread Jesper Wisborg Krogh
Hi Machiel, On 8/11/2013 20:04, Machiel Richards wrote: Good day all I am hoping someone can assist me in the following. One of our servers were running mysql 5.0 still and as part of a phased upgrade route we have upgraded to version 5.1. However since the upgrade,

Re: Mysql 5.1 union with group by for results

2013-11-08 Thread Johan De Meersman
- Original Message - From: Machiel Richards machiel.richa...@gmail.com ERROR 1064 (42000): You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near 'GROUP BY t.AccountID, I suspect your query has never

Re: Mysql 5.1 union with group by for results

2013-11-08 Thread Machiel Richards
Happiness, that gave me what I was looking for. Thank you Johan. I have tested the option you gave me but my brackets was in the wrong place. On 08/11/2013 13:23, Johan De Meersman wrote: - Original Message - From: Machiel Richards machiel.richa...@gmail.com ERROR 1064 (42000):

Re: Mysql 5.1 union with group by for results

2013-11-08 Thread Machiel Richards
Hi Jesper I was just discussing this with the development manager now and the following was noted. - The query was written for mysql 4.0 originally and it seems that in version 5.0 they had enabled some legacy support stuff ( I am not too familiar with this as it is before my

RE: MySQL 5.1: incorrect arithmetic calculation

2013-02-21 Thread Rick James
: Alex Keda [mailto:ad...@lissyara.su] Sent: Thursday, February 14, 2013 9:36 PM To: mysql@lists.mysql.com Subject: MySQL 5.1: incorrect arithmetic calculation bkp0# mysql h5000_bill Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1643184 Server version

Re: MySQL 5.1: incorrect arithmetic calculation

2013-02-15 Thread Alex Keda
15.02.2013 15:07, Alex Keda пишет: OK. But, how about: mysql SELECT 365 * 1.67 * ( 1 - 0.10); +--+ | 365 * 1.67 * ( 1 - 0.10) | +--+ | 548.5950 | +--+ 1 row in set (0.00 sec) mysql ?? sorry, I'm too many

Re: MySQL 5.1: incorrect arithmetic calculation

2013-02-15 Thread Johan De Meersman
- Original Message - From: Alex Keda ad...@lissyara.su mysql SELECT SUM(`Amount`*`Cost`*(1-`Discont`)) as `Summ` FROM `WorksCompliteAgregate` WHERE (`ContractID` = 10369 AND `Month` = 497); Based off the select you printed, this comes to EXACTLY 548.595 for the first row and 0

Re: MySQL 5.1: incorrect arithmetic calculation

2013-02-15 Thread Alex Keda
15.02.2013 14:43, Johan De Meersman пишет: - Original Message - From: Alex Keda ad...@lissyara.su mysql SELECT SUM(`Amount`*`Cost`*(1-`Discont`)) as `Summ` FROM `WorksCompliteAgregate` WHERE (`ContractID` = 10369 AND `Month` = 497); Based off the select you printed, this comes to

Re: MySQL 5.1: incorrect arithmetic calculation

2013-02-15 Thread Johan De Meersman
- Original Message - From: Alex Keda ad...@lissyara.su To: mysql@lists.mysql.com Sent: Friday, 15 February, 2013 12:16:18 PM Subject: Re: MySQL 5.1: incorrect arithmetic calculation sorry, I'm too many work... =) Heh :-) I was thinking, why would that not be correct? It's exactly

Re: MySQL 5.1: incorrect arithmetic calculation

2013-02-15 Thread misiaq
From: Alex Keda ad...@lissyara.su To: mysql@lists.mysql.com; Sent: 6:37 Piątek 2013-02-15 Subject: MySQL 5.1: incorrect arithmetic calculation ( ... cut ...) but, my desktop calculator gives the result 548.60 1. your desktop calculator is wrong 2. correct result is 548.595, variations

MySQL 5.1: incorrect arithmetic calculation

2013-02-14 Thread Alex Keda
bkp0# mysql h5000_bill Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1643184 Server version: 5.1.68-log FreeBSD port: mysql-server-5.1.68 Copyright (c) 2000, 2013, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of

MySQL 5.1: Views, queries, updates and performance issues

2011-12-29 Thread Bruce Ferrell
Hi all, I've got some semi-general questions on the topics in the title. What I'm looking for is more in the line of theory than query specifics. I am but a poor peasant boy. What I have is an application that makes heavy use of views. If I understand views correctly (and I may not), views

Re: MySQL 5.1: Views, queries, updates and performance issues

2011-12-29 Thread Arthur Fuller
At first blush, your problem would appear to concern the lack of index-use. That's where I would begin my investigation. It might be painstaking, but I would do something like this: For each view Look at the Join(s) and see what columns are being joined Look at the tables and see what

Re: Practical connection limits MySQL 5.1/5.5

2011-04-25 Thread Zhu Chao
eBay once developed a patch for pooled threads, on top of 5.0, to resolve this kind of issue so they can support 10k+ sessions(massive amount of application need to talk to those mysql). Not sure whether they are merged into main version though. Best regards Zhuchao 在

Re: Practical connection limits MySQL 5.1/5.5

2011-04-14 Thread Johan De Meersman
- Original Message - From: Reindl Harald h.rei...@thelounge.net even if you have enough memory why will you throw it away for a unusual connection count instead use the RAm for innodb-buffer-pool, query-cache, key-buffers? Maybe the application doesn't have support for connection

Re: Practical connection limits MySQL 5.1/5.5

2011-04-14 Thread Reindl Harald
Am 14.04.2011 11:50, schrieb Johan De Meersman: - Original Message - From: Reindl Harald h.rei...@thelounge.net even if you have enough memory why will you throw it away for a unusual connection count instead use the RAm for innodb-buffer-pool, query-cache, key-buffers? Maybe the

Practical connection limits MySQL 5.1/5.5

2011-04-13 Thread Jeff Lee
Hey All, Can anyone provide some guidance as to what the practical connection limits to MySQL 5.1/5.5 are under linux? We're running a ruby on rails application that establishes 50 to 100 connections to our database upon startup resulting in around 1,000 persistent db connections. I've been

Re: Practical connection limits MySQL 5.1/5.5

2011-04-13 Thread Reindl Harald
Am 13.04.2011 23:50, schrieb Jeff Lee: Hey All, Can anyone provide some guidance as to what the practical connection limits to MySQL 5.1/5.5 are under linux? We're running a ruby on rails application that establishes 50 to 100 connections to our database upon startup resulting in around

RE: Practical connection limits MySQL 5.1/5.5

2011-04-13 Thread Martin Gainty
: Practical connection limits MySQL 5.1/5.5 Am 13.04.2011 23:50, schrieb Jeff Lee: Hey All, Can anyone provide some guidance as to what the practical connection limits to MySQL 5.1/5.5 are under linux? We're running a ruby on rails application that establishes 50 to 100

Mysql 5.1 - 5.0

2011-03-10 Thread Brent Clark
Hiya We have client that is using Ubuntu, therefore MySQL is 5.1, but where I work, we still standardise on Debian Lenny (upgrading to Squeeze, is in the pipeline), therefore, MySQL is 5.0. What I would like to know is, can I just make a copy of the mysql database files and copy them the

Re: Mysql 5.1 - 5.0

2011-03-10 Thread Johan De Meersman
March, 2011 2:07:11 PM Subject: Mysql 5.1 - 5.0 Hiya We have client that is using Ubuntu, therefore MySQL is 5.1, but where I work, we still standardise on Debian Lenny (upgrading to Squeeze, is in the pipeline), therefore, MySQL is 5.0. What I would like to know is, can I just make

MySQL 5.1 change master syntax issues?

2011-02-16 Thread Machiel Richards
Hi All I am trying to setup replication between 2 mysql servers, however when running the command below on the slave machine, I get the error as shown below. CHANGE MASTER TO MASTER_HOST='IP removed', MASTER_USER='repladmin', MASTER_PASSWORD='password', master_log_file=‘mysql-bin.000620’,

How to unstall MySQL 5.1 on Ubuntu 8.04 LTS

2010-08-23 Thread Manasi Save
Dear All, I need to install MySQL 5.1.42 on ubuntu. MySQL site does not have installer packages for ubuntu(.deb). If I need to use tar.gz is there any document available which will help me do this specific changes. Any input will be great help. As I need to set it up urgently. Thanks in

Re: How to unstall MySQL 5.1 on Ubuntu 8.04 LTS

2010-08-23 Thread Jaime Crespo Rincón
2010/8/23 Manasi Save manasi.s...@artificialmachines.com: Dear All, I need to install MySQL 5.1.42 on ubuntu. MySQL site does not have installer packages for ubuntu(.deb). If I need to use tar.gz is there any document available which will help me do this specific changes. Follow the

MySQL 5.1 config for approx 100 concurrent users

2010-08-17 Thread Tompkins Neil
I'm looking to implement a new website, which will have on average around 100 approx users at any one time. Is there anything I need to be aware of when setting up MySQL in terms of the server configuration ? Regards Neil

Uprading from mysql 5.0 to mysql 5.1

2010-02-17 Thread Machiel Richards
HI All Maybe you can assist. We are looking at upgrading a clients' MySQL 5.0 to version 5.1. They are running the following version: mysql Ver 14.12 Distrib 5.0.72sp1, for unknown-linux-gnu (x86_64) using readline 5.1

Re: Uprading from mysql 5.0 to mysql 5.1

2010-02-17 Thread Joerg Bruehe
Hi Machiel, all! Machiel Richards wrote: [[...]] We are looking at upgrading a clients' MySQL 5.0 to version 5.1. Good. They are running the following version: mysql Ver 14.12 Distrib 5.0.72sp1, for unknown-linux-gnu (x86_64) using readline 5.1 Which

MySQL 5.1+ Upgrade on Solaris 10

2010-01-24 Thread Paul, Sojan
Hello, Would appreciate if any you post the steps to upgrade MySQL 5.0 to higher versions (5.1, 5.4)on Solaris 10 ,X_64 box. Thanks Regards, S Paul

MySQL 5.1 does not work on Mac OS X 10.5 Leopard and Power PC

2010-01-05 Thread Moishe Weiss
I would like to note to the MySQL development team that there is no download available for MySQL 5 Community Edition for a Mac Power PC and OS X 10.5. There is a MySQL 4/PPC/OSX 10.4 download and there is a MySQL 5/Intel/OSX 10.5 download. I tried the MySQL 5.1 /x86-64/OSX 10.5 download

MySQL University session on June 4: Boosting Performance With MySQL 5.1 Partitioning

2009-06-02 Thread Stefan Hinz
Boosting Performance With MySQL 5.1 Partitioning http://forge.mysql.com/wiki/Boosting_Performance_With_MySQL_5.1_Partitioning This Thursday (June 4th, 14:00 UTC), Giuseppe Maxia will give a MySQL University session on Boosting Performance With MySQL 5.1 Partitioning. Giuseppe is leading

MySQL University session on May 28: MySQL replication: new features in MySQL 5.1 and 6.0

2009-05-25 Thread Stefan Hinz
are recorded (slides and audio), so if you can't attend the live session you can look at the recording anytime after the session. Here's the schedule for the upcoming weeks: # June 4, 2009: Boosting Performance With MySQL 5.1 Partitioning (Giuseppe Maxia) # June 11, 2009: Building MySQL Releases on Unix

MySQL University session on May 7: MySQL replication: new features in MySQL 5.1 and 6.0

2009-05-04 Thread Stefan Hinz
scheduled * June 4, 2009: Boosting Performance With MySQL 5.1 Partitioning (Giuseppe Maxia) * June 11, 2009: Building MySQL Releases on Unix (Jörg Brühe) * June 18, 2009: Architecture of MySQL Backup (Lars Thalmann) * July 2 (tentative): Starring Sakila - a data warehouse mini-tutorial (Roland Bouman

Does MySQL 5.1 store queries?

2009-03-17 Thread Matthew Stuart
Until recently I have been using 4.0.25 and have just upgraded to 5.1 and just wondered if MySQL now enabled me to store queries in the database rather than have to put them all on my pages. Basically, I want to be able to write some select statements and save them in the database.

Re: Does MySQL 5.1 store queries?

2009-03-17 Thread ewen fortune
Mat, On Tue, Mar 17, 2009 at 2:04 PM, Matthew Stuart m...@btinternet.com wrote: Until recently I have been using 4.0.25 and have just upgraded to 5.1 and just wondered if MySQL now enabled me to store queries in the database rather than have to put them all on my pages. Basically, I want to be

Re: Does MySQL 5.1 store queries?

2009-03-17 Thread Martijn Tonies
Until recently I have been using 4.0.25 and have just upgraded to 5.1 and just wondered if MySQL now enabled me to store queries in the database rather than have to put them all on my pages. Basically, I want to be able to write some select statements and save them in the database.

Re: Does MySQL 5.1 store queries?

2009-03-17 Thread Peter Brawley
Matthew, wondered if MySQL now enabled me to store queries in the database In three ways---stored procedures; views; and prepared statements built from query strings that come from anywhere including your own tables. PB http://www.artfulsoftware.com - Matthew Stuart wrote: Until

MySQL 5.1 Rolling back a transaction containing Create Alter Drop table statements

2009-03-16 Thread Hatem Nassrat
Hi, Is there any way to rollback a transaction in MySQL 5.1 that contains Create, Alter, Drop, table statements. i.e. is there any way to turn off the feature:     Statements That Cause an Implicit Commit or even remove some of the default statements that cause a commit. I tried using

Re: MySQL 5.1 Rolling back a transaction containing Create Alter Drop table statements

2009-03-16 Thread Baron Schwartz
On Mon, Mar 16, 2009 at 10:25 AM, Hatem Nassrat hatem.nass...@gmail.com wrote: Hi, Is there any way to rollback a transaction in MySQL 5.1 that contains Create, Alter, Drop, table statements. No. Sorry. -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql

Re: How much memory can mysql 5.1 take advantage of?

2009-02-05 Thread Luis Motta Campos
Jake Maul wrote: Didn't want this to go unanswered, although I don't have any great info for you. As long as you're running a 64-bit OS and a 64-bit version of MySQL, there's no technical reason it would be limited to less than the addressable space (that I know of). The main gain would

Re: How much memory can mysql 5.1 take advantage of?

2009-01-22 Thread mos
At 01:08 PM 1/20/2009, you wrote: While specing out a new server, I was wondering if there is any limit to how much memory can be allocated to mysql 5.1. If a server has 16GB of ram, can mysql take advantage of that much ram (minus a reserved amount for the OS obviously)? Is there any limit

Re: How much memory can mysql 5.1 take advantage of?

2009-01-22 Thread Aaron Blew
wrote: At 01:08 PM 1/20/2009, you wrote: While specing out a new server, I was wondering if there is any limit to how much memory can be allocated to mysql 5.1. If a server has 16GB of ram, can mysql take advantage of that much ram (minus a reserved amount for the OS obviously)? Is there any

Re: How much memory can mysql 5.1 take advantage of?

2009-01-22 Thread mos
mailto:mo...@fastmail.fmmo...@fastmail.fm wrote: At 01:08 PM 1/20/2009, you wrote: While specing out a new server, I was wondering if there is any limit to how much memory can be allocated to mysql 5.1. If a server has 16GB of ram, can mysql take advantage of that much ram (minus a reserved amount

Re: How much memory can mysql 5.1 take advantage of?

2009-01-21 Thread Jake Maul
much memory can be allocated to mysql 5.1. If a server has 16GB of ram, can mysql take advantage of that much ram (minus a reserved amount for the OS obviously)? Is there any limit such as those imposed by 32-bit processors? Thanks! http://www.retailretreat.com -- MySQL General Mailing

Re: How much memory can mysql 5.1 take advantage of?

2009-01-21 Thread bmurphy
memory can be allocated to mysql 5.1. If a server has 16GB of ram, can mysql take advantage of that much ram (minus a reserved amount for the OS obviously)? Is there any limit such as those imposed by 32-bit processors? Thanks! http://www.retailretreat.com -- MySQL General Mailing List

How much memory can mysql 5.1 take advantage of?

2009-01-20 Thread webtek2001-mysql
While specing out a new server, I was wondering if there is any limit to how much memory can be allocated to mysql 5.1. If a server has 16GB of ram, can mysql take advantage of that much ram (minus a reserved amount for the OS obviously)? Is there any limit such as those imposed by 32-bit

Re: What's wrong with user defined variable in this MySQL 5.1 example?

2009-01-19 Thread b
mos wrote: I'm using MySQL 5.1.30 (WinXP) and user defined variables don't seem to be working properly if the Select statement is sorted. Here is a simple example: CREATE TABLE `tmp` ( `Purch_Date` date DEFAULT NULL, `Product` char(10) DEFAULT NULL ) ENGINE=MyISAM

Re: What's wrong with user defined variable in this MySQL 5.1 example?

2009-01-19 Thread Baron Schwartz
On Mon, Jan 19, 2009 at 4:14 AM, b my...@logi.ca wrote: mos wrote: I'm using MySQL 5.1.30 (WinXP) and user defined variables don't seem to be working properly if the Select statement is sorted. Here is a simple example: CREATE TABLE `tmp` ( `Purch_Date` date DEFAULT NULL,

Re: What's wrong with user defined variable in this MySQL 5.1 example?

2009-01-19 Thread mos
At 03:14 AM 1/19/2009, b wrote: mos wrote: I'm using MySQL 5.1.30 (WinXP) and user defined variables don't seem to be working properly if the Select statement is sorted. Here is a simple example: CREATE TABLE `tmp` ( `Purch_Date` date DEFAULT NULL, `Product` char(10)

Re: What's wrong with user defined variable in this MySQL 5.1 example?

2009-01-19 Thread b
mos wrote: At 03:14 AM 1/19/2009, b wrote: mos wrote: I'm using MySQL 5.1.30 (WinXP) and user defined variables don't seem to be working properly if the Select statement is sorted. Here is a simple example: CREATE TABLE `tmp` ( `Purch_Date` date DEFAULT NULL, `Product`

Re: What's wrong with user defined variable in this MySQL 5.1 example?

2009-01-19 Thread Baron Schwartz
This means anytime a user defined variable like @num := @num + 1 and is used in a query that is sorted, it is going to have to be changed to a subquery. For example, if someone was using it to display detail line item numbers on an invoice, it now has to be turned into a subselect. This breaks

What's wrong with user defined variable in this MySQL 5.1 example?

2009-01-18 Thread mos
I'm using MySQL 5.1.30 (WinXP) and user defined variables don't seem to be working properly if the Select statement is sorted. Here is a simple example: CREATE TABLE `tmp` ( `Purch_Date` date DEFAULT NULL, `Product` char(10) DEFAULT NULL ) ENGINE=MyISAM DEFAULT

MySQL 5.1 queries 1000x slower than 5.0

2009-01-11 Thread mos
items has approx 30 million rows in it and there are approx 5,000 rows for 'ABC'. I copied these tables over from the MySQ 5.0 data directory to the MySQL 5.1 data directory. My question is this. Has the table or index structure changed in 5.1? Do I have to optimize all of the tables before

Re: MySQL 5.1 queries 1000x slower than 5.0

2009-01-11 Thread Baron Schwartz
On Sun, Jan 11, 2009 at 2:24 PM, mos mo...@fastmail.fm wrote: Yesterday I decided to take the plunge and upgrade from MySQL 5.01 to 5.1.30 because after all, it was Saturday and what else is there to do on a Saturday? I'm running it on XP Pro with 3gb ram and used the my.ini for very large

Re: MySQL 5.1 queries 1000x slower than 5.0 - OPTIMIZER BUG

2009-01-11 Thread mos
At 03:25 PM 1/11/2009, you wrote: On Sun, Jan 11, 2009 at 2:24 PM, mos mo...@fastmail.fm wrote: Yesterday I decided to take the plunge and upgrade from MySQL 5.01 to 5.1.30 because after all, it was Saturday and what else is there to do on a Saturday? I'm running it on XP Pro with 3gb ram

Re: MySQL 5.1 queries 1000x slower than 5.0 - OPTIMIZER BUG

2009-01-11 Thread Baron Schwartz
On Sun, Jan 11, 2009 at 9:31 PM, mos mo...@fastmail.fm wrote: At 03:25 PM 1/11/2009, you wrote: On Sun, Jan 11, 2009 at 2:24 PM, mos mo...@fastmail.fm wrote: Yesterday I decided to take the plunge and upgrade from MySQL 5.01 to 5.1.30 because after all, it was Saturday and what else is

Re: Sun's Mickos Is OK With Monty's MySQL 5.1 Rant WAS: MySQL Server 5.1.30 has been released

2008-12-09 Thread Daevid Vincent
http://developers.slashdot.org/article.pl?sid=08%2F12%2F09% 2F0047225from=rss Sun's Mickos Is OK With Monty's MySQL 5.1 Rant Back on November 29, MySQL developer Michael Widenius trashed Sun's decision to give MySQL 5.1 a 'generally available' designation in a now-infamous blog post. Widenius

Re: Sun's Mickos Is OK With Monty's MySQL 5.1 Rant WAS: MySQL Server 5.1.30 has been released

2008-12-09 Thread Glyn Astill
[EMAIL PROTECTED] Subject: Re: Sun's Mickos Is OK With Monty's MySQL 5.1 Rant WAS: MySQL Server 5.1.30 has been released To: mysql mysql@lists.mysql.com Date: Tuesday, 9 December, 2008, 8:12 PM http://developers.slashdot.org/article.pl?sid=08%2F12%2F09% 2F0047225from=rss Sun's Mickos Is OK

MySQL 5.1 declared GA

2008-11-29 Thread Michael Widenius
Hi! If you want to know what to expect from MySQL 5.1 GA and when to start using it, please check my blog at: http://monty-says.blogspot.com/ Regards, Monty Creator of MySQL -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http

Re: MySQL 5.1 Function Creation

2008-10-24 Thread Moon's Father
Make sure your log_bin_trust_function_creator is on. On Sun, Sep 28, 2008 at 3:04 AM, Jesse [EMAIL PROTECTED] wrote: I'm trying to use existing functions from a restored database from 5.0xx to 5.1, and get an error about the mysql.proc table is missing or corrupt. The mysql.proc table appears

MySQL 5.1 error

2008-09-27 Thread Jesse
I'm trying to get our new Windows Server 2008 running. I believe I heard that I have to install 5.1 on there to get it running. I think I'm aout to find out, because I'm giong to uninstall 5.1 and install 5.0.xxx At any rate, here's what's going on: I bring up the Query Browser GUI, and

MySQL 5.1 Function Creation

2008-09-27 Thread Jesse
I'm trying to use existing functions from a restored database from 5.0xx to 5.1, and get an error about the mysql.proc table is missing or corrupt. The mysql.proc table appears to be there, and does not appear to be corrupt. I did a grant select on mysql.proc to user, and that did not make any

MySQL 5.1 Cluster Certification Study Guide

2007-12-05 Thread Stefan Hinz
Hi, A little over a year since the project to write this book began, the MySQL 5.1 Cluster Certification Study Guide is now at long last available. Covering the Certified MySQL 5.1 Cluster Database Administrator exam, this study guide is the one authority to look to when you're preparing

Re: MySQL 5.1

2006-10-20 Thread Jacques Marneweck
Sid Lane wrote: any update on the 5.1 general release date? is it still on target for Q4 - Q1? any narrower window? Last I heard, Q2 next year. Regards --jm On 8/30/06, Colin Charles [EMAIL PROTECTED] wrote: Logan, David (SST - Adelaide) wrote: Hi! Does anybody have any idea when 5.1

Re: MySQL 5.1

2006-10-19 Thread Sid Lane
any update on the 5.1 general release date? is it still on target for Q4 - Q1? any narrower window? On 8/30/06, Colin Charles [EMAIL PROTECTED] wrote: Logan, David (SST - Adelaide) wrote: Hi! Does anybody have any idea when 5.1 may come to General Release? I am particularly interested in

Re: MySQL 5.1

2006-08-30 Thread Colin Charles
Logan, David (SST - Adelaide) wrote: Hi! Does anybody have any idea when 5.1 may come to General Release? I am particularly interested in MySQL Cluster as I have several databases (around 50) totalling 26Gb and would like to consider moving to this version because of the Cluster Disk Data

Re: MySQL 5.1

2006-08-29 Thread Jacques Marneweck
Logan, David (SST - Adelaide) wrote: Hi Folks, Does anybody have any idea when 5.1 may come to General Release? I am particularly interested in MySQL Cluster as I have several databases (around 50) totalling 26Gb and would like to consider moving to this version because of the Cluster Disk

MySQL 5.1

2006-08-28 Thread Logan, David (SST - Adelaide)
Hi Folks, Does anybody have any idea when 5.1 may come to General Release? I am particularly interested in MySQL Cluster as I have several databases (around 50) totalling 26Gb and would like to consider moving to this version because of the Cluster Disk Data Storage and the fact the current

Re: MySQL 5.1

2006-08-28 Thread David Griffiths
The cluster engine has been available since the 4.0 tree, I believe. You can begin using it immediately with 5.0 (which is GA). David Logan, David (SST - Adelaide) wrote: Hi Folks, Does anybody have any idea when 5.1 may come to General Release? I am particularly interested in MySQL

MySQL 5.1 Reference Manual in Chinese

2006-07-12 Thread Stefan Hinz
The Chinese translation of the MySQL Reference Manual is complete. It was done by one of our partners from Beijing, People's Republic of China, and covers MySQL 5.1. Due to problems beyond our control it's not available in CHM or PDF, but you can view it online, or download the HTML version: http