With 47 MySQL sessions at Oracle Open World this year we are
going to be busy. Keeping updated on them in a easy fashion will
be best for all of us.
Sheeri has a matrix here: http://technocation.org/files/doc/2011_OOW_MySQL_Content.html
Oracle as a PDF here : http://www.oracle.com/openworld/oow11-focuson-mysql-486114.pdf
I went ahead and made public calendars so we can sync this
information across our phones and etc.... I will update
them when I find out about any changes and then of course
it should sync out to all of you who use them.
SESSIONS
XML …
In the new MySQL Workbench 5.2.35, a plugin that will be
of interest to PHP developers, both experienced and newbies, has
been added.
The plugin contains a couple of functions that allows you to
create PHP code straight out of your current work in the
Workbench SQL Editor, ready to be pasted to your PHP program.
Copy as PHP Code (Connect to Server) This first plugin will take the parameters from your currently open connection to MySQL and create PHP code to connect to it.
$host="p:localhost";
$port=3306;
$socket="/var/mysql/mysql.sock";
$user="root";
$password="";
$dbname="";
$con = new mysqli($host, $user, $password, $dbname, $port, $socket)
or die ('Could not connect to the database server' . mysqli_connect_error());
//$con->close();
Not a big deal, but saves some typing for getting something going quickly.
Copy as PHP Code (Iterate SELECT Results) This one …
[Read more]The MySQL Developer Tools team is proud to announce the next release of it’s flagship product, MySQL Workbench, version 5.2.35. This is the next maintenance release containing 29 bug fixes as well as new feature additions. We also updated the supported platforms to include most recent editions of Fedora and Ubuntu Linux.
MySQL Workbench 5.2.35 now supports the Native Windows Authentication Method – available in the commercial MySQL server product – and the creation of user accounts utilizing this new authentication method.
For the PHP developers out there, Workbench now also comes with a new set of plugins to turn SQL Queries into PHP code to be put right into your scripts.
A big “Thank You” again to everyone for the large amount of feedback and ideas we have received on how to further improve and extend MySQL Workbench. We are continuously working on improving the functionality and stability of MySQL Workbench …
[Read more]Along with many of my colleages, and many excellent community speakers, I will also be presenting at Oracle OpenWorld this year!
I’ll be giving two talks:
Getting to Know MySQL Enterprise Monitor – Tuesday, 10:15 AM, Marriott Marquis – Golden Gate C1
MySQL Enterprise Monitor is the monitoring and management solution for DBAs and developers delivered as part of MySQL Enterprise Edition. It provides background monitoring, alerting, trending, and analysis of the MySQL database and the statement traffic that is running within it.
Come to this session to learn how to install/configure, customize, and use MySQL Enterprise Monitor to suit your environment. …
[Read more]
An Oracle Open World blog post for us ! It has highlights and
links for you to see all the great MySQL content at Open
World.
http://blogs.oracle.com/oracleopenworld/entry/come_swim_with_the_dolphins
The main content this week is previewing Oracle OpenWorld's MySQL sessions.
News
Call for papers for Percona Live: MySQL Conference & Expo 2012 is
open! The call will close on Monday, December 5th. To submit a
paper, first register as a speaker at http://www.percona.com/live/mysql-conference-2012/user/register
and then go to My Account -> Submit Proposal.
CouchConf NYC is happening on Monday, October 24th in New York City. CouchConf is a one-day conference focused on Couch NoSQL database technology for web and mobile applications. There will be numerous technology sessions presented by leaders of the Apache CouchDB project and other Couch experts.
…
[Read more]
Introduction
Debugging SQL code is a very important task these days.
Unfortunately not all database servers support this feature. And
MySQL is one of such servers. In spite of its wide feature set,
debugging is not implemented in it. So the problem is
that MySQL provides no API functionalities for code
debugging. But the necessity to debug SQL code does not
disappear and becomes more and more important each year. Some
companies that develop tools to access data of MySQL server
databases create their own debuggers that solve this problem to
some extent.
Types of Debuggers
Now we will consider the types of debuggers that can be
implemented for MySQL server and principles of their work.
The first way of debugging stored procedures is to
divide their code to separate statements and send each statement
separately. This way execution is being emulated, …
The article describes the ways to debug MySQL stored routines with a GUI tool.
Virtualization is going to be one of the hottest topics at Oracle Open World 2011. Here is a link to track a number of the virtualization presentations.
http://www.oracle.com/openworld/oow11-focuson-virtualization-485282.pdf
Red Hat revenue up 28% in Q2. Funding for NoSQL vendors. And more.
# Red Hat reported net income of $40m in the second quarter on revenue up 28% to $281.3m.
# 10gen raised $20m in funding, while DataStax closed an $11m series B round, while also releasing its DataStax Enterprise and Community products. Additionally Neo Technology …
[Read more]