安装oracle11g后注意

-将oracle数据库的用户时间180天限制取消;

ALTER PROFILE DEFAULT LIMIT PASSWORD_LIFE_TIME UNLIMITED;

 

----关闭11g密码大小写区分

ALTER SYSTEM SET SEC_CASE_SENSITIVE_LOGON = FALSE;

 

----修改超级管理员SYS密码为

--sqlplus as sysdba

alter user sys identified by gpsserver;

 

 

3、修改数据库最大连接数

alter system set processes = 300 scope = spfile;  --修改最大连接数:

4、更改DBlink连接数

alter system set open_links=50 scope=spfile;

alter system set open_links_per_instance=50 scope=spfile;

 

 

5、修改连接数------查询连接数------

show parameter open_links;

-----参数的解释:

***open_links :每个session最多允许的dblink数量;

***open_links_per_instance:指每个实例最多允许的dblink个数;

----更改--------

alter system set open_links=50 scope=spfile;

alter system set open_links_per_instance=50 scope=spfile;

更改完后重启

posted on 2019-10-16 10:15  人生如梦既梦如人生  阅读(142)  评论(0编辑  收藏  举报

导航