在从oracle10g升级到oracle11g后,就需要对oracle11g的新特性进行了解,这些特性可能会对应用及性能产生影响,需要调整。
oracle11g中默认在default概要文件中设置了PASSWORD_LIFE_TIME=180天后过期,到期后会自动改密码, 会影响应用的应用。
SQL> alter profile default limit password_life_time unlimited;
Oracle11g中默认用户名和密码大小写敏感,oracle10g就是没有这个问题。
SQL> alter system set sec_case_sensitive_logon=false scope=spfile;
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;
SQL> alter system set audit_trail=none scope=spfile;
本文出自 “koumm的linux技术博客” 博客,请务必保留此出处http://koumm.blog.51cto.com/703525/1583543
原文地址:http://koumm.blog.51cto.com/703525/1583543