Sun宣布10亿美元收购MySQL
欢迎进入Java社区论坛,与200万技术人员互动交流 >>进入 1月17日,Sun Microsystems公司宣布已经与MySQL公司签署收购协议,收购总金额约为10亿美元。MySQL是开源方面的领军企业,同时也是全球成长最快的开源数据库开发商之一。 MySQL已经在全球部署了数以百
欢迎进入Java社区论坛,与200万技术人员互动交流 >>进入
1月17日,Sun Microsystems公司宣布已经与MySQL公司签署收购协议,收购总金额约为10亿美元。MySQL是开源方面的领军企业,同时也是全球成长最快的开源数据库开发商之一。
MySQL已经在全球部署了数以百万计的数据库,用户包括Facebook、谷歌、百度、中国移动等,其业务可以与Sun进行很好的整合,从而使MySQL的开源数据库能够在更多的传统领域和企业得到应用,最终将改变软件业的格局。MySQL与Sun的整合,还将大大提高MySQL产品在商用领域的影响力,并将借助Sun公司的全球服务架构提升其价值定位。MySQL还将通过Sun的渠道,包括Sun与英特尔、IBM、戴尔等合作伙伴的OEM关系,扩大其分销范围。
Sun Microsystems首席执行官兼总裁乔纳森。施瓦茨(Jonathan Schwartz)表示:“我们今天宣布的收购将加强Sun公司在全球互联网经济中的核心地位。收购MySQL将有力地支持我们的整体发展计划,加强我们在重要技术领域的投资,这些重要的技术需求既来自于互联网媒体巨擎,也来自于世界顶级的传统企业,正是他们在推动着全球经济快递高效地增长。”
MySQL公司首席执行官Marten Mickos说:“MySQL与Sun公司的合并,对于追求创新、力图增长、崇尚多重选择的用户和机构来说,无论他们规模多大多小,都意味着是一个很大的机遇。Sun的文化和业务模式,与MySQL有着较好的互补性,我们双方从各自成立的那天起,就有着一个相同的愿望,那就是软件自由选择、在线创新、社区及合作伙伴共同参与。我们非常高兴能与Sun合作,也继续与MySQL开源生态系统中的几百万成员合作,继续提供最佳的数据库,助力现代互联网经济的发展。”
MySQL开源数据库是LAMP架构(由Linux、Apache、MySQL和PHP/Perl组成的、通常被看作是互联网基础)中的“M”。Sun承诺在GNU/Linux、微软Windows以及OpenSolaris和MAC OS X中增强和优化LAMP栈。来自MySQL的数据库,还有OpenSolaris和GlassFish,加上Sun的Java平台和NetBeans社区,将为转移应用到Web的广大客户开创一个强大的Web应用平台。
在交易结束后,MySQL将整合到Sun的软件、销售和服务组织中,MySQL公司首席执行官Marten Mickos将加入Sun公司高层管理团队。在过渡时期,由双方公司代表组成的联合团队将从两家公司的技术、产品与文化融合以及最佳业务及产品开发实践等方面推动整合计划。MySQL总部设在美国加利州的Cupertino和瑞典的Uppsala,在25个国家总有400名员工。
作为交易的一部分,Sun将支付大约8亿美元现金购买MySQL的所有股票,并预留了2亿美元的期权。该交易预计在Sun 2008财年的第三季度(2008自然年第一季度)后期或第四季度早期完成。交易结束时间取决于法规上的批准以及其它惯例上的结束条件。该交易预计将增加基于GAAP(通用会计准则)的2010财年的运营收入。

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

AI Hentai Generator
Generate AI Hentai for free.

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

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

Java 8 introduces the Stream API, providing a powerful and expressive way to process data collections. However, a common question when using Stream is: How to break or return from a forEach operation? Traditional loops allow for early interruption or return, but Stream's forEach method does not directly support this method. This article will explain the reasons and explore alternative methods for implementing premature termination in Stream processing systems. Further reading: Java Stream API improvements Understand Stream forEach The forEach method is a terminal operation that performs one operation on each element in the Stream. Its design intention is

Java Made Simple: A Beginner's Guide to Programming Power Introduction Java is a powerful programming language used in everything from mobile applications to enterprise-level systems. For beginners, Java's syntax is simple and easy to understand, making it an ideal choice for learning programming. Basic Syntax Java uses a class-based object-oriented programming paradigm. Classes are templates that organize related data and behavior together. Here is a simple Java class example: publicclassPerson{privateStringname;privateintage;

Java is a popular programming language that can be learned by both beginners and experienced developers. This tutorial starts with basic concepts and progresses through advanced topics. After installing the Java Development Kit, you can practice programming by creating a simple "Hello, World!" program. After you understand the code, use the command prompt to compile and run the program, and "Hello, World!" will be output on the console. Learning Java starts your programming journey, and as your mastery deepens, you can create more complex applications.

Capsules are three-dimensional geometric figures, composed of a cylinder and a hemisphere at both ends. The volume of the capsule can be calculated by adding the volume of the cylinder and the volume of the hemisphere at both ends. This tutorial will discuss how to calculate the volume of a given capsule in Java using different methods. Capsule volume formula The formula for capsule volume is as follows: Capsule volume = Cylindrical volume Volume Two hemisphere volume in, r: The radius of the hemisphere. h: The height of the cylinder (excluding the hemisphere). Example 1 enter Radius = 5 units Height = 10 units Output Volume = 1570.8 cubic units explain Calculate volume using formula: Volume = π × r2 × h (4

Spring Boot simplifies the creation of robust, scalable, and production-ready Java applications, revolutionizing Java development. Its "convention over configuration" approach, inherent to the Spring ecosystem, minimizes manual setup, allo

A stack is a data structure that follows the LIFO (Last In, First Out) principle. In other words, The last element we add to a stack is the first one to be removed. When we add (or push) elements to a stack, they are placed on top; i.e. above all the

Effective monitoring of Redis databases is essential for maintaining optimal performance, identifying potential bottlenecks, and ensuring overall system reliability. Redis Exporter Service is a robust utility designed to monitor Redis databases using Prometheus. This tutorial will guide you through the complete setup and configuration of Redis Exporter Service, ensuring you establish a monitoring solution seamlessly. By following this tutorial, you’ll achieve a fully operational monitoring setup to effectively monitor the performance metrics of your Redis database.
