Home Database Mysql Tutorial 甲骨文曾试图收购MySQL 继续其开源之路_MySQL

甲骨文曾试图收购MySQL 继续其开源之路_MySQL

Jun 01, 2016 pm 02:11 PM
mysql open acquisition Oracle attempt

甲骨文

  CNET科技资讯网2月16日国际报道 甲骨文公司试图收购开放源代码数据库厂商MySQL ,这也是它日益向“合作编程”靠近的一个迹象。

  尽管业务在日益多元化,但甲骨文的主要业务仍然是销售其专有的数据库软件;MySQL 则试图使开放源代码产品商业化。

  在“开放源代码商业会议”上接受采访时,MySQL 的首席执行官尼科斯证实了这一收购计划,但没有披露双方接触的时间、甲骨文的出价等详细情况。

  但他解释了向甲骨文的收购说不的原因:保持公司的独立性。他说,我们将成为一家更大公司的一部分,但我们仍然是MySQL。

  Redmonk的分析师斯蒂芬表示,这次收购对于甲骨文来说是明智的。这与蚕食现有的业务有关。如果认为是不可避免的,由自己来“蚕食”现有的业务总比由竞争对手来这样做好。

  斯蒂芬表示,与IBM 收购Gluecode一样,Oracle也将从MySQL 获益。Gluecode的开放源代码Geronimo Java 应用服务器软件与IBM 专有的WebSphere 存在竞争关系。IBM 现在以WebSphere 社区版的品牌提供免费的Gluecode软件。

  他说,甲骨文可以将MySQL 定位为低端产品,甲骨文还应当意识到,其大客户不大可能放弃企业级数据库。收购MySQL 还会为甲骨文打开相当规模的新市场。

  数据库市场正处于重大变化中。IBM 、微软、甲骨文目前都免费提供低端的数据库产品,Ingres和EnterpriseDB等公司则在试图开发高端开放源代码数据库产品。

  甲骨文已经收购了二家较小的开放源代码数据库厂商:2005年收购了InnoDB、本周二收购了Sleepycat ,但它在开放源代码领域的野心显然更大。例如,《商业周刊》就报道称甲骨文计划收购开放源代码应用服务器厂商JBoss。

  MySQL和甲骨文存在竞争。斯蒂芬表示,它们的领地确实不同,甲骨文的领地是高端市场,MySQL 的领地是低端市场,但它们在中间有重迭的部分吗?答案是肯定的。

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

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

PHP's big data structure processing skills PHP's big data structure processing skills May 08, 2024 am 10:24 AM

Big data structure processing skills: Chunking: Break down the data set and process it in chunks to reduce memory consumption. Generator: Generate data items one by one without loading the entire data set, suitable for unlimited data sets. Streaming: Read files or query results line by line, suitable for large files or remote data. External storage: For very large data sets, store the data in a database or NoSQL.

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 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 insert data into a MySQL table using PHP? How to insert data into a MySQL table using PHP? Jun 02, 2024 pm 02:26 PM

How to insert data into MySQL table? Connect to the database: Use mysqli to establish a connection to the database. Prepare the SQL query: Write an INSERT statement to specify the columns and values ​​to be inserted. Execute query: Use the query() method to execute the insertion query. If successful, a confirmation message will be output.

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.

How to use MySQL stored procedures in PHP? How to use MySQL stored procedures in PHP? Jun 02, 2024 pm 02:13 PM

To use MySQL stored procedures in PHP: Use PDO or the MySQLi extension to connect to a MySQL database. Prepare the statement to call the stored procedure. Execute the stored procedure. Process the result set (if the stored procedure returns results). Close the database connection.

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

The difference between oracle database and mysql The difference between oracle database and mysql May 10, 2024 am 01:54 AM

Oracle database and MySQL are both databases based on the relational model, but Oracle is superior in terms of compatibility, scalability, data types and security; while MySQL focuses on speed and flexibility and is more suitable for small to medium-sized data sets. . ① Oracle provides a wide range of data types, ② provides advanced security features, ③ is suitable for enterprise-level applications; ① MySQL supports NoSQL data types, ② has fewer security measures, and ③ is suitable for small to medium-sized applications.

See all articles