甲骨文公布“Oracle融合”战略架构
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入 甲骨文近日透露了Oracle融合(Oracle Fusion)战略架构。其融合战略将由三大部分组成:Oracle融合架构(Oracle Fusion Architecture),它是一个基于服务导向架构(SOA)的企业级解决方案的技术平台
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入
甲骨文近日透露了Oracle融合(Oracle Fusion)战略架构。其融合战略将由三大部分组成:Oracle融合架构(Oracle Fusion Architecture),它是一个基于服务导向架构(SOA)的企业级解决方案的技术平台;Oracle融合中间件(Oracle Fusion Middleware),这是融合架构的技术基础架构;Oracle融合应用(Oracle Fusion Applications),它可以通过融合架构保护、扩展并进一步发展。
甲骨文应用产品开发高级副总裁John Wookey透露,甲骨文将在2006年计划推出的新功能,这些新功能将为选择升级到Oracle融合应用的客户奠定基础。其中一个功能就是Web服务存储库(Web Services Repository),它能帮助客户让不同环境下的系统实现标准化、在客户现有的应用中定义业务流程、轻易开发更多业务流程。
Wookey还透露,甲骨文将推出能够利用Oracle XML Publisher并与现有Oracle电子商务套件、Peoplesoft Enterprise 及JD Edwards EnterpriseOne应用软件匹配的新报告功能。新的报告库计划于2006年提供下载,并将增加现有的报告能力。这与计划发布的Oracle融合应用的报告相同,旨在向客户提供一个将其业务与应用系统的关键元素移至Oracle融合架构的机会。
Oracle融合中间件能够简化应用的开发、配置、集成和管理, 是支持Oracle融合应用的技术基础,它至今已经发布了七个版本,并在总数超过28,500名的客户中广泛采用。Oracle融合中间件同样被4,500家合作伙伴所采用,这些合作伙伴中包括2,500家独立软件开发商和超过28,500位咨询师。
甲骨文总裁Charles Phillips说:“我们的Oracle融合应用的开发进程已完成一半,我们还在继续为2008年发布Oracle融合应用软件的目标而努力。”

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

Solutions to Oracle cannot be opened include: 1. Start the database service; 2. Start the listener; 3. Check port conflicts; 4. Set environment variables correctly; 5. Make sure the firewall or antivirus software does not block the connection; 6. Check whether the server is closed; 7. Use RMAN to recover corrupt files; 8. Check whether the TNS service name is correct; 9. Check network connection; 10. Reinstall Oracle software.

The method to solve the Oracle cursor closure problem includes: explicitly closing the cursor using the CLOSE statement. Declare the cursor in the FOR UPDATE clause so that it automatically closes after the scope is ended. Declare the cursor in the USING clause so that it automatically closes when the associated PL/SQL variable is closed. Use exception handling to ensure that the cursor is closed in any exception situation. Use the connection pool to automatically close the cursor. Disable automatic submission and delay cursor closing.

In Oracle, the FOR LOOP loop can create cursors dynamically. The steps are: 1. Define the cursor type; 2. Create the loop; 3. Create the cursor dynamically; 4. Execute the cursor; 5. Close the cursor. Example: A cursor can be created cycle-by-circuit to display the names and salaries of the top 10 employees.

To stop an Oracle database, perform the following steps: 1. Connect to the database; 2. Shutdown immediately; 3. Shutdown abort completely.

SQL statements can be created and executed based on runtime input by using Oracle's dynamic SQL. The steps include: preparing an empty string variable to store dynamically generated SQL statements. Use the EXECUTE IMMEDIATE or PREPARE statement to compile and execute dynamic SQL statements. Use bind variable to pass user input or other dynamic values to dynamic SQL. Use EXECUTE IMMEDIATE or EXECUTE to execute dynamic SQL statements.

Building a Hadoop Distributed File System (HDFS) on a CentOS system requires multiple steps. This article provides a brief configuration guide. 1. Prepare to install JDK in the early stage: Install JavaDevelopmentKit (JDK) on all nodes, and the version must be compatible with Hadoop. The installation package can be downloaded from the Oracle official website. Environment variable configuration: Edit /etc/profile file, set Java and Hadoop environment variables, so that the system can find the installation path of JDK and Hadoop. 2. Security configuration: SSH password-free login to generate SSH key: Use the ssh-keygen command on each node

An AWR report is a report that displays database performance and activity snapshots. The interpretation steps include: identifying the date and time of the activity snapshot. View an overview of activities and resource consumption. Analyze session activities to find session types, resource consumption, and waiting events. Find potential performance bottlenecks such as slow SQL statements, resource contention, and I/O issues. View waiting events, identify and resolve them for performance. Analyze latch and memory usage patterns to identify memory issues that are causing performance issues.

Triggers in Oracle are stored procedures used to automatically perform operations after a specific event (insert, update, or delete). They are used in a variety of scenarios, including data verification, auditing, and data maintenance. When creating a trigger, you need to specify the trigger name, association table, trigger event, and trigger time. There are two types of triggers: the BEFORE trigger is fired before the operation, and the AFTER trigger is fired after the operation. For example, the BEFORE INSERT trigger ensures that the age column of the inserted row is not negative.
