The Thanksgiving break was a welcome change of pace... and on the idle driving up and down the Californian coastline, I had a few moments to work on the MySQL External Stored Procedures project. I think I pretty much have Perl functioning fully and a couple of minor problems were resolved.Yesterday, I completed the first draft of the all-revised-from-scratch WL#3771, now titled as the Plugable
I just sent out the mail to the mailing lists to officially announce the 5.0.10 release. I have added an additional page that will keep track of the changes we make and it is available here. The change log file is included in the source package as well of course.
I am curious how the level of regression bugs will be. For Workbench we have a unit testing framework in place as well as an ever expanding suite of UI tests. We are using TestComplete and as long as the tool does not crash itself (which happens quite a lot, sadly) it is quite useful to automated the UI testing.
Please keep testing and reporting bugs. We will keep working hard to fix reported issues as fast as possible.
Eddie Awad, Oracle blogger extraordinaire, has published the 73rd edition of Log Buffer, the weekly review of database blogs. Daniel Crook is on-deck, but won’t bat until January. That leaves plenty of room for others, so I invite you to get involved. Send an email to the Log Buffer coordinator (that would be me). Here’s Eddie [...]
The first initial Memcached MySQL UDF functions version has been
released. You can download them at:
http://download.tangent.org/memcached_functions_mysql-0.1.tar.gz
Developed by Brian Aker and Patrick Galbraith, These are a number
of MySQL user defined functions based on libmemcached (http://tangent.org/552/libmemcached.html)
mirroring libmemcached client functions.
Included are:
memc_servers_set() - sets list of memcached servers to use
memc_set(hash, value) - sets a value keyed by hash in
memcached
memc_get(hash) - retrieves a value from memcached keyed by
hash
memc_delete() - deletes a value from memcached keyed by
hash
memc_append() - appends to the end of a value in memcached …
I have just published a page showing selected screenshots of Workbench in action. Find it here. While there are so may things to show there few shots should give a good initial impression of what the tool looks like and what I can be used for.
The shots have been taken of the 5.0.10 release that we are about to publish.
Apart form the Xen book I coauthored earlier this year the nice folks of the MySQL documentation team asked me to review parts of their MySQL Cluster Certification guide.
After a long wait it's finally out !
In contrary to the other one, this book took over a year to
finish because there was actually a lot of reviewing done by
different people.
You can buy it now at Lulu.com !
John might want to read it to figure out about his 5th step.
It is bit panic to see ‘Using filesort‘ from the extra field when one runs a explain of select query on MySQL server. At times it is bit annoy why MySQL optimizer does not avoid this as you can see from the following cases…
This is the information (Extra field) that scares a lot for many users from Explain output:
| [Copy to clipboard][-]View Code | |
1 2 3 4 5 6 7 8 9 10 |
id: 1
select_type: SIMPLE
table: t1
type: index
possible_keys: NULL
key: col1key
key_len: 5
ref: NULL
rows: 1000000
Extra: USING index; USING temporary; USING filesort |
Lets consider the following simple …
[Read more]I came across a problem on site yesterday. In moving the development environment to a new server and creating more appropriate permissions for users (they were using ALL on *.*) I found that the Java application would crash with a NullPointerException. The permissions were standard, and calling the Stored Procedure worked via the mysql prompt.
CREATE USER devuser@99.99.99.99; GRANT SELECT,INSERT,UPDATE,DELETE,EXECUTE ON devdb.* to devuser@99.99.99.99; CALL sp_test()
You can spend a lot of time looking into problems, luckily this development configuration had taken my advice to enabled the General Query Log. (Something everybody should do to know your SQL).
In closer inspection the following command was being sent to the MySQL Server. SHOW CREATE PROCEDURE sp_test; Attempting to run this command via the mysql prompt works.
SHOW CREATE PROCEDURE sp_test; +-----------+----------+------------------+ | Procedure …[Read more]
Time to install MySQL on my new MacBook.
$ cd /opt $ wget http://dev.mysql.com/get/Downloads/MySQL-5.0/mysql-5.0.45-osx10.4-i686.tar.gz/from/http://mysql.mirrors.hoobly.com/ $ tar xvfz mysql-5.0.45-osx10.4-i686.tar.gz $ cd mysql-5.0.45-ox10.4-i686 $ scripts/mysql_install_db Installing MySQL system tables... 071129 22:10:48 [Warning] Setting lower_case_table_names=2 because file system for /opt/mysql-5.0.45-osx10.4-i686/data/ is case insensitive OK Filling help tables... 071129 22:10:48 [Warning] Setting lower_case_table_names=2 because file system for /opt/mysql-5.0.45-osx10.4-i686/data/ is case insensitive OK bin/mysqld_safe & [1] 239 macbook:mysql-5.0.45-osx10.4-i686 rbradfor$ chown: /opt/mysql-5.0.45-osx10.4-i686/data/macbook.err: Operation not permitted Starting mysqld daemon with databases from /opt/mysql-5.0.45-osx10.4-i686/data $ bin/mysqladmin …[Read more]