Oracle提供优秀的中间件软件包
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入 两宗安全技术并购案补全了Oracle公司的中间件产品,该公司的高层人士如是说。 在上周完成了对两家私有的安全技术公司的并购案之后,Oracle公司的高层宣布他们现在能够向管理员提供最佳的中间件产品
欢迎进入Oracle社区论坛,与200万技术人员互动交流 >>进入
两宗安全技术并购案补全了Oracle公司的中间件产品,该公司的高层人士如是说。
在上周完成了对两家私有的安全技术公司的并购案之后,Oracle公司的高层宣布他们现在能够向管理员提供最佳的中间件产品套件。
上周,Oracle公司并购了总部位于英国的Thor Technologies公司和美国的OctetString公司,以帮助该软件公司与冠群(Computer Associates)、IBM和Sun公司等对手在身份管理领域里同台竞争。
上周二在悉尼举行的Gartner研讨会上,Oracle公司负责亚太区Fusion中间件销售的副总裁Roland Slee告诉Builder英国的姊妹网站ZDNet澳大利亚说,这两宗并购案将补全Oracle公司的中间件产品,并使得该公司能够向企业提供虚拟化的目录环境和改进过的身份管理技术。
“大多数的用户都在使用桌面系统、Mig-Range服务器、大型机和Web应用程序,以及各种不同的技术环境。按照理想的情况,他们的每个用户都应该有一个单一的身份,”Slee说。“问题是谁能提供最好的中间件。你需要能够在主环境里提供用户身份,并能用在各种其他的技术环境里――这就是Thor让我们能够做到的。”
Slee解释说,在理想状况下,企业只愿意使用一个目录来提供其资源,但是大多数企业却有多个目录,因为他们在使用多种不同的平台。并购OctetString公司将使得Oracle公司能够提供一个单一的虚拟目录,他说。
“大多数的公司都有多个[目录],有的可能用的是微软的活动目录(Active Directory),有的可能把目录放在大型机上,有的可能在Unix上还有些东西。虚拟目录能够对跨不同目录的身份信息进行同步,这样你就可以拥有一个单一的业务身份――即使该身份信息存放在不同的物理地点上,”Slee说。
根据Slee的说法,这种集成是有可能的,因为目录技术已经很成熟:“当标准还不成熟的时候,当技术也不成熟的时候,通过微软Windows NT4上的活动目录来控制谁能够登录到你的大型机上是相当需要技巧的。”
Oracle公司负责亚太区应用程序和产业的高级副总裁Mark Gibbs认为,公司最近的几宗并购案,包括准备出资58亿美元(约合34亿英镑)收购Siebel公司,并不是“大脑发热”的表现。相反,他把这些收购行为看作是“整体战略的一部分”。
“仁科公司,也许还有Siebel公司,将为我们提供世界上最丰富的应用程序功能。从应用程序的角度讲,我们集成和利用最佳安全和身份管理的能力使得我们的产品与市场上其他任何产品都不同,”Gibbs说。

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.

When Oracle log files are full, the following solutions can be adopted: 1) Clean old log files; 2) Increase the log file size; 3) Increase the log file group; 4) Set up automatic log management; 5) Reinitialize the database. Before implementing any solution, it is recommended to back up the database to prevent data loss.

Oracle is not only a database company, but also a leader in cloud computing and ERP systems. 1. Oracle provides comprehensive solutions from database to cloud services and ERP systems. 2. OracleCloud challenges AWS and Azure, providing IaaS, PaaS and SaaS services. 3. Oracle's ERP systems such as E-BusinessSuite and FusionApplications help enterprises optimize operations.

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

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.
