linux初探

首页

应用服务器

Linux技巧

中文文档

Linux初级

服务器源代码

命令详解

Linux技术应用

Linux安全应用

Linux业界新闻

UniX技术文章

Linux编程与内核

Linux数据库

Linux服务器

Linux安装指导

Linux论坛

首页>>Linux数据库>>文章正文

修改oracle最大连接数的步骤


使用sys,以sysdba权限登录:

SQL> show parameter processes;

NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
aq_tm_processes integer 1
db_writer_processes integer 1
job_queue_processes integer 10
log_archive_max_processes integer 1
processes integer 150

SQL> alter system set processes=300 scope = spfile;

系统已更改。

SQL> show parameter processes;

NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
aq_tm_processes integer 1
db_writer_processes integer 1
job_queue_processes integer 10
log_archive_max_processes integer 1
processes integer 150

SQL> create pfile from spfile;

文件已创建。


重启数据库,OK!

相关文章

·oracle 透明网关环境的建立
·使Oracle能同时访问多个SQL Server
·有关Oracle中应用开发常见故障及排除
·Oracle中几种启动和关闭方式对比分析
·一套实现Oracle异地数据自动备份方案
·与MYSQL服务器进行协调
·Oracle 数据库的备份与恢复
·db2在RHAS4+RHCS4环境下集群的script问题!
·杀死oracle死锁进程

热门文章

·新手入门--全面介绍MySQL的基
·RedHat AS4-U2下Mysql 5.0.2
·linux下 mysql 忘记root用户
·MySQL手册版本 5.0.20-MySQL
·MySQL手册版本 5.0.20-MySQL
·MySQL手册版本 5.0.20-MySQL
·MySQL手册版本 5.0.20-MySQL
·MySQL手册版本 5.0.20-MySQL
·MySQL手册版本 5.0.20-MySQL
·solaris启动过程详解

Copyright@2005 www.linuxGoo.com All Right Reserved