oracle11g增加数据连接数
Microsoft Windows [版本 6.1.7601]
版权所有 (c) 2009 Microsoft Corporation。保留所有权利。
C:\Users\Administrator>sqlplus "/as sysdba"
SQL*Plus: Release 11.2.0.1.0 Production on 星期三 12月 14 11:35:33 2016
Copyright (c) 1982, 2010, Oracle. All rights reserved.
连接到:
Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options
SQL> show parameter processes;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
aq_tm_processes integer 0
db_writer_processes integer 1
gcs_server_processes integer 0
global_txn_processes integer 1
job_queue_processes integer 1000
log_archive_max_processes integer 4
processes integer 200
SQL> alter system set processes=450 scope = spfile;
系统已更改。
SQL> shutdown immediate;
数据库已经关闭。
已经卸载数据库。
ORACLE 例程已经关闭。
SQL> startup;
ORACLE 例程已经启动。
Total System Global Area 6814535680 bytes
Fixed Size 2188688 bytes
Variable Size 5268048496 bytes
Database Buffers 1526726656 bytes
Redo Buffers 17571840 bytes
数据库装载完毕。
数据库已经打开。
SQL> show parameter processes;
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
aq_tm_processes integer 0
db_writer_processes integer 1
gcs_server_processes integer 0
global_txn_processes integer 1
job_queue_processes integer 1000
log_archive_max_processes integer 4
processes integer 450
SQL> create pfile from spfile;
文件已创建。
SQL> exit
从 Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
With the Partitioning, OLAP, Data Mining and Real Application Testing options 断
开
C:\Users\Administrator>
推荐阅读
-
在ASP.NET 2.0中操作数据之十九:给编辑和新增界面增加验证控件
-
Java读取properties文件连接数据库的方法示例
-
MySQL 客户端不输入用户名和密码直接连接数据库的2个方法
-
MySQL中大数据表增加字段的实现思路
-
Oracle11g数据库导入Oracle10g数据库的方法,oracle常用数据导入导出命令
-
asp.net使用LINQ to SQL连接数据库及SQL操作语句用法分析
-
plsql developer怎么连接数据库 plsql developer数据库连接教程
-
MyEclipse中连接数据库(创建数据库配置文件和连接)
-
数据库中两张表之间的数据同步增加、删除与更新实现思路
-
MySQL实现当前数据表的所有时间都增加或减少指定的时间间隔(推荐)