New Features of Oracle 11g (36 in total)

Source: Internet
Author: User
Tags knowledge base
New Features of Oracle 11g (36 in total)

I. Database Management

·1. Database Replay)

This feature can capture the load of the entire data and pass it to a test database created from the backup or standby database, and then repeat the load to test the system tuning effect.

·2. SQL replay (sqlreplay)

Similar to the previous feature. However, it only captures the SQL load, rather than all the load.

·3. Plan Management)

This feature allows you to fix the query plan of a specific statement, regardless of the statistical data or database version changes, it will not change its query plan.

 4,Automatic Diagnosis Knowledge Base
Diagnostic repositoryadr)

WhenOracleWhen an important error is detected, an event (incident) is automatically created, information related to the event is captured, and the database health check is automatically performed and DBA is notified. In addition, this information can be packaged and sent to the Oracle Support Team.

·5. Incident packaging service)

If you need to further test or retain relevant information, this feature can package information related to an event. You can also send the packaging information to the Oracle Support Team.

·6. feature-based Patching)

During patching, this feature makes it easy for you to differentiate the features in the patch package that you are using and must play. Enterprise Manager (EM) enables you to subscribe to a feature-based patch service, so Enterprise Manager can automatically scan for the features you are using with patches.

7. Auto sqltuning)

The 10 Gb automatic optimizer can write the optimization suggestions in the SQL profile. In the 11g environment, you can enable Oracle to automatically apply the profile with three times the original performance to SQL statements. Performance Comparison is completed by a new management task in the maintenance window.

·8. Access Advisor)

The 11g access recommender can provide partition recommendations, including recommendations for the new interval partition (interval partitioning. The interval partition is equivalent to the automatic version of rangepartitioning. It can automatically create a partition of the same size when necessary. Range partitions and interval partitions can exist in a table at the same time, and range partitions can be converted to interval partitions.

·9. Auto memory Tuning)

In 9i, automatic PGA optimization is introduced; in 10g, automatic SGA optimization is introduced. By 11 GB, all memory can be automatically optimized by setting only one parameter. You only need to tell Oracle How much memory is available, it can automatically specify how much memory is allocated to PGA, How much memory is allocated to SGA, and how much memory is allocated to operating system processes. You can also set the maximum and minimum thresholds.

10. Resource Manager)

The 11g resource manager can manage both the CPU and Io. You can set the priority, type, and ASM disk of a specific file.

11. ADDM

ADDM is introduced at 10 Gb. In 11g, ADDM not only provides suggestions for a single instance, but also provides suggestions for the entire RAC (that is, the database level. In addition, you can add some direve ve instructions to ADDM to ignore information that you don't care about.

·12. AWR baseline (awrbaselines) 

The AWR baseline is extended. You can automatically create baselines for some other features used. A weekly baseline is created by default.

 II, PLSQL

·1. Result set caching) 

This performance is greatly improved.ProgramPerformance. In some mis or OLAP systems, many queries such as "select count (*)" need to be used. Previously, to improve the query performance, we may need to use materialized views or query rewriting technologies. At 11 GB, we only need to add a/* + result_cache */prompt to cache the result set, which can greatly improve the query performance. Of course, in this case, we may have to worry about another issue: integrity. In Oracle, consistent reading is used to ensure data integrity. Obviously, in this new feature, to improve performance, data is read from the cache result set rather than from the rollback segment. The answer to this question is that integrity can be fully guaranteed. Because the result set is independently cached, any other DML statements during the query will not affect the content of the result set, thus ensuring data integrity.

·2. Object dependency Improvement

If a function or view is dependent on a table before 11 GB, whether or not the function or view-dependent attributes are involved in the Structure Change of the table, changes the function or view to invalid. In 11g, this situation is adjusted: If the changed attribute of the table is irrelevant to the related function or view, the state of the related object will not change.

·3. Regular Expression Improvement

A regular expression is introduced in 10 Gb. This feature greatly facilitates developers. 11 GB, Oracle again improved this feature. A function named regexp_count is added. In addition, other regular expression functions are also improved.

·4. New SQL syntax =>

When calling a function, we can use => to specify data for specific function parameters. In 11g, this syntax can also appear in SQL statements. For example, you can write the following statement:

Select f (x => 6) from dual;

·5. For TCP packets (utl_tcp, utl_smtp ...) Support for fgac (fine grained accesscontrol) Security Control 

·6. Read-Only table is added)

Previously, we used triggers or constraints to implement read-only control on tables. 11G does not need to be so troublesome, you can directly specify the table as a read-only table.

7. Intra-unitinlining)

In C, you can use inline or macro implementation to inline small and frequently called functions. After compilation, the part that calls the inline function is compiled into the function body of the inline function, thus improving the function efficiency. This inline function can also be implemented in PLSQL of 11 GB.

·8. Set the trigger sequence

Multiple triggers may exist on a table. In 11g, you can specify the trigger sequence, without worrying about the disordered sequence resulting in data confusion.

9. Compound trigger)

This is a new trigger in 11g. It allows you to have the Declaration part, before process part, after each row process part, and after PROCESS Part in the same trigger.

·10. Create an invalid trigger (disabled trigger)

In 11g, developers can create an invalid trigger first and compile it as needed.

·11. Use sequence in non-DML statements)

In earlier versions, if you want to assign the sequence value to the variable, You need to implement it using a statement similar to the following:

Select seq_x.next_val into v_x from dual;

In 11g, the following statement can be implemented without such trouble:

V_x: = seq_x.next_val;

·12. plsql_warning

In 11g, you can set plsql_warning = enable all. If no error is reported in "when others", a warning is sent.

·13. Inheritance of PLSQL

You can use the super (similar to Java) keyword in the Oracle object type to implement inheritance.

·14. Improved Compilation speed

Because the external C compiler is not used, the Compilation speed is improved.

·15. Improved the dbms_ SQL package

One of the improvements is that dbms_ SQL can receive clob larger than 32 KB. In addition, it supports user-defined types and bulk operations.

·16. added the continue keyword.

You can use the continue keyword in the loop Statement of PLSQL (the function is the same as the continue keyword in other advanced languages ).

·17. New PLSQL data type -- simple_integer

This is an integer data type that is more efficient than pls_integer.

 Iii. Other parts

·1. Enhanced Compression Technology

Up to 2/3 of the space can be compressed.

·2. High-Speed Promotion Technology

This greatly improves the speed of reading data from the file system.

·3. Enhanced Data guard

You can create snapshots of the standby database for testing. Combined with the database Replay Technology, stress testing can be performed to simulate the generation of system load.

·4. Online application upgrade

That is, hot Patching-you do not need to restart the database when installing and upgrading or patching.

·5. Database restoration provisioner

DBA can be guided during error diagnosis and solution implementation.

·6. Logical object partitioning

Partitions can be performed on logical objects, and partitions can be automatically created to facilitate the management of ultra-large databases (very large databases vldbs ).

·7. New High-Performance lob infrastructure

========================================================== ======================

Oracle expert QQ group: 60632593 (full), 60618621, 23145225

Blog: blog.csdn.net/newhappy2008

========================================================== ======================

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.