码迷,mamicode.com
首页 > 数据库 > 详细

Oracle11g新特性注意事项

时间:2014-11-28 06:25:30      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:oracle   11g新特性   

在从oracle10g升级到oracle11g后,就需要对oracle11g的新特性进行了解,这些特性可能会对应用及性能产生影响,需要调整。

1. Oracle11g密码过期策略

oracle11g中默认在default概要文件中设置了PASSWORD_LIFE_TIME=180天后过期,到期后会自动改密码, 会影响应用的应用。

SQL> alter profile default limit password_life_time unlimited;

 

2. Oracle11g对用户名密码大小写敏感

Oracle11g中默认用户名和密码大小写敏感,oracle10g就是没有这个问题。

SQL> alter system set sec_case_sensitive_logon=false scope=spfile;

 

3. Oracle11g空表不会立即创建segment,默认是true. 在oracle11.2.0.1这样就会产生一些问题,最大的问题就是exp导出时,空表不会导出数据。对于使用oracle11.2.0.1 exp客户端导入11.2.0.2以上版本数据库时会出现EXP-00001错误。

SQL> alter system set deferred_segment_creation = false scope=spfile;

对于已经是空表问题的解决方式如下,找到表空,并立即分配空间:

SQL> select ‘alter table ‘||table_name||‘ allocate extent;‘ from user_tables where num_rows=0 ;

‘ALTERTABLE‘||TABLE_NAME||‘ALLOCATEEXTENT;‘  
-----------------------------------------------------------    
alter table C allocate extent;    
alter table B allocate extent;    
alter table A allocate extent;    
alter table ABC allocate extent;    
alter table TEST_LOCK allocate extent;

 

4. Oracle11g默认是开启审记功能的,开启审记功能是会对性能产生影响的,可以考虑关闭。

SQL> alter system set audit_trail=none scope=spfile;

 

 

本文出自 “koumm的linux技术博客” 博客,请务必保留此出处http://koumm.blog.51cto.com/703525/1583543

Oracle11g新特性注意事项

标签:oracle   11g新特性   

原文地址:http://koumm.blog.51cto.com/703525/1583543

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!