• Live Feeds
    • Press Releases
    • Insider Trading
    • FDA Approvals
    • Analyst Ratings
    • Insider Trading
    • SEC filings
    • Market insights
  • Analyst Ratings
  • Alerts
  • Subscriptions
  • Settings
  • RSS Feeds
Quantisnow Logo
  • Live Feeds
    • Press Releases
    • Insider Trading
    • FDA Approvals
    • Analyst Ratings
    • Insider Trading
    • SEC filings
    • Market insights
  • Analyst Ratings
  • Alerts
  • Subscriptions
  • Settings
  • RSS Feeds
PublishGo to App
    Quantisnow Logo

    © 2026 quantisnow.com
    Democratizing insights since 2022

    Services
    Live news feedsRSS FeedsAlertsPublish with Us
    Company
    AboutQuantisnow PlusContactJobsAI superconnector for talent & startupsNEWLLM Arena
    Legal
    Terms of usePrivacy policyCookie policy

    Oracle Releases Java 26

    3/17/26 10:00:00 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology
    Get the next $ORCL alert in real time by email

    New release delivers 10 JDK Enhancement Proposals that strengthen Java's AI and cryptography capabilities, simplify the language, and boost developer productivity

    JavaFX and Helidon commercial support now available in the new Oracle Java Verified Portfolio, a comprehensive collection of JDK-related tools, frameworks, libraries, and services

    AUSTIN, Texas, March 17, 2026 /PRNewswire/ -- Oracle today announced the availability of Java 26, the latest version of the world's number one programming language and development platform. Java 26 (Oracle JDK 26) delivers thousands of improvements that boost developer productivity, simplify the language, and help developers integrate AI and cryptography functionality into their applications. To help developers further streamline and enhance their development initiatives, Oracle is also announcing the new Java Verified Portfolio (JVP), which provides developers with a curated set of Oracle-supported tools, frameworks, libraries, and services, including commercial support for JavaFX, a Java-based UI framework, and Helidon, a Java framework for microservices. In addition, Oracle intends to align Helidon's release cadence with Java releases and propose Helidon as an OpenJDK project. Find out more about the Java 26 release at the JavaOne 2026 conference in Redwood Shores, CA from March 17-19, 2026.

    (PRNewsfoto/Oracle)

    "For more than 30 years, organizations have relied on the Java platform and language to help power their mission-critical systems and support the rapid development of applications and services," said Arnal Dayaratna, research vice president, software development, IDC. "The platform's continuous evolution enables organizations to incorporate transformative capabilities into their applications, while preserving the reliability and security that define mission-critical software. By extending Java's functionality with new features and services such as advanced AI and security capabilities, Java 26 offers organizations a faster path to innovation."

    "Java has played an integral role as a foundational enterprise technology for more than 30 years, serving as the backbone of organizations' application stacks and helping them build powerful, reliable, and secure applications and services," said Georges Saab, senior vice president, Oracle Java Platform and chair, OpenJDK governing board. "The new features in Java 26 reflect Oracle's commitment to helping customers harness AI and cryptography to build applications that accelerate business growth. With the introduction of JVP, developers can streamline their development projects using a trusted collection of Oracle-supported tools, including Helidon, which is a fast, lightweight Java framework for building high performance microservices and AI-enabled applications."

    Key JDK Enhancement Proposals (JEPs)

    Language Features

    JEP 530: Primitive Types in Patterns, instanceof, and switch (Fourth Preview): Helps developers increase productivity and streamline the development of applications that integrate AI inferencing by making Java more uniform and expressive. It eliminates multiple restrictions pertaining to primitive types that impose friction when using pattern matching, instanceof, and switch. To help developers further improve productivity, it also enhances the definition of unconditional exactness and applies tighter dominance checks in switch constructs, enabling the compiler to identify and reduce a wider range of coding errors.

    Performance Updates

    JEP 522: G1 GC: Improve Throughput by Reducing Synchronization: Helps developers process more work in less time by improving memory efficiency. It reduces the synchronization between application and garbage collector threads, increasing throughput with the G1 garbage collector. By running faster and supporting more users without additional hardware, Java improves efficiency, lowers infrastructure costs, and delivers a smoother user experience.

    Project Leyden Features

    JEP 516: Ahead-of-Time Object Caching with Any GC: Boosts developer productivity and resource efficiency by accelerating the start-up time for Java applications with any garbage collector (GC). It allows sequential loading of cached pre-initialized Java objects into memory from a neutral, GC-agnostic format. It also enhances the ahead-of-time cache, enabling the HotSpot Java Virtual Machine to improve start-up and warm-up time and be used with any GC, including the low-latency ZGC. This helps developers reduce application start up delays, scale their applications faster, and deliver better user experiences.

    Libraries 

    JEP 500: Prepare to Make Final Mean Final: Helps developers improve application security and reliability by preventing unintended modifications, tampering, or accidental errors in critical business systems. It issues warnings about uses of deep reflection to mutate final fields and allows developers to mutate final fields where essential to avoid both current warnings and future restrictions. This crucial change enforces Java's "integrity by default" principle, which is focused on protecting sensitive data and business logic, reducing hidden risks, and lowering the chance of bugs or security vulnerabilities.

    JEP 517: HTTP/3 for the HTTP Client API: Helps developers increase productivity by making it easier to write code that interacts with HTTP servers. It updates the HTTP Client API to support the HTTP/3 protocol, enabling libraries and applications to interact with HTTP/3 servers with minimal code change. By eliminating these common bottlenecks and enabling quicker data retrieval with reduced latency, it helps microservices and API-driven Java applications gain higher performance and more reliable network connections.

    JEP 526: Lazy Constants (Second Preview): Helps developers increase productivity and resource efficiency by offering greater flexibility in the timing of their initialization, which is particularly valuable for AI and data-driven applications. Via a new API for lazy constants, which are objects that hold unmodifiable data, the JVM treats lazy constants as true constants to enable the same performance as declaring a field final. In addition, by enabling Java applications and their cloud native and AI-powered services to launch faster and use computing resources more efficiently, it helps developers execute agile and scalable deployments that lead to cost savings and a better experience for end users.

    JEP 525: Structured Concurrency (Sixth Preview): Helps developers improve the maintainability, reliability, and observability of multithreaded code, which is especially beneficial for improving the scalability and resilience of AI and cloud native workloads. It simplifies concurrent programming via an API for structured concurrency, which treats groups of related tasks running in different threads as a single unit of work and helps reduce common risks arising from cancellation and shutdown, such as thread leaks and cancellation delays.

    JEP 529: Vector API (11th Incubator): Helps developers improve the performance and cost efficiency of their Java applications by enabling them to deliver more insights and value with less hardware. The vector API expresses vector computations that reliably compile at runtime to optimal vector instructions on supported CPU architectures, which results in faster processing for data analytics, AI inference, and scientific computing workloads. This gives developers the ability to achieve performance superior to equivalent scalar computations often used in AI inference and compute scenarios.

    Security Libraries

    JEP 524: PEM Encodings of Cryptographic Objects (Second Preview): Helps developers improve productivity and enhance Java application security across widely used security formats via a new encoding API. The API encodes objects that represent cryptographic keys, certificates, and certificate revocation lists into the widely used, privacy-enhanced mail transport format, and decodes it back into objects. This reduces the risk of errors, simplifies compliance, and enhances the portability and interoperability of secure Java applications by streamlining cryptography setup and integration for enterprise, cloud, and regulatory needs.

    Clean-Up Features

    JEP 504: Remove the Applet API: Helps developers reduce their installation and source code footprints and improve the performance, stability, and security of applications by removing the Applet API, which was deprecated for removal in JDK 17 and is no longer part of the platform.

    Additional Security, Reliability, and Performance Enhancements

    In addition to the 10 JEPs, Java 26 offers dozens of updates that help organizations enhance application security, reliability, and performance. With Java 26, organizations can now streamline secure encryption with industry-standard hybrid public key encryption (HPKE), future-proof their supply chains with post-quantum ready JAR signing, and benefit from improved support for global standards with updates to Unicode 17.0 and CLDR v48. In addition, enhanced controls for cryptographic algorithms and legacy keystores further strengthen security and compliance, which helps organizations modernize with confidence.

    Application performance and reliability are improved through dozens of additional updates that lead to faster JVM startup, more efficient garbage collection, expanded C2 JIT compilation, and smarter heap management. In addition, developers and administrators can increase productivity with new features including region-based file uploads in HttpClient, stricter runtime image building, an improved JVM metrics API, and a new dark mode for JavaDoc.

    The features in the Java 26 release are a result of continuous collaboration between Oracle and members of the global Java developer community via OpenJDK and the Java Community Process (JCP). For more details on the features in Java 26, please read the Java 26 technical blog post.

    Reintroduction of JavaFX Commercial Support to Meet Industry Demand

    Oracle is reintroducing commercial support for JavaFX to meet the growing demand from customers, academia, and the software development industry for sophisticated and interactive visualizations that power AI-driven applications and analytics experiences. Commercial support for JavaFX will now be available for all new Java versions and all Java versions that Oracle provides long-term support during its five-year Premier Support period.

    Support for JavaFX on JDK 8 is being extended through March 2028, and JavaFX commercial support will be made available as part of the new Oracle Java Verified Portfolio. Upcoming JavaFX release plans include JavaFX 25 and 26 for JDK 26 (available today), with updates for JavaFX 21, 17, and 8 planned for later this year. JavaFX will be made available under the same license terms as the corresponding Oracle JDK (NFTC or OTN). In addition, Oracle continues to lead the OpenJFX project, further demonstrating commitment to JavaFX in the enterprise and academic communities.

    New Oracle Java Verified Portfolio Provides Curated Set of Enterprise-Grade Tools

    The new Oracle Java Verified Portfolio (JVP) introduces a trusted and dependable solution that provides license and support for customers' broader Java application and development stacks. Oracle customers and Java developers depend on a wide range of JDK-related tools, frameworks, libraries, and services that do not belong in the Oracle JDK itself, with distinct versioning, support timelines, and SLAs for each. JVP provides a curated, enterprise-grade set of components that are fully supported and governed by Oracle, with clear roadmap transparency and lifecycle management.

    JVP streamlines support, access, and documentation for mission-critical Java components, simplifies lifecycle management, and future-proofs customer investments. To support enterprise innovation and security standards, Oracle includes support for JVP for free for Java SE subscribers and Oracle Cloud Infrastructure (OCI) customers running Java workloads on OCI. In addition, access and use of many portfolio components remain free for a wide range of use cases and users who aren't Java SE subscribers or OCI customers. By sourcing these validated assets directly from Oracle, customers significantly reduce their software supply chain risk as the JVP offers a trusted and verified source for essential Java ecosystem components. This helps organizations accelerate adoption and integration with the knowledge that every component is subject to Oracle's rigorous quality, security, and support standards.

    In addition to JavaFX commercial support, JVP includes Oracle support for both Helidon and Oracle's Java Platform Extension for Visual Studio Code.

    Helidon is an open source, cloud native Java framework designed for building and running fast, lightweight, and highly scalable microservices using Java Virtual Threads. Designed, led, and used by Oracle, Helidon integrates with enterprise and cloud native ecosystems to offer developers simplicity, productivity, choice of programming style, and built-in observability. Helidon AI extends Helidon, enabling Java developers to build high performance AI applications in Java. Helidon also includes integration with LangChain4j, Helidon MCP and facilitates building AI Agents as microservices.

    By including Helidon in JVP, Oracle expands trusted, enterprise-grade support to customers and developers, enabling them to build scalable and resilient applications powered by the latest Java innovations. The Helidon release cadence is also planned to be aligned to the JDK roadmap, providing immediate support for the latest Java releases. This close alignment with the Oracle JDK and Java SE platform ensures seamless compatibility and accelerates innovation across the Java developer ecosystem. To reinforce Oracle's commitment to delivering trusted, enterprise-backed developer solutions while supporting innovation in the Java community, Helidon and the Java Platform Extension for VS Code will also remain open source.

    Supporting the Global Java Community with Innovation in the Cloud

    Java delivers increased innovation, performance, efficiency, and cost savings when deployed on OCI, which is the first cloud provider to support Oracle JDK 26. By delivering Oracle Java SE and advanced features such as the Java Management Service at no additional charge on OCI, Java 26 helps developers create and deploy applications that run faster, better, and with optimized cost-performance.

    The Oracle Java SE Universal Subscription provides customers with best-in-class support. It now includes JVP in addition to the Java SE Subscription Enterprise Performance Pack, Java Management Service, triage support for the entire Java portfolio, and the flexibility to upgrade at the pace of customers' businesses. This helps IT teams manage complexity, mitigate security risks, and contain costs.  

    To learn more about Java and its global ecosystem, please visit:

    • Dev.java: The official destination for Java developers
    • Ops.java: The new hub for Java administrators and operations
    • Inside.java: News and views from the members of the Java Team at Oracle
    • Java YouTube: The official Java YouTube channel for Java learning videos

    Additional Resources

    • Download Oracle JDK 26
    • Read the Java 26 technical blog post
    • Learn more about JavaOne 2026 and sign up for updates
    • Learn more about Java Verified Portfolio
    • Learn more about the Oracle Java SE Universal Subscription
    • Learn more about the Java Management Service

    About Oracle

    Oracle offers integrated suites of applications plus secure, autonomous infrastructure in the Oracle Cloud. For more information about Oracle (NYSE:ORCL), please visit us at www.oracle.com.

    Future Product Disclaimer

    The preceding is intended to outline our general product direction. It is for informational purposes only and may not be incorporated into any contract. The development, release, timing, and pricing of any features or functionality described for Oracle's products may change at Oracle Corporation's sole discretion.

    Trademarks

    Oracle, Java, MySQL and NetSuite are registered trademarks of Oracle Corporation. NetSuite was the first cloud company—ushering in the new era of cloud computing.

     

    Cision View original content to download multimedia:https://www.prnewswire.com/news-releases/oracle-releases-java-26-302715757.html

    SOURCE Oracle

    Get the next $ORCL alert in real time by email

    Crush Q1 2026 with the Best AI Superconnector

    Stay ahead of the competition with Standout.work - your AI-powered talent-to-startup matching platform.

    AI-Powered Inbox
    Context-aware email replies
    Strategic Decision Support
    Get Started with Standout.work

    Recent Analyst Ratings for
    $ORCL

    DatePrice TargetRatingAnalyst
    3/11/2026$210.00Neutral → Overweight
    Analyst
    3/11/2026$205.00 → $200.00Outperform
    BMO Capital Markets
    3/11/2026$185.00 → $210.00Outperform
    Oppenheimer
    2/25/2026$185.00Perform → Outperform
    Oppenheimer
    2/9/2026Buy → Hold
    Melius
    2/9/2026$180.00Neutral → Buy
    DA Davidson
    2/4/2026$270.00 → $205.00Outperform
    BMO Capital Markets
    1/12/2026$240.00Buy
    Goldman
    More analyst ratings

    $ORCL
    SEC Filings

    View All

    SEC Form 10-Q filed by Oracle Corporation

    10-Q - ORACLE CORP (0001341439) (Filer)

    3/11/26 6:38:49 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    Oracle Corporation filed SEC Form 8-K: Results of Operations and Financial Condition, Other Events, Financial Statements and Exhibits

    8-K - ORACLE CORP (0001341439) (Filer)

    3/10/26 4:12:51 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    SEC Form CERT filed by Oracle Corporation

    CERT - ORACLE CORP (0001341439) (Filer)

    2/5/26 4:24:57 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    $ORCL
    Insider Trading

    Insider transactions reveal critical sentiment about the company from key stakeholders. See them live in this feed.

    View All

    Chief Executive Officer Magouyrk Clayton M. sold $1,552,318 worth of shares (10,000 units at $155.23), decreasing direct ownership by 7% to 134,030 units (SEC Form 4)

    4 - ORACLE CORP (0001341439) (Issuer)

    2/11/26 4:42:45 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    SEC Form 4 filed by EVP, Chief Legal Officer Levey Stuart

    4 - ORACLE CORP (0001341439) (Issuer)

    1/26/26 5:15:41 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    EVP, Principal Financial Offcr Kehring Douglas A sold $6,821,150 worth of shares (35,000 units at $194.89), decreasing direct ownership by 51% to 33,638 units (SEC Form 4)

    4 - ORACLE CORP (0001341439) (Issuer)

    1/16/26 4:15:34 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    $ORCL
    Insider Purchases

    Insider purchases reveal critical bullish sentiment about the company from key stakeholders. See them live in this feed.

    View All

    Director Fairhead Rona Alison bought $112,258 worth of shares (480 units at $233.87), increasing direct ownership by 2% to 22,110 units (SEC Form 4)

    4 - ORACLE CORP (0001341439) (Issuer)

    7/9/25 4:39:51 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    Director Boskin Michael J bought $111,145 worth of shares (1,682 units at $66.08), increasing direct ownership by 2% to 92,458 units (SEC Form 4)

    4 - ORACLE CORP (0001341439) (Issuer)

    3/21/25 8:43:30 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    Director Moorman Charles W bought $947,913 worth of shares (5,500 units at $172.35) (SEC Form 4)

    4 - ORACLE CORP (0001341439) (Issuer)

    2/14/25 4:41:16 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    $ORCL
    Press Releases

    Fastest customizable press release news feed in the world

    View All

    Oracle Releases Java 26

    New release delivers 10 JDK Enhancement Proposals that strengthen Java's AI and cryptography capabilities, simplify the language, and boost developer productivityJavaFX and Helidon commercial support now available in the new Oracle Java Verified Portfolio, a comprehensive collection of JDK-related tools, frameworks, libraries, and servicesAUSTIN, Texas, March 17, 2026 /PRNewswire/ -- Oracle today announced the availability of Java 26, the latest version of the world's number one programming language and development platform. Java 26 (Oracle JDK 26) delivers thousands of improvements that boost developer productivity, simplify the language, and help developers integrate AI and cryptography fu

    3/17/26 10:00:00 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    Alviere and Oracle Enhance Collaboration to Simplify Payments for Regulated Global Enterprises

    DENVER, March 17, 2026 /PRNewswire/ -- Alviere, the leading Embedded Finance provider, today announced a multi-year strategic agreement with Oracle to deliver embedded finance capabilities to global enterprises. With this collaboration, Oracle can integrate Alviere's regulated payment services directly into its industry application suites, enabling secure and compliant money movement within existing workflows. This will enable Oracle to embed services such as card issuance, domestic and international payments, automated pay-by-bank workflows, and treasury functionality within its industry applications.

    3/17/26 8:00:00 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    Oracle Named a Leader in the 2025-2026 IDC MarketScape Report for Worldwide AI-Enabled Embedded Trade Financing Applications

    AUSTIN, Texas, March 12, 2026 /PRNewswire/ -- Oracle has been recognized as a leader in the IDC MarketScape: Worldwide AI-Enabled Embedded Trade Financing Applications 2025-2026 Vendor Assessment (doc # US52980825, December 2025). According to the report, businesses should "Consider Oracle when your organization requires a robust, scalable solution to digitize, unify, and automate trade finance operations powered by AI across geographies and complex product types." Oracle's Trade Finance suite is trusted by more than 200 banks in over 40 countries to operate faster, connect safe

    3/12/26 8:00:00 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    $ORCL
    Analyst Ratings

    Analyst ratings in real time. Analyst ratings have a very high impact on the underlying stock. See them live in this feed.

    View All

    Oracle upgraded by Analyst with a new price target

    Analyst upgraded Oracle from Neutral to Overweight and set a new price target of $210.00

    3/11/26 8:29:46 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    BMO Capital Markets reiterated coverage on Oracle with a new price target

    BMO Capital Markets reiterated coverage of Oracle with a rating of Outperform and set a new price target of $200.00 from $205.00 previously

    3/11/26 8:12:23 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    Oppenheimer reiterated coverage on Oracle with a new price target

    Oppenheimer reiterated coverage of Oracle with a rating of Outperform and set a new price target of $210.00 from $185.00 previously

    3/11/26 7:58:25 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    $ORCL
    Financials

    Live finance-specific insights

    View All

    Oracle Announces Fiscal Year 2026 Third Quarter Financial Results

    Q3 Remaining Performance Obligations $553 billion, up 325% year-over-year in USDQ3 GAAP Earnings per Share up 24% to $1.27, Non-GAAP Earnings per Share up 21% to $1.79Q3 Total Revenue $17.2 billion, up 22% in USD and up 18% in constant currencyQ3 Cloud Revenue (IaaS plus SaaS) $8.9 billion, up 44% in USD and up 41% in constant currency Q3 Cloud Infrastructure Revenue (IaaS) $4.9 billion, up 84% in USD and up 81% in constant currencyQ3 Oracle Cloud Database (IaaS) Revenue up 35%, Multicloud Database Revenue up 531% in USDQ3 Cloud Application (SaaS) Revenue $4.0 billion, up 13% in USD and up 11% in constant currencyQ3 Fusion Cloud ERP (SaaS) Revenue $1.1 billion, up 17% in USD and up 14% in co

    3/10/26 4:05:00 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    Oracle Sets the Date for its Third Quarter Fiscal Year 2026 Earnings Announcement

    Earnings Results to be released on March 10, 2026, After the Close of the MarketAUSTIN, Texas, March 3, 2026 /PRNewswire/ -- Oracle Corporation today announced that its third quarter fiscal year 2026 results will be released on Tuesday, March 10th, after the close of the market. Oracle will host a conference call and live webcast at 4:00 p.m. Central Time to discuss the financial results.  The live webcast will be available on the Oracle Investor Relations website at www.oracle.com/investor. About OracleOracle offers integrated suites of applications plus secure, autonomous infr

    3/3/26 4:00:00 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    Oracle Announces Fiscal Year 2026 Second Quarter Financial Results

    Q2 Remaining Performance Obligations $523 billion, up 438% in USDQ2 GAAP Earnings per Share up 91% to $2.10, Non-GAAP Earnings per Share up 54% to $2.26Q2 Total Revenue $16.1 billion, up 14% in USD and up 13% in constant currencyQ2 Cloud Revenue (IaaS plus SaaS) $8.0 billion, up 34% in USD and up 33% in constant currencyQ2 Cloud Infrastructure (IaaS) Revenue $4.1 billion, up 68% in USD and up 66% in constant currencyQ2 Cloud Application (SaaS) Revenue $3.9 billion, up 11% in both USD and constant currencyQ2 Fusion Cloud ERP (SaaS) Revenue $1.1 billion, up 18% in USD and up 17% in constant currencyQ2 NetSuite Cloud ERP (SaaS) Revenue $1.0 billion, up 13% in both USD and constant currencyAUSTI

    12/10/25 4:05:00 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    $ORCL
    Leadership Updates

    Live Leadership Updates

    View All

    Health Systems Simplify Secure Data Exchange with Oracle Health

    New Oracle Health Connection Hub delivers single, unified console to enable data sharing control, auditing, and governance so health systems can easily manage a broad range of interoperability services Early adopters see 50 percent reduction in processing times of Social Security Administration disability benefit claims AUSTIN, Texas, Oct. 9, 2025 /PRNewswire/ -- Oracle Health Connection Hub is now generally available for U.S. healthcare providers, enabling them to use a single console to more easily onboard, access, and manage preferences for Oracle Health interoperability solutions. The latest step in Oracle's strategy to increase interoperability and reduce friction between payers and pr

    10/9/25 9:00:00 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    SoftBank Group to Acquire Ampere Computing

    SoftBank Group Corp. (TSE: 9984, "SoftBank Group") today announced that it will acquire Ampere® Computing, a leading independent silicon design company, in an all-cash transaction valued at $6.5 billion. Under the terms of the agreement, Ampere will operate as a wholly owned subsidiary of SoftBank Group and retain its name. As part of the transaction, Ampere's lead investors – Carlyle (NASDAQ:CG) and Oracle Corp. (NYSE:ORCL) – are selling their respective positions in Ampere. As SoftBank Group broadens its AI infrastructure investments in ventures such as Cristal intelligence and Stargate, the acquisition will help enhance SoftBank Group's capabilities in key areas and accelerate its growt

    3/19/25 7:30:00 PM ET
    $CG
    $ORCL
    Investment Managers
    Finance
    Computer Software: Prepackaged Software
    Technology

    Oracle Launches AI-powered Oracle Analytics Intelligence for Life Sciences

    Life sciences, academic medical centers, health systems, and research institutes can gain insights into diseases and their impact on patients to optimize therapeutic launch strategies Pre-built and continuously updated analytics platform has unprecedented variety of real-world data sources, including CancerMPact and multiomics NASHVILLE, Tenn., Oct. 30, 2024 /PRNewswire/ -- Oracle Health Summit -- Oracle today launched Oracle Analytics Intelligence for Life Sciences. The AI-powered, cloud-scale, data and analytics platform streamlines and helps accelerate insight generation by unifying disparate data sets into a single, intelligent workbench. The new solution empowers users to answer multidi

    10/30/24 9:00:00 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    $ORCL
    Large Ownership Changes

    This live feed shows all institutional transactions in real time.

    View All

    SEC Form SC 13G/A filed by Oracle Corporation (Amendment)

    SC 13G/A - ORACLE CORP (0001341439) (Subject)

    2/9/24 4:33:37 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    SEC Form SC 13G/A filed by Oracle Corporation (Amendment)

    SC 13G/A - ORACLE CORP (0001341439) (Subject)

    2/10/23 4:31:02 PM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology

    SEC Form SC 13G/A filed by Oracle Corporation (Amendment)

    SC 13G/A - ORACLE CORP (0001341439) (Subject)

    2/10/22 8:28:11 AM ET
    $ORCL
    Computer Software: Prepackaged Software
    Technology