MySQL Community Server 5.0.84 has been released

2009-07-23 Thread sunanda menon


Dear MySQL users,

MySQL Community Server 5.0.84, a new version of the popular Open Source
Database Management System, has been released. This and future releases
in the MySQL Community Server 5.0 series share version numbers with
their MySQL Enterprise Server counterparts.

The release is now available in source and binary form for a number of
platforms from our download pages at

http://dev.mysql.com/downloads/

and mirror sites.  Note that not all mirror sites may be up to date at
this point in time, so if you can't find this version on some mirror,
please try again later or choose another download site.

We welcome and appreciate your feedback, bug reports, bug fixes,
patches etc.:

http://forge.mysql.com/wiki/Contributing

This section documents all changes and bugfixes that have been
applied since the last MySQL Community Server release (5.0.83).

http://dev.mysql.com/doc/refman/5.0/en/news-5-0-84.html

If you would like to receive more fine-grained and personalized
update alerts about fixes that are relevant to the version and
features you use, please consider subscribing to MySQL Enterprise
(a commercial MySQL offering). For more details please see
http://www.mysql.com/products/enterprise/advisors.html.


Bugs fixed:

* Important Change: Replication: BEGIN, COMMIT, and ROLLBACK
 statements are no longer affected by --replicate-do-db or
 --replicate-ignore-db rules.
 (Bug#43263: http://bugs.mysql.com/43263)

   * Replication: When reading a binary log that was in use by a
 master or that had not been properly closed (possibly due to a
 crash), the following message was printed: Warning: this
 binlog was not closed properly. Most probably mysqld crashed
 writing it. This message did not take into account the
 possibility that the file was merely in use by the master,
 which caused some users concern who were not aware that this
 could happen.
 To make this clear, the original message has been replaced
 with Warning: this binlog is either is use or was not closed
 properly. (Bug#34687: http://bugs.mysql.com/34687)

   * The server crashed for attempts to use REPLACE or INSERT ...
 ON DUPLICATE KEY UPDATE with a view defined using a join.
 (Bug#45806: http://bugs.mysql.com/45806)

   * The combination of MIN() or MAX() in the select list with
 WHERE and GROUP BY clauses could lead to incorrect results.
 (Bug#45386: http://bugs.mysql.com/45386)

   * Use of ROUND() on a LONGTEXT or LONGBLOB column of a derived
 table could cause a server crash.
 (Bug#45152: http://bugs.mysql.com/45152)

   * Index Merge followed by a filesort could result in a server
 crash if sort_buffer_size was not large enough for all sort
 keys. (Bug#44810: http://bugs.mysql.com/44810)

   * The PASSWORD() and OLD_PASSWORD() functions could read memory
 outside of an internal buffer when used with BLOB arguments.
 (Bug#44767: http://bugs.mysql.com/44767)

   * Shared-memory connections did not work in Vista if mysqld was
 started from the command line.
 (Bug#41190: http://bugs.mysql.com/41190)

   * In the mysql client, using a default character set of binary
 caused internal commands such as DELIMITER to become case
 sensitive. (Bug#37268: http://bugs.mysql.com/37268)

   * On Windows, the _PC macro in my_global.h was causing problems
 for modern compilers. It has been removed because it is no
 longer used. (Bug#34309: http://bugs.mysql.com/34309)

   * The InnoDB adaptive hash latch is released (if held) for
 serveral potentially long-running operations. This improves
 throughput for other queries if the current query is removing
 a temporary table, changing a temporary table from memory to
 disk, using CREATE TABLE ... SELECT, or performing a MyISAM
 repair on a table used within a transaction.
 (Bug#32149: http://bugs.mysql.com/32149)


Thanks,
Sunanda

--
Sunanda Menon
Database Technology Group
BLR03, x87098/91-80-66937098
http://blogs.sun.com/smenon


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



RE: How do you remove a user from the grant table?!!

2009-07-23 Thread Sudhir Menon
*mysql> create user 'test'@'localhost' identified by 'pass';*
Query OK, 0 rows affected (0.00 sec)

*mysql> GRANT CREATE, DELETE ON *.* TO 'test'@'localhost';*
Query OK, 0 rows affected (0.00 sec)

*mysql> select * from information_schema.user_privileges where grantee like
"'test'@'localhost'";*
++---++--+
| GRANTEE| TABLE_CATALOG | PRIVILEGE_TYPE | IS_GRANTABLE |
++---++--+
| 'test'@'localhost' | NULL  | DELETE | NO   |
| 'test'@'localhost' | NULL  | CREATE | NO   |
++---++--+
2 rows in set (0.00 sec)

*mysql> REVOKE ALL PRIVILEGES, GRANT OPTION FROM 'test'@'localhost';*
Query OK, 0 rows affected (0.00 sec)

*mysql> select * from information_schema.user_privileges where grantee like
"'test'@'localhost'";*
++---++--+
| GRANTEE| TABLE_CATALOG | PRIVILEGE_TYPE | IS_GRANTABLE |
++---++--+
| 'test'@'localhost' | NULL  | USAGE  | NO   |
++---++--+
*
REVOKEremoves
privileges, but does not drop
mysql.user table entries. To remove a user account entirely, use DROP
USER

mysql> drop user 'test'@'localhost;

mysql> select * from information_schema.user_privileges where grantee like
"'test'@'localhost'";
Empty set (0.00 sec)
*


Re: mysqldump and access rights

2009-07-23 Thread peng yao
# chown mysql.mysql  datafile

2009/7/23 walter harms 

> Hi list,
> i use  mysqldump --tab  to create database dumps. this will produce txt and
> sql files.
> the resulting sql files is owned by the user but the resulting datafile is
> owned by mysql.mysql
> is there any way to change that ?
>
> re.
>  wh
>
> --
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:http://lists.mysql.com/mysql?unsub=xwei...@gmail.com
>
>


mysqldump and access rights

2009-07-23 Thread walter harms
Hi list,
i use  mysqldump --tab  to create database dumps. this will produce txt and sql 
files.
the resulting sql files is owned by the user but the resulting datafile is 
owned by mysql.mysql
is there any way to change that ?

re.
 wh

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



Re: PHP MYSQL Admin question

2009-07-23 Thread The Doctor
On Thu, Jul 23, 2009 at 08:47:41AM -0500, Johnny Withers wrote:
> Are you sure MySQL is running?
> Can you connect with any other MySQL client?
>

Turns out the php.ini was not set properly.
 
> On Wed, Jul 22, 2009 at 1:55 PM, Dave Shariff Yadallee - System
> Administrator a.k.a. The Root of the Problem  wrote:
> 
> > Trying the latest phpMYAdmin on Mac OS X.
> >
> > Everything is set up correct but I get
> >
> > #2002 - The server is not responding (or the local MySQL server's socket is
> > not correctly configured)
> >
> > And I am telling config.php where the mysql.sock file is located.
> >
> > Help.
> >
> > --
> > MySQL General Mailing List
> > For list archives: http://lists.mysql.com/mysql
> > To unsubscribe:http://lists.mysql.com/mysql?unsub=joh...@pixelated.net
> >
> >
> 
> 
> -- 
> -
> Johnny Withers
> 601.209.4985
> joh...@pixelated.net

-- 
Member - Liberal International  This is doc...@nl2k.ab.ca
Ici doc...@nl2k.ab.ca God, Queen and country! Beware Anti-Christ rising!
Never Satan President Republic!
The fool says in his heart, "There is no God". They are corrupt, and their ways 
are vile; there is no one who does good. - Ps 53:1

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



Re: Index selection problem

2009-07-23 Thread Johnny Withers
Maybe I'm wrong :)


On Tuesday, July 21, 2009, John Daisley  wrote:
>
>
> On Tue, 2009-07-21 at 19:42 +0200, Morten Primdahl wrote:
>
>> On Jul 21, 2009, at 3:27 PM, Johnny Withers wrote:
>>
>> > MySQL is unable to use your index when you use IN and/or OR on yoru
>> > column.
>>
>> Is this really true?
>
>
> No its not true! Try running OPTIMIZE TABLE on the affected table, then
> run the query again and see if the other index is used!
>
>
>
>
>>
>> I'm reading "High Performance MySQL 2nd ed." these days and
>> specifically got the impression that using IN will allow usage of the
>> index. The below quote is from the book, and the "multiple equality
>> condition" refers to an IN (...) expression.
>>
>> "... we draw a distinction between ranges of values and multiple
>> equality conditions.The second query is a multiple equality condition,
>> in our terminology. We’re not just being picky: these two kinds of
>> index accesses perform differently. The range condition makes MySQL
>> ignore any further columns in the index, but the multiple equality
>> condition doesn’t have that limitation."
>>
>>
>>
>>
>>
>
> John Daisley
> Email: john.dais...@butterflysystems.co.uk
> Mobile: +44 (0)7812 451238
>
> MySQL Certified Database Administrator (CMDBA)
> MySQL Certified Developer (CMDEV)
> MySQL Certified Associate (CMA)
> Comptia A+ Certified Professional IT Technician
>
> ---
>
> Life's journey is not to arrive at the grave safely in a well preserved
> body, but rather to slide in sideways, thoroughly used up, totally worn
> out and screaming "Wow! what a ride!"
>

-- 
-
Johnny Withers
601.209.4985
joh...@pixelated.net

--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



Re: PHP MYSQL Admin question

2009-07-23 Thread Johnny Withers
Are you sure MySQL is running?
Can you connect with any other MySQL client?

On Wed, Jul 22, 2009 at 1:55 PM, Dave Shariff Yadallee - System
Administrator a.k.a. The Root of the Problem  wrote:

> Trying the latest phpMYAdmin on Mac OS X.
>
> Everything is set up correct but I get
>
> #2002 - The server is not responding (or the local MySQL server's socket is
> not correctly configured)
>
> And I am telling config.php where the mysql.sock file is located.
>
> Help.
>
> --
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:http://lists.mysql.com/mysql?unsub=joh...@pixelated.net
>
>


-- 
-
Johnny Withers
601.209.4985
joh...@pixelated.net


PHP MYSQL Admin question

2009-07-23 Thread Dave Shariff Yadallee - System Administrator a.k.a. The Root of the Problem
Trying the latest phpMYAdmin on Mac OS X.

Everything is set up correct but I get  

#2002 - The server is not responding (or the local MySQL server's socket is not 
correctly configured)

And I am telling config.php where the mysql.sock file is located.

Help.

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



Re: How do you show ALL grants for a username?

2009-07-23 Thread John Daisley
Use information_schema!

select * from information_schema.user_privileges where  grantee like
"'madc'@%";

Should get you what you need.

John Daisley
Email: john.dais...@butterflysystems.co.uk
Mobile: +44 (0)7812 451238

MySQL Certified Database Administrator (CMDBA)
MySQL Certified Developer (CMDEV)
MySQL Certified Associate (CMA)
Comptia A+ Certified Professional IT Technician

---

Life's journey is not to arrive at the grave safely in a well preserved
body, but rather to slide in sideways, thoroughly used up, totally worn
out and screaming "Wow! what a ride!"



















On Wed, 2009-07-22 at 12:58 -0700, Daevid Vincent wrote:

> (r...@localhost) [(none)]> SELECT CONCAT('SHOW GRANTS FOR \'', user
> ,'\'@\'', host, '\';') AS mygrants FROM mysql.user ORDER BY mygrants;
> +-+
> | mygrants|
> +-+
> | SHOW GRANTS FOR ''@'localhost'; |
> | SHOW GRANTS FOR ''@'pse01'; |
> | SHOW GRANTS FOR 'debian-sys-maint'@'localhost'; |
> | SHOW GRANTS FOR 'madc'@'%'; |
> | SHOW GRANTS FOR 'madc'@'10.10.10.%';|
> | SHOW GRANTS FOR 'madc'@'10.10.10.42';   |
> | SHOW GRANTS FOR 'madc'@'127.0.0.1'; |
> | SHOW GRANTS FOR 'madc'@'localhost'; |
> | SHOW GRANTS FOR 'root'@'127.0.0.1'; |
> | SHOW GRANTS FOR 'root'@'localhost'; |
> | SHOW GRANTS FOR 'slave'@'10.10.10.%';   |
> | SHOW GRANTS FOR 'slave_user'@'%';   |
> +-+
> 
> But how do I see all the grants that "madc" has? I would have expected the %
> wildcard to work, but mysql uses it as a literal!?
> 
> (r...@localhost) [(none)]> SHOW GRANTS FOR 'madc'@'%';
> +---
> -+
> | Grants for m...@%
> |
> +---
> -+
> | GRANT ALL PRIVILEGES ON *.* TO 'madc'@'%' IDENTIFIED BY PASSWORD
> '*3A4AE615A4AC13515847C40F6F34892B51A6D209' WITH GRANT OPTION |
> | GRANT ALL PRIVILEGES ON `misc`.* TO 'madc'@'%' WITH GRANT OPTION
> |
> | GRANT ALL PRIVILEGES ON `elog`.* TO 'madc'@'%' WITH GRANT OPTION
> |
> +---
> -+
> 
> (r...@localhost) [(none)]> SHOW GRANTS FOR 'madc';
> +---
> -+
> | Grants for m...@%
> |
> +---
> -+
> | GRANT ALL PRIVILEGES ON *.* TO 'madc'@'%' IDENTIFIED BY PASSWORD
> '*3A4AE615A4AC13515847C40F6F34892B51A6D209' WITH GRANT OPTION |
> | GRANT ALL PRIVILEGES ON `misc`.* TO 'madc'@'%' WITH GRANT OPTION
> |
> | GRANT ALL PRIVILEGES ON `elog`.* TO 'madc'@'%' WITH GRANT OPTION
> |
> +---
> -+
> 
> (r...@localhost) [(none)]> SHOW GRANTS FOR 'madc'@;
> ERROR 1141 (42000): There is no such grant defined for user 'madc' on host
> ''
> 
> 


How do you remove a user from the grant table?!!

2009-07-23 Thread Daevid Vincent
How the F do you remove a user from the grant table?!!

The mysql.com site is down too by the way...


(r...@localhost) [(none)]> SHOW GRANTS FOR 'madc';
ERROR 1141 (42000): There is no such grant defined for user 'madc' on host
'%'
(r...@localhost) [(none)]> SHOW GRANTS FOR 'madc'@;
ERROR 1141 (42000): There is no such grant defined for user 'madc' on host
''
(r...@localhost) [(none)]> SHOW GRANTS FOR 'madc'@'%';
ERROR 1141 (42000): There is no such grant defined for user 'madc' on host
'%'
(r...@localhost) [(none)]> SHOW GRANTS FOR 'madc'@'localhost';
+--+
| Grants for m...@localhost|
+--+
| GRANT USAGE ON *.* TO 'madc'@'localhost' |
| GRANT ALL PRIVILEGES ON `panasonic_elog`.* TO 'madc'@'localhost' |
+--+
2 rows in set (0.00 sec)

(r...@localhost) [(none)]> REVOKE ALL PRIVILEGES, GRANT OPTION FROM
'madc'@'127.0.0.1';
Query OK, 0 rows affected (0.00 sec)

(r...@localhost) [(none)]> REVOKE ALL PRIVILEGES, GRANT OPTION FROM
'madc'@'localhost';
Query OK, 0 rows affected (0.00 sec)

(r...@localhost) [(none)]> GRANT ALL PRIVILEGES ON `panasonic_elog`.* TO
'madc'@'127.0.0.1' IDENTIFIED BY 'madc';
Query OK, 0 rows affected (0.00 sec)

(r...@localhost) [(none)]> SHOW GRANTS FOR 'madc'@'127.0.0.1';
+---
--+
| Grants for m...@127.0.0.1
|
+---
--+
| GRANT USAGE ON *.* TO 'madc'@'127.0.0.1' IDENTIFIED BY PASSWORD
'*3A4AE615A4AC13515847C40F6F34892B51A6D209' |
| GRANT ALL PRIVILEGES ON `panasonic_elog`.* TO 'madc'@'127.0.0.1'
|
+---
--+
2 rows in set (0.00 sec)


(r...@localhost) [(none)]> REVOKE ALL PRIVILEGES, GRANT OPTION FROM
'madc'@'127.0.0.1';
Query OK, 0 rows affected (0.00 sec)

(r...@localhost) [(none)]> SELECT CONCAT('SHOW GRANTS FOR \'', user
,'\'@\'', host, '\';') AS mygrants FROM mysql.user ORDER BY mygrants;
+-+
| mygrants|
+-+
| SHOW GRANTS FOR ''@'localhost'; |
| SHOW GRANTS FOR 'debian-sys-maint'@'localhost'; |
| SHOW GRANTS FOR 'madc'@'127.0.0.1'; |
| SHOW GRANTS FOR 'madc'@'localhost'; |
| SHOW GRANTS FOR 'root'@'127.0.0.1'; |
| SHOW GRANTS FOR 'root'@'localhost'; |
| SHOW GRANTS FOR 'slave'@'10.10.10.%';   |
| SHOW GRANTS FOR 'slave_user'@'%';   |
+-+

(r...@localhost) [(none)]> REVOKE ALL PRIVILEGES, GRANT OPTION FROM
'madc'@'127.0.0.1'; Query OK, 0 rows affected (0.00 sec)

(r...@localhost) [(none)]> REVOKE ALL PRIVILEGES, GRANT OPTION FROM
'madc'@'localhost';
Query OK, 0 rows affected (0.01 sec)

(r...@localhost) [(none)]> SELECT CONCAT('SHOW GRANTS FOR \'', user
,'\'@\'', host, '\';') AS mygrants FROM mysql.user ORDER BY mygrants;
+-+
| mygrants|
+-+
| SHOW GRANTS FOR ''@'localhost'; |
| SHOW GRANTS FOR ''@'pse05'; |
| SHOW GRANTS FOR 'debian-sys-maint'@'localhost'; |
| SHOW GRANTS FOR 'madc'@'127.0.0.1'; |
| SHOW GRANTS FOR 'madc'@'localhost'; |
| SHOW GRANTS FOR 'root'@'127.0.0.1'; |
| SHOW GRANTS FOR 'root'@'localhost'; |
| SHOW GRANTS FOR 'slave'@'10.10.10.%';   |
| SHOW GRANTS FOR 'slave_user'@'%';   |
+-+

(r...@localhost) [(none)]> SHOW GRANTS FOR 'madc'@'127.0.0.1';
+---
--+
| Grants for m...@127.0.0.1
|
+---
--+
| GRANT USAGE ON *.* TO 'madc'@'127.0.0.1' IDENTIFIED BY PASSWORD
'*3A4AE615A4AC13515847C40F6F34892B51A6D209' |
+---
--+
1 row in set (0.00 sec)

(r...@localhost) [(none)]> REVOKE ALL PRIVILEGES FROM 'madc'@'127.0.0.1';
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 'FROM 'madc'@'127.0.0.1'' at line 1
(r...@localhost) [(none)]> REVOKE ALL PRIVILEGES ON 'madc'@'127.0.0.1';
ERROR 1064 (42000): You have an error in your SQL syntax; check the manual
that corres

Where does mysqld write a core file?

2009-07-23 Thread Per Jessen
I've been trying to make mysqld write a coredump following a crash, and
this morning I finally succeeded - according to mysqld.log anyway.  It
clearly says "Writing a core file" - but where to?  I've checked the
datadir /var/lib/mysql, whereelse might it be? 


/Per Jessen, Zürich


--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



Re: mysqldump output

2009-07-23 Thread peng yao
#mysqldump -u username -p -h mysqld_host databasename > database_name.sql
username is the mysqld server login name
mysqld_host is the mysqld server address or hostname
databasename is the database which you should dump

You can use "man mysqldump" or "mysqldump --help" to get more infomation

2009/7/21 zhu dingze 

> we need more information,
> such as your client and server version, the command that exactly your input
> etc.
>
> 2009/7/14 JingTian 
>
> > hi all,
> >
> > i use mysqldump to backup my database,
> > the command line is; mysqldump -p -u -h database_name > database_name.sql
> >
> > i find in the database_name.sql, there is a line:
> > Not dumping tablespaces as no INFORMATION_SCHEMA.FILES table on this
> server
> >
> > can anyone tell me what does it mean?
> >
> > thanks very much,
> > --
> > Tianjing
> >
>
>
>
> --
> Dingze Zhu
>
> We are running the best Chinese MySQL and Solaris Community in China.
> Welcome to visit http://www.mysqlsystems.com
>


How do you show ALL grants for a username?

2009-07-23 Thread Daevid Vincent
(r...@localhost) [(none)]> SELECT CONCAT('SHOW GRANTS FOR \'', user
,'\'@\'', host, '\';') AS mygrants FROM mysql.user ORDER BY mygrants;
+-+
| mygrants|
+-+
| SHOW GRANTS FOR ''@'localhost'; |
| SHOW GRANTS FOR ''@'pse01'; |
| SHOW GRANTS FOR 'debian-sys-maint'@'localhost'; |
| SHOW GRANTS FOR 'madc'@'%'; |
| SHOW GRANTS FOR 'madc'@'10.10.10.%';|
| SHOW GRANTS FOR 'madc'@'10.10.10.42';   |
| SHOW GRANTS FOR 'madc'@'127.0.0.1'; |
| SHOW GRANTS FOR 'madc'@'localhost'; |
| SHOW GRANTS FOR 'root'@'127.0.0.1'; |
| SHOW GRANTS FOR 'root'@'localhost'; |
| SHOW GRANTS FOR 'slave'@'10.10.10.%';   |
| SHOW GRANTS FOR 'slave_user'@'%';   |
+-+

But how do I see all the grants that "madc" has? I would have expected the %
wildcard to work, but mysql uses it as a literal!?

(r...@localhost) [(none)]> SHOW GRANTS FOR 'madc'@'%';
+---
-+
| Grants for m...@%
|
+---
-+
| GRANT ALL PRIVILEGES ON *.* TO 'madc'@'%' IDENTIFIED BY PASSWORD
'*3A4AE615A4AC13515847C40F6F34892B51A6D209' WITH GRANT OPTION |
| GRANT ALL PRIVILEGES ON `misc`.* TO 'madc'@'%' WITH GRANT OPTION
|
| GRANT ALL PRIVILEGES ON `elog`.* TO 'madc'@'%' WITH GRANT OPTION
|
+---
-+

(r...@localhost) [(none)]> SHOW GRANTS FOR 'madc';
+---
-+
| Grants for m...@%
|
+---
-+
| GRANT ALL PRIVILEGES ON *.* TO 'madc'@'%' IDENTIFIED BY PASSWORD
'*3A4AE615A4AC13515847C40F6F34892B51A6D209' WITH GRANT OPTION |
| GRANT ALL PRIVILEGES ON `misc`.* TO 'madc'@'%' WITH GRANT OPTION
|
| GRANT ALL PRIVILEGES ON `elog`.* TO 'madc'@'%' WITH GRANT OPTION
|
+---
-+

(r...@localhost) [(none)]> SHOW GRANTS FOR 'madc'@;
ERROR 1141 (42000): There is no such grant defined for user 'madc' on host
''


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org



dev.mysql.com is down.

2009-07-23 Thread Daevid Vincent
 


Open Source Database Magazine - Issue One Released

2009-07-23 Thread bmurphy
I just uploaded the pdf of the summer issue of Open Source Database
Magazine. Included in this issue:

* A great article on the new features of Postgresql 8.4 by Robert Treat
* Part one of a two part article on Percona’s new XtraBackup backup
program

Also the news, the book shelf and Peter Brawley’s Coding Corner. Downloads
are available at http://www.osdbzine.net.

thanks,

Keith Murphy

Editor

Open Source Database Magazine
http://www.osdbzine.net


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/mysql?unsub=arch...@jab.org