甲骨文曾试图收购MySQL 继续其开源之路_MySQL
甲骨文
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 的领地是低端市场,但它们在中间有重迭的部分吗?答案是肯定的。

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

The main role of MySQL in web applications is to store and manage data. 1.MySQL efficiently processes user information, product catalogs, transaction records and other data. 2. Through SQL query, developers can extract information from the database to generate dynamic content. 3.MySQL works based on the client-server model to ensure acceptable query speed.

The process of starting MySQL in Docker consists of the following steps: Pull the MySQL image to create and start the container, set the root user password, and map the port verification connection Create the database and the user grants all permissions to the database

Laravel is a PHP framework for easy building of web applications. It provides a range of powerful features including: Installation: Install the Laravel CLI globally with Composer and create applications in the project directory. Routing: Define the relationship between the URL and the handler in routes/web.php. View: Create a view in resources/views to render the application's interface. Database Integration: Provides out-of-the-box integration with databases such as MySQL and uses migration to create and modify tables. Model and Controller: The model represents the database entity and the controller processes HTTP requests.

I encountered a tricky problem when developing a small application: the need to quickly integrate a lightweight database operation library. After trying multiple libraries, I found that they either have too much functionality or are not very compatible. Eventually, I found minii/db, a simplified version based on Yii2 that solved my problem perfectly.

The key to installing MySQL elegantly is to add the official MySQL repository. The specific steps are as follows: Download the MySQL official GPG key to prevent phishing attacks. Add MySQL repository file: rpm -Uvh https://dev.mysql.com/get/mysql80-community-release-el7-3.noarch.rpm Update yum repository cache: yum update installation MySQL: yum install mysql-server startup MySQL service: systemctl start mysqld set up booting

Article summary: This article provides detailed step-by-step instructions to guide readers on how to easily install the Laravel framework. Laravel is a powerful PHP framework that speeds up the development process of web applications. This tutorial covers the installation process from system requirements to configuring databases and setting up routing. By following these steps, readers can quickly and efficiently lay a solid foundation for their Laravel project.

MySQL and phpMyAdmin are powerful database management tools. 1) MySQL is used to create databases and tables, and to execute DML and SQL queries. 2) phpMyAdmin provides an intuitive interface for database management, table structure management, data operations and user permission management.

Installing MySQL on CentOS involves the following steps: Adding the appropriate MySQL yum source. Execute the yum install mysql-server command to install the MySQL server. Use the mysql_secure_installation command to make security settings, such as setting the root user password. Customize the MySQL configuration file as needed. Tune MySQL parameters and optimize databases for performance.
