Showing entries 39283 to 39292 of 44069
« 10 Newer Entries | 10 Older Entries »
Opening Tables scalability

I was restarting MySQL on box with 50.000 of Innodb tables and again it took couple of hours to reach decent performance because of "Opening Tables" stage was taking long.

Part of the problem is Innodb is updating stats on each table open which is possibly expensive operation, but really it is only great test case for general MySQL problem.

During warmup process I noticed I get very low CPU usage and disk Usage and IOWait about 25% (4CPU box) which indicates table opens and stats updates are serialized rather than performed in parallel.

I've checked with Heikki and he confirmed MySQL has global table cache mutex (LOCK_open) which is held for all open table operation so table opens are serialized.

Do not think however it is only Innodb problem. I've seen similar problems with MyISAM - these also take few IO operations to open and could take quite a while to close if there were unflushed key blocks and we have no …

[Read more]
MySQL Connector/ODBC 5.00.09 Beta 5 has been released

MySQL Connector/ODBC is our next generation ODBC driver which allows access to the MySQL server using the ODBC standard - a cross-platform, cross-database C Call Level Interface.

This version is being released to get community feedback but is NOT suitable for production environments. It is now available in binary form from the Connector/ODBC download pages at http://dev.mysql.com/downloads/connector/odbc/5.0.html and mirror sites (note that not all mirror sites may be up to date at this point of time - if you can’t find this version on some mirror, please try again later or choose another download site.)

Install Notes

Please uninstall any existing Connector/ODBC v5 before installing this version.

Changes

  • ENH: Added support for column binding as SQL_NUMBERIC_STRUCT.
[Read more]
New MySQL Virtual Appliance Released

A new MySQL Virtual Appliance is now available for download.

This new virtual appliance runs MySQL Version 5.0.1 which provides some great new features, including new datatypes, support for schemas, increased performance and triggers.

As well, this is the first virtual appliance featuring fully automated use of extra Virtual Hard Disks, which opens the door to practically unlimited storage potential using a small appliance, in spite of a small disk image size.

Any VMware or Virtual PC VHDs working, including physical volumes and VI3’s ESX hosted
iSCSI or Fiber Channel SAN volumes.

We will post a pictorial on how to use VHDs shortly.

As usual, our download images are nice and tiny.  Just 27MB for all this MySQL goodness.

Connector/ODBC: Driver Manager vs Driver

Driver Manager 

The ODBC Driver Manager (DM) provides some very important features to the application. Here are some highlights;

  • dynamic binding to driver
  • ODBC version mapping (data and calls)
  • UNICODE/ASCII translation
  • cursor emulation
  • ODBC rule enforcement (state transition violations etc)

The vast majority of applications will use the DM. A C/C++ application uses the DM by linking to it (the DM is a library) at build time.

No Driver Manager

In some cases the DM is not important - or is even ‘in the way’. This may be the case when;

  • an application wishs to take advanatge of the code portability ODBC offers but wishs to build the code to work with just one database product
  • there is a need to reduce the dependencies/complexities of the application - perhaps for performance …
[Read more]
Are you using STRICT MODE as default in MySQL 5.0?
German Lotto Company Plays it Safe with MySQL Cluster

MySQL AB today announced that Toto-Lotto Niedersachsen GmbH has standardized on MySQL® for all its appropriate future IT needs. The German lottery company based its selection on the success it has had using MySQL Cluster to run its online business applications.

To Gentoo or not to Gentoo?

Some people who know I’ve used Gentoo asked me my thoughts on using it for MySQL servers. Here are my opinions and experiences while using Gentoo, both for desktop systems and for servers. This is long, but hopefully the brain dump is useful to you. I have so many thoughts on this subject that I’m having a hard time really organizing them well, and I’m censoring myself too because I know I represent only a very small, focused viewpoint on Gentoo.

Memcache Engine for MySQL 0.3

I posted this over the weekend:
http://download.tangent.org/memcache_engine-0.3.tar.gz

Table spaces are now supported and it works with multiple servers out of the box. This is still very experimental.

Project URL:
http://tangent.org/index.pl?node_id=506

Best Tech Videos On The Net

Few days ago I’ve started new site which name is BestTechVideos.com. I’ve created this site because there are lots really interesting videos on the Net, but if you’d like to fine some good tech video, it is not so simple to find them because of tons of crappy “funny videos” like “funny cats” and so on.

So, If you like to attend technical conferences and watch conference sessions on video, if you like idea of screencasts, etc, then this site is for you! Welcome to Best Tech Videos you’ll be impressed by amount of hi-quality and useful videos on the Net.

P.S. If you like this site idea, support it on Digg.com, please. Great thanks in advance.

Why ODBC?

MySQL offers one of the most complete selection of application programmer interface support. Some of these are in the form of a library (such as the MySQL C API library) while others are in the form of a driver (such as the ODBC driver). For most people/situations - the choice of which interface to use is obvious as it is often dictated by the programming language in use (JDBC for Java for example).

Here are some reasons for considering the ODBC interface. Note; some of these reasons can apply to more than one interface.

  • Cross-database
  • Cross-platform
  • SQL Standard
  • C/C++ Programming Language

Cross-database

The ODBC standard was created primarly to provide an application developer with a database vendor neutral way to work with a database. In other words the source code does not have to change just because one decides to switch from (for …

[Read more]
Showing entries 39283 to 39292 of 44069
« 10 Newer Entries | 10 Older Entries »