What is the difference between oracle10g and 11g
Differences: 1. Oracle10g does not support the continue solution and does not support the column-to-row function, but it is supported in Oracle11g; 2. Oracle10g does not support ASM in clusters, but clusters in Oracle11g support ASM.
The operating environment of this tutorial: Windows 10 system, Oracle 11g version, Dell G3 computer.
What is the difference between oracle10g and 11g
There is a new party function in 11g, which is not supported by 10g, as follows:
listagg(b.person_name) within group(order by a.id) applyPerson,
2. Oracle10g does not support the continue solution, and The column-to-row function is not supported, but 11g supports:
select deptno, job, sum(sal) total_salq from emp group by deptno, job order by 1;
continue; It finally appeared in 11g and solved many application problems.
In Oracle 11g, data security requirements are getting higher and higher, and the Transparent Data Encryption (TDE) feature for LOBs and table spaces has been expanded to improve data security.
Oracle 11g’s new SecureFile features are mainly focused on data compression and deduplication.
The key goals of Oracle 10g database are two: 1. Reduce management overhead, 2. Improve performance. The enhancements of Oracle 10g include enhancements to high availability, new Flashback capabilities, and support for rollback update operations; enhancements to security to facilitate the management of a large number of users; enhancements to BI, including improved SQL capabilities, analysis functions, OLAP, Data mining capabilities, etc.; improved non-relational data storage capabilities; XML capabilities; enhanced development capability support, and support for bioinformatics.
Simply we can talk about the five major new features and four minor new features of 11g as well as some small details.
Five new features:
1. The clustering capability is increased. Only one oracle home is needed, and RAC becomes stronger;
2. Clustering Support ASM, this is so important, and it is also a means to solve the redundant oracle home;
3. ACFS, the cluster file system, is much stronger than the previous OCFS;
4. Install more Convenient, easier to upgrade and patch;
5. Improved operating capabilities, DBMS_SCHEDULER upgrade;
Four new features:
1. Versioning Management, you can restore to the previous version;
2. Cancel the DDL restriction of flashback data archiving;
3. Create table will not automatically allocate segments, but will not automatically allocate segments until data enters. Allocation segment;
4. The index will be deleted when it is unavailable, which can improve the data warehouse performance;
Details:
1. RMAN enhancement;
2. DG enhancement;
3. Data warehouse enhancement;
4. The useless sqlplusw is canceled and developer tools are added.
Recommended tutorial: "Oracle Tutorial"
The above is the detailed content of What is the difference between oracle10g and 11g. For more information, please follow other related articles on the PHP Chinese website!

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.

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

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.
