1985 件中 1471 - 1480 件を表示
« 前の 10 件 | 次の 10 件 »
Displaying posts with tag: MySQL (reset)
INFORMATION SCHEMA [MySQL 5.0の場合]

MySQLでは5.0から情報スキーマをサポートしています。(バージョンにより利用できる情報に違いがあります) 情報スキーマはSQL標準(SQL/Information Schema)に定義されているもので、データベース上に定義されたオブジェクト(テーブル、ビュー、ストアドルーチンなど)のメタ情報(定義情報)を取得するものです。従来MySQLではSHOWコマンドという独自のコマンドでメタ情報を取得してきましたが、情報スキーマを利用することにより、以下の点が改善されます。

  1. SHOWコマンドと比較して、必要データの絞り込み(列選択やWHERE句による)が可能
  2. SQL標準に沿ったクエリを使うことにより、接続するRDBMSが違っても透過的に同じクエリが使える(ことが期待できる)


 またMySQL …

[さらに読む]
Share a good write-intensive(TokuDB) Database

TokuDB is a storage engine for MySQL that is specifically designed for high performance on write-intensive workloads.

It achieves this via Fractal Tree indexing, which is based on cache-oblivious algorithmic,TokuDB is a scalable, ACID and MVCC compliant storage engine that provides indexing-based query acceleration and supports online schema modifications

Fractal Tree indexes implement the same operations as a B-tree, and thus are a drop-in replacement for B-trees. The difference is in performance. Fractal Tree indexes effectively replace random I/O with sequential I/O, which is faster on spinning disks. By converting random I/O into sequential I/O, Fractal Trees index data at near disk bandwidth rates, regardless of the structure of the primary and secondary keys, and have range queries that stream data off disk at near disk bandwidth rates, even as the database grows. As a …

[さらに読む]
How to save procedure and function code by mysql5.1?

some people ask a question:How to save procedure and function code by MYSQL?
check mysql5.1 source code,we get the answer.
1)MYSQL use a table to save this text code,the table name is MYSQL.PROC and table type is MYISAM.
2)The source code is sql/sp.cc and the method is "int sp_create_routine(THD *thd, int type, sp_head *sp)".
3)we can get the comment as following:
/**
Write stored-routine object into mysql.proc.

This operation stores attributes of the stored procedure/function into
the mysql.proc.

@param thd Thread context.
@param type Stored routine type
(TYPE_ENUM_PROCEDURE or TYPE_ENUM_FUNCTION).
@param sp Stored routine object to store.

@note Opens and closes the thread tables. Therefore assumes
that there are no locked tables in this thread at the time of
invocation.
Unlike some other DDL statements, *does* close …

[さらに読む]
MySQLセミナー情報

もう目前に迫っているが、日本オラクルではMySQLのイベントを開催する予定である。朝10時から午後4時半までというみっちりなセミナーを、26日大阪と28日東京で開催する。MySQLにどっぷり浸かりたいという方におすすめである。内容は次のようなものを予定している。

レプリケーションとスケーラビリティの話 運用管理のノウハウ MySQL Cluster MySQL徹底解説

セミナー情報大阪開催 日程: 2011年10月26日 (水) 10:00~16:30 (受付開始: 09:30~) 会場: 日本オラクル西日本支社セミナールーム 定員:40名

東京開催 日程: 2011年10月28日 (金) 10:00~16:30 (受付開始: 09:30~) 会場: 日本 オラクル株式会社本社13Fセミナールーム 定員:80名

大阪の方はまだ席に余裕があるのでぜひ来ていただきたい

[MySQL][Spider][VP]Spider-2.27 VP-0.16リリース

Spiderストレージエンジンのバージョン 2.27(beta)とVartical Partitioningのバージョン 0.16(beta)をリリースしました。
Spiderストレージエンジンは、database sharding用のストレージエンジンです。
http://spiderformysql.com/
Vertical Partitioningストレージエンジンは、テーブルのVertical Partitioning用のストレージエンジンです。
http://launchpad.net/vpformysql

バイナリのダウンロードにはこちらをご利用ください。
http://spiderformysql.com/download_spider.html

今回の主な変更は以下です。
Linux64bit用にQ4Mをバンドルしました。

[さらに読む]
MySQL versions shootout

(posts copied from http://www.mysqlperformanceblog.com/2011/10/10/mysql-versions-shootout/)
use Cisco UCS C250 and ran simple sysbench oltp read-write all data fits into memory workload.

Versions in question:

  • MySQL 4.1
  • MySQL 5.0
  • MySQL 5.1 (with built-in InnoDB)
  • MySQL 5.1 with InnoDB-plugin
  • MySQL 5.5
  • MySQL 5.6

All versions are vanilla MySQL, not Percona Server.

The results are there:

There is nothing unexpected, staring with InnoDB-plugin, MySQL scale much better on multi-cores, there is gain up to 1.7x in throughput.

What is interesting there, let’s take look on single thread …

[さらに読む]
mysql5.1 slave_exec_mode

Controls whether IDEMPOTENT or STRICT mode is used in replication conflict resolution and error checking. IDEMPOTENT mode causes suppression of duplicate-key and no-key-found errors. Beginning with MySQL 5.1.23-ndb-6.2.14 and MySQL 5.1.24, this mode should be employed in multi-master replication, circular replication, and some other special replication scenarios. STRICT mode is the default, and is suitable for most other cases.

加速的に膨張する宇宙のように進化するMySQL!最新開発版MySQL 5.6.3 m6新機能解説

最新の開発版であるMySQL 5.6.3-m6がリリースされた。清く正しいMySQLerの皆さんはすでにダウンロードして、評価を楽しんでくれていることだろう。はっきり言ってこのバージョンは凄い。明らかに前バージョンのMySQL 5.6.2から搭載されている新機能の数は膨大である。それはMySQL 5.6.3のリリースノートを見てもらえば一目瞭然だ。凄いボリュームだからだ。

今回はそんな膨大な新機能を搭載したMySQL 5.6.3について、要点を解説しようと思う。MySQL 5.6.3は開発版なので今直ぐ本番環境へ投入したい!というはやる気持ちはグッと我慢して頂きたいが、ぜひ評価はしていただきたいと思う。

[さらに読む]
Oracle MySQL Developer Day

JUGEMテーマ:コンピュータ

首記の件今月の後半にMySQLの技術セミナーを大阪(10/26)と東京(10/28)で開催します。MySQLの最新情報や多くの有益な技術情報を紹介しますので是非ご参加ください。 詳細はこちら

今の予定では大阪(10/26)のセミナーのいくつかを私が担当し、東京(10/28)のほうは奥野さんがいくつかセミナーを担当します。梶山さんは大阪・東京両方でます(^_^;)

MySQLの最新情報が一度にGetできますので、お近くの方は是非申し込みのうえ、ご参加くださいm(_ _)m

good performance test for innodb compression

good articles URL as following:

http://www.mysqlperformanceblog.com/2011/05/20/innodb-compression-woes/
http://www.facebook.com/notes/mysql-at-facebook/innodb-compression-for-read-only-workloads/10150190328375933

1985 件中 1471 - 1480 件を表示
« 前の 10 件 | 次の 10 件 »