Home Database Mysql Tutorial MySQL数据库 CEO 对甲骨文既爱又恨_MySQL

MySQL数据库 CEO 对甲骨文既爱又恨_MySQL

Jun 01, 2016 pm 02:03 PM
mysql company database source code Oracle software

CEO甲骨文

 

数据库市场的瞬息万变由此可见:MySQL首席执行官Martin Mickos先是称呼甲骨文公司的某项产品为“残废软件”(crippleware),几分钟后又盛赞该公司为年度最佳伙伴。

 

Mickos 26日在MySQL使用者会议的演说中力捧甲骨文,却又严词批评其产品。如此反覆的原因在于,MySQL一方面仰赖甲骨文2005年收购的InnoDB软件,另一方面,甲骨文和IBM为反制MySQL在数据库市场的窜起,纷纷推出免费的入门级产品。

 

仍属开放源代码软件的InnoDB“存储引擎”,拥有Mickos的坚定支持。他说:“我们与甲骨文签下好几年的新约。”被Mickos贬为“残废软件”的,是锁定低价位客层的免费数据库,如甲骨文的Express Edition或IBM的DB2 Community Edition。

 

Mickos表示:“Express Edition毫无使用自由可言,竟敢自称”free”(免费,亦可谓自由)。如果一家公司提供免费但封闭源代码的版本,目的就是让你升级到他们非常贵的版本,他们才有利可图。”

 

相反的,Mickos认为,如MySQL等开放源代码数据库公司,即使没有向上销售的顾客,也能借由修补错误、社区支持和其他社区活动获利。他说:“某些最棒的网站都是MySQL的支持者,我们每个月都向他们请益。”

 

开放源代码公司挑战专有软件巨人并非新鲜事,但Mickos有其优势。2005年MySQL的营收高达4,000万美元,知名网站如Google、雅虎和PokerRoom.com都仰仗其软件,甲骨文甚至试图收购MySQL。

 

本周,该公司宣布与惠普签下三年的合作约定。去年11月刚上任的惠普开放源代码与Linux组织副总Chritine Martino表示,惠普将转售MySQL软件、提供支持,并参与联合的营销与训练活动。

 

Mickos相当看好MySQL使用最广泛的InnoDB引擎,他将三个年度伙伴奖的其中一个,颁给甲骨文第18号员工– 服务器科技产品策略副总Ken Jacobs。

 

尽管如此,MySQL并非完全依赖InnDB,该公司正朝向插入式架构发展,让不同的引擎皆可插入MySQL,并将提供验证。

 

MySQL也自行开发引擎,名为Falcon,同时与Solid Information Technology合作开发另一引擎SolidDB。SolidDB和甲骨文的InnoDB都将参加其验证计划。

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to optimize MySQL query performance in PHP? How to optimize MySQL query performance in PHP? Jun 03, 2024 pm 08:11 PM

MySQL query performance can be optimized by building indexes that reduce lookup time from linear complexity to logarithmic complexity. Use PreparedStatements to prevent SQL injection and improve query performance. Limit query results and reduce the amount of data processed by the server. Optimize join queries, including using appropriate join types, creating indexes, and considering using subqueries. Analyze queries to identify bottlenecks; use caching to reduce database load; optimize PHP code to minimize overhead.

How to use MySQL backup and restore in PHP? How to use MySQL backup and restore in PHP? Jun 03, 2024 pm 12:19 PM

Backing up and restoring a MySQL database in PHP can be achieved by following these steps: Back up the database: Use the mysqldump command to dump the database into a SQL file. Restore database: Use the mysql command to restore the database from SQL files.

How to fix mysql_native_password not loaded errors on MySQL 8.4 How to fix mysql_native_password not loaded errors on MySQL 8.4 Dec 09, 2024 am 11:42 AM

One of the major changes introduced in MySQL 8.4 (the latest LTS release as of 2024) is that the "MySQL Native Password" plugin is no longer enabled by default. Further, MySQL 9.0 removes this plugin completely. This change affects PHP and other app

All software will be opened with WPS, and the exe default opening method will be restored. All software will be opened with WPS, and the exe default opening method will be restored. Jun 19, 2024 am 01:48 AM

All the software on my friend's computer has been opened using WPS and cannot run normally. All exes cannot be opened, including the task manager, registry, control panel, settings, etc. When opened, all WPS garbled characters appear. This situation cannot be done remotely. The remote software is also an exe, which seems to be unsolvable. Let’s take a look at how 20 operates to restore the computer to normal. This is because the opening method of the exe has been changed to WPS, and you only need to restore the default opening method. Er0 exports the exe registry information on a normal computer and puts it on the website. Because the browser can be opened, please guide your friends to open our website, copy the registry information, create a new text document on the desktop, and save it as [File name: 1.reg; Save type: All files (*.

How to create a MySQL table using PHP? How to create a MySQL table using PHP? Jun 04, 2024 pm 01:57 PM

Creating a MySQL table using PHP requires the following steps: Connect to the database. Create the database if it does not exist. Select a database. Create table. Execute the query. Close the connection.

Detailed tutorial on establishing a database connection using MySQLi in PHP Detailed tutorial on establishing a database connection using MySQLi in PHP Jun 04, 2024 pm 01:42 PM

How to use MySQLi to establish a database connection in PHP: Include MySQLi extension (require_once) Create connection function (functionconnect_to_db) Call connection function ($conn=connect_to_db()) Execute query ($result=$conn->query()) Close connection ( $conn->close())

iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos iOS 18 adds a new 'Recovered' album function to retrieve lost or damaged photos Jul 18, 2024 am 05:48 AM

Apple's latest releases of iOS18, iPadOS18 and macOS Sequoia systems have added an important feature to the Photos application, designed to help users easily recover photos and videos lost or damaged due to various reasons. The new feature introduces an album called "Recovered" in the Tools section of the Photos app that will automatically appear when a user has pictures or videos on their device that are not part of their photo library. The emergence of the "Recovered" album provides a solution for photos and videos lost due to database corruption, the camera application not saving to the photo library correctly, or a third-party application managing the photo library. Users only need a few simple steps

How does Go WebSocket integrate with databases? How does Go WebSocket integrate with databases? Jun 05, 2024 pm 03:18 PM

How to integrate GoWebSocket with a database: Set up a database connection: Use the database/sql package to connect to the database. Store WebSocket messages to the database: Use the INSERT statement to insert the message into the database. Retrieve WebSocket messages from the database: Use the SELECT statement to retrieve messages from the database.

See all articles