- 浏览: 373532 次
- 性别:
- 来自: 上海
文章分类
最新评论
-
一半水分子:
你好,我想转载您的文章,需要获取您的许可,请您在看到这条评论时 ...
Centos7 卸载ibus无法进入桌面 -
flylynne:
1、 车辆证书,发票和合格证都要齐全,不能听他们说是分开的,因 ...
技术内容 -
josico:
问一下,如果1替换成 M2替换成 N3替换成 O那其实不要这样 ...
SQL replace的使用 -
xiezhiwei0314:
lomboz 目录我也没有看到
Eclipse SDK安装web开发插件 -
xiezhiwei0314:
我安装好tomact插件但是没有看到web那个目录!在网上查了 ...
Eclipse SDK安装web开发插件
Oracle MTS的相关问题
一、什么是MTS
MTS = Multi-Threaded Server
MTS是ORACLE SERVER的一个可选的配置选择,是相对DEDICATE方式而言,它最大的优点是在以不用增加物理资源(内存)的前提下支持更多的并发的连接。
Joseph C.Johnson以餐馆给出一个MTS的形象的比喻
假设ORACLE是一家餐馆,当你走进一家餐馆时你感觉最舒服的服务方式就是有一个专门的waiter来为你服务,而不管餐馆中来了多少人,她只对你请求应答,这是DEDICTE的处理方式,也就是说每一个ORACLE客户端的连接都有一个专门的服务进程来为它服务。而大部的餐馆的服方式都不是一对一的,当你走进的时侯,你就被指定了一个waiter,她也可能为其它桌服着务,这对于餐馆来说是最有利的,因为他们可以服务更多的客人而不需要增加他们的员工。这样对你来说也可能是不错的,如果餐馆不是太忙,她服务的客人的请求都很简短且容易完成,你的感觉也好像自己拥有一个专门的waiter,waiter把你的ORDER转给厨师,然后把做好的菜拿给你,这就是MTS的处理方式,这些共享的waiters我们叫她们为Dispatchers,厨师我们则叫他们为Shared Server Processes。
假设ORACLE是一家餐馆,当你走进一家餐馆时你感觉最舒服的服务方式就是有一个专门的waiter来为你服务,而不管餐馆中来了多少人,她只对你请求应答,这是DEDICTE的处理方式,也就是说每一个ORACLE客户端的连接都有一个专门的服务进程来为它服务。而大部的餐馆的服方式都不是一对一的,当你走进的时侯,你就被指定了一个waiter,她也可能为其它桌服着务,这对于餐馆来说是最有利的,因为他们可以服务更多的客人而不需要增加他们的员工。这样对你来说也可能是不错的,如果餐馆不是太忙,她服务的客人的请求都很简短且容易完成,你的感觉也好像自己拥有一个专门的waiter,waiter把你的ORDER转给厨师,然后把做好的菜拿给你,这就是MTS的处理方式,这些共享的waiters我们叫她们为Dispatchers,厨师我们则叫他们为Shared Server Processes。
二、MTS架构
[metalink-Note:29038.1]
1. Oracle Multi-Threaded Server Architecture.
----------------------------------------------
+-----------+ user
+-----------+| processes
| ||
|APPLICATION||
| CODE ||
| |+
+-----------+
/|\
| CLIENT
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| SERVER
\|/
+----------------------------------+
+----------------------------------+|
| ||
| DISPATCHER PROCESSES ||
| |+
+----------------------------------+
| /|\
| |
| +-----------+ |
| +-----------+| shared |
| +-----------+|| server |
| | ORACLE ||+ processes |
| |SERVER CODE|+ |
| +-----------+ |
| /|\ /|\ | |
| | | | |
| | | | |
| | \|/ | |
+---------------|-----|-------|----------------|-------+
| \|/ | \|/ | |
| +-------------------+ +----------------------+ |
| | REQUEST | | RESPONSE QUEUES | |
| | QUEUES | +----------------------+ |
| +-------------------+ |
| SYSTEM GLOBAL AREA |
| |
+------------------------------------------------------+
Client Connections to MTS
~~~~~~~~~~~~~~~~~~~~~~~~~
A client process wanting to connect to an Oracle instance using MTS
should go through the following steps:
----------------------------------------------
+-----------+ user
+-----------+| processes
| ||
|APPLICATION||
| CODE ||
| |+
+-----------+
/|\
| CLIENT
- - - - - - - - - - - - - - - - - - - - - - - - - - - - -
| SERVER
\|/
+----------------------------------+
+----------------------------------+|
| ||
| DISPATCHER PROCESSES ||
| |+
+----------------------------------+
| /|\
| |
| +-----------+ |
| +-----------+| shared |
| +-----------+|| server |
| | ORACLE ||+ processes |
| |SERVER CODE|+ |
| +-----------+ |
| /|\ /|\ | |
| | | | |
| | | | |
| | \|/ | |
+---------------|-----|-------|----------------|-------+
| \|/ | \|/ | |
| +-------------------+ +----------------------+ |
| | REQUEST | | RESPONSE QUEUES | |
| | QUEUES | +----------------------+ |
| +-------------------+ |
| SYSTEM GLOBAL AREA |
| |
+------------------------------------------------------+
Client Connections to MTS
~~~~~~~~~~~~~~~~~~~~~~~~~
A client process wanting to connect to an Oracle instance using MTS
should go through the following steps:
a) Call the listener
b) The listener tells it to call back on the address where
the dispatcher is listening (a REDIRECT)
c) The client calls the dispatcher and establishes a connection.
d) The dispatcher now has a CLIENT connection ESTABLISHED and
will also continue to listen for any new connections.
e) The client sends a SQL message to the dispatcher.
f) The dispatcher unwraps this message packet and places the
request onto a queue in the SGA (System Global Area).
This queue has NOTHING to do with SQL*Net. The SQL*Net
layer ends in the dispatcher.
g) A shared server will pick up the request from the SGA queue
and process it. When there is any result this is placed
on a separate queue in the SGA ready for the dispatcher.
h) The dispatcher picks up the response message from the SGA
and wraps this into a SQL*Net message. This is passed
back to the client.
b) The listener tells it to call back on the address where
the dispatcher is listening (a REDIRECT)
c) The client calls the dispatcher and establishes a connection.
d) The dispatcher now has a CLIENT connection ESTABLISHED and
will also continue to listen for any new connections.
e) The client sends a SQL message to the dispatcher.
f) The dispatcher unwraps this message packet and places the
request onto a queue in the SGA (System Global Area).
This queue has NOTHING to do with SQL*Net. The SQL*Net
layer ends in the dispatcher.
g) A shared server will pick up the request from the SGA queue
and process it. When there is any result this is placed
on a separate queue in the SGA ready for the dispatcher.
h) The dispatcher picks up the response message from the SGA
and wraps this into a SQL*Net message. This is passed
back to the client.
三、确定你的DB是否在使用MTS
[metalink-Note:1071305.6]
Solution Description:
=====================
Look at the "init.ora" parameter MTS_DISPATCHERS.
MTS_DISPATCHERS defines the number of dispatchers created when the instance
starts up. If this is set to zero, or is null (default value), then you are NOT
using MTS.
=====================
Look at the "init.ora" parameter MTS_DISPATCHERS.
MTS_DISPATCHERS defines the number of dispatchers created when the instance
starts up. If this is set to zero, or is null (default value), then you are NOT
using MTS.
If MTS_DISPATCHERS is greater than zero, then check these other "init.ora"
parameters for valid values:
parameters for valid values:
MTS_MAX_DISPATCHERS Maximum number of dispatchers
MTS_SERVERS Number of server processes created at startup
MTS_MAX_SERVERS Maximum number of shared server processes
MTS_SERVICE SID
MTS_LISTENER_ADDRESS Configuration of the listener
MTS_SERVERS Number of server processes created at startup
MTS_MAX_SERVERS Maximum number of shared server processes
MTS_SERVICE SID
MTS_LISTENER_ADDRESS Configuration of the listener
Solution Explanation:
=====================
These other "init.ora" parameters may have valid values, but if MTS_DISPATCHERS
is zero or null, MTS is not being used.
=====================
These other "init.ora" parameters may have valid values, but if MTS_DISPATCHERS
is zero or null, MTS is not being used.
四、MTS相关参数的含义
[metalink-Note:29038.1]
The main parameters required to start MTS are:
o MTS_SERVICE - This parameter establishes the name of the MTS service
that clients connect to, in order for the dispatchers to handle requests.
o MTS_DISPATCHERS - Dispatchers are detached processes that handle client
process requests and communicate them to server processes for execution.
that clients connect to, in order for the dispatchers to handle requests.
o MTS_DISPATCHERS - Dispatchers are detached processes that handle client
process requests and communicate them to server processes for execution.
This parameter defines the number of dispatchers to startup for
each protocol that is configured for MTS. For example,
mts_dispatchers = "ipc, 2"
each protocol that is configured for MTS. For example,
mts_dispatchers = "ipc, 2"
o MTS_SERVERS - This is the number of shared server processes that
start at instance startup time. Shared servers service the
client requests passed on to them by the dispatchers.
start at instance startup time. Shared servers service the
client requests passed on to them by the dispatchers.
o MTS_LISTENER_ADDRESS - This is the full address for dispatchers to listen
on, and is the same as the address configured in the TNS listener. The
address specification is protocol-specific. For example:
on, and is the same as the address configured in the TNS listener. The
address specification is protocol-specific. For example:
mts_listener_address = "(address=(protocol=ipc)(key=sw))"
五、使用MTS连接DB
先在主机命令行 $ lsnrctl services;
"D000" established:0 refused:0 current:1 max:972 state:ready
DISPATCHER <machine: db1, pid: 3950>
(ADDRESS=(PROTOCOL=tcp)(HOST=eagle1)(PORT=33166));
DISPATCHER <machine: db1, pid: 3950>
(ADDRESS=(PROTOCOL=tcp)(HOST=eagle1)(PORT=33166));
查看dispather的监听端口号——33166。(dispather进程名称一般是 ora_dNNN_SID,NNN in (000-999))
在client端的tnsname.ora中,注意:
TODB_MTS =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.2)(PORT = 33166))
)
(CONNECT_DATA =
(SERVER = SHARED)
(SERVICE_NAME = dbname)
)
)
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.2)(PORT = 33166))
)
(CONNECT_DATA =
(SERVER = SHARED)
(SERVICE_NAME = dbname)
)
)
这样可以解决ora-12520问题(当然这只是解决方法之一)
六、一问一答
Q:MTS一定比Delicated模式好吗?
A:不是。如果硬件好点,建议使用Delicated模式。biti语录:“我是能不用MTS就不用”
Q:MTS与Delicated模式可以相互转换吗?
A:可以。
MTS => Delicated
Reset the MTS Parameters in init.ora and reopen your DB.
Delicated => MTS
Added the MTS Parameters in init.ora and reopen your DB.
Q:MTS模式下可以用Delicated连进来吗?
A:可以。(SERVER = Delicated)即可。反之则不行。
Q:RAC环境一定得是MTS吗?
A:不是。
Q:JDBC thin 支持MTS吗?
A:目前不支持。
文章来源:http://dbua.iteye.com/blog/465826
文章来源:http://dbua.iteye.com/blog/465826
发表评论
-
mysql对binlog的处理
2015-02-26 09:50 706mysql对binlog的处理 Mysql和其它开源 ... -
listener.ora/sqlnet.ora/tnsnames.ora配置文件详解
2014-02-16 11:59 989转自:http://blog.csdn.net/aten_x ... -
SQL 面试题 一 (有关内连接、左、右连接、最大最小值)
2012-08-15 00:47 8551题目一: 有两张表:部门表department 部门编号de ... -
oracle
2012-04-20 20:52 763素数,它除了能表示为它自己和1的乘积以外,不能表示为任何其它两 ... -
Statement和PreparedStatement之间的区别
2011-03-16 19:53 10701.PreparedStatement是预编译的,对于批量处理 ... -
sqlplus常用命令
2010-12-06 17:34 1395**如何在XP的cmd命令行状态下输入中文? 1.开始-》运行 ... -
OLAP介绍
2010-11-28 10:35 1384一、发展背景二、什么是OLAP?三、相关基本概念四、OLAP特 ... -
JDBC实例 Statement,PreparedStatement,CallableStatement三个方法的实例
2010-11-08 23:10 10537public void ListStudents() thro ... -
Oracle 数据类型及存储方式(2)
2010-11-08 22:23 1381第二部分 数值类型 § 2.1 number Number类 ... -
Oracle 数据类型及存储方式
2010-11-08 22:20 7691第二部分 数值类型 § 2.1 number Num ... -
oralce flashback 使用方法总结
2010-11-08 21:49 1052oralce flashback 使用方法总结: 一, ... -
powerdesiner建模使用体会
2010-11-08 21:29 1314学习使用powerdesiner建模的一些关键点,如下五点: ... -
Oracle中Decode()函数使用技巧
2010-10-29 15:59 1018DECODE函数是ORACLE PL/SQL是 ... -
优化SQL语句的若干方法
2010-10-29 15:55 989优化SQL语句的若干方法 1、操作符号: NOT I ... -
Oracle学习笔记
2010-07-11 11:48 1581Oracle学习笔记 一,定义抽象数据类型/*creat ... -
Oracle数据操作和控制语言详解
2010-07-06 16:54 1108SQL语言共分为四大类:数据查询语言DQL,数据操纵语言DML ... -
SQL replace的使用
2010-07-06 16:49 1519需要修改表myTable表的myField字段的前缀,前缀都是 ... -
Oracle SQL 内置函数大全
2010-07-06 16:47 900SQL中的单记录函数 1.ASCII 返回与指定的字符对应的 ... -
Oracle课堂3_常用表介绍
2010-07-05 21:21 1105一、 SQL语句 Oracl ... -
Oracle安装及基本使用
2010-07-05 21:08 4048Oracle安装及基本使用 一、 具体内容 ...
相关推荐
这包括删除Oracle相关的系统变量,如ORACLE_HOME、PATH等,以及停止和删除与Oracle相关的Windows服务。此外,还应检查用户账户控制设置,确保有足够的权限进行安装。 在重新安装过程中,安装程序会引导你完成一系列...
此版本不支持 Pro*C/C++和.NET程序所需的Oracle Provider for OLE DB,如需支持上述功能,请访问并下载ODAC(Oracle Data Access Components,其包含 ODP.NET, Oracle Services for MTS, Oracle Providers for ASP...
如果你计划使用多线程服务器(MTS)架构,你需要配置Oracle MTS Recovery Services,以确保在MTS环境下的事务恢复。 10. **摘要** 在这一步,安装程序会展示你所选择的所有配置选项,确认无误后点击“安装”进行...
- **OracleMTSRecoveryService**:Oracle MTS Recovery Service是用于处理多线程服务器模式下的异常任务恢复的服务。 - **OracleOraDb11g_home1TNSListener**:这是Oracle TNS监听器服务,负责监听来自客户端的连接...
- **OracleServices for Microsoft Transaction Server**:在此步骤中,您可以设置Oracle MTS Recovery服务程序的监听端口,默认为2030,通常不需要更改。 - **数据库标识**:设置Oracle全局数据库名和Oracle系统...
多线程服务器(MTS)是Oracle数据库的一种优化策略,考生需要了解MTS的架构,如何通过init.ora文件配置消息服务和共享服务器,以及如何指定监听地址和建立连接池,以提高服务器性能和资源利用率。 **第八部分:...
打开服务,查看 Oracle 相关四个进程,三个正在运行即可,TNS 监听,OracleServiceORCL 单实例,和 MTS 正在运行即可,vss 状态无所谓。 七、配置 TNSnames.ora 找到 tnsnames.ora 文件,并增加刚才创建的 pdb,...
这些模拟试题可以帮助考生熟悉考试格式和常见问题,提升对Oracle基础知识的理解,如SQL语法、数据库管理、表空间管理等。 接下来,"uknow.rar"是一个未解压的文件,通常RAR是一种压缩文件格式,用于打包多个文件或...
Oracle数据库在启动过程中可能会遇到各种报错,这些错误通常是由于配置问题、资源限制或是系统级设置不当导致的。本文将详细解析ORACLE启动报错的常见问题及其解决方案。 首先,针对ORA-12500:“TNS:监听程序无法...
Oracle MTS是Oracle的一种多线程服务器模式,用于提高并发处理能力。在安装时,你需要根据预期的工作负载和资源来决定是否启用MTS。 ### 总结 Oracle9i的安装是一个系统性的工作,涉及到多个步骤和配置。正确地...
- **解释**:这通常表示Oracle内部出现了问题,可能是由于软件缺陷导致的。 ### 00020,0,"(%s)" - **含义**:格式化的错误信息。 - **解释**:这种错误信息通常包含了动态插入的参数,如具体的对象名等。 ### ...
- **MTS(多线程服务器)**:配置Oracle MTS提高性能的方法。 - **调整**:根据实际需求调整数据库参数来优化性能。 #### 六、版本更新记录 - **2000/07**:版本1.0发布。 - **2000/09**:版本1.1,增加了Linux...
尽管题目给出的部分内容主要聚焦于ASP(Active Server Pages)的内嵌对象及其使用方法,但基于题目要求,本文将围绕"Oracle XML核心技术"这一主题展开讨论,同时也会简要提及ASP的相关知识点以确保内容的完整性和准确性。...
Oracle Services for MTS是Oracle与Microsoft Transaction Server (MTS)集成的关键,它允许Oracle数据库作为MTS分布式事务的一部分。配置Oracle Services for MTS后,可以使得COM组件在参与MTS交易时通过Oracle进行...
这些服务包括Oracle VSS Writer Service、Oracle DBConsole、Oracle Job Scheduler、Oracle MTS Recovery Service、***扩展服务的一部分(如OracleOraDb11g_home1ClrAgent),以及Oracle监听器服务(OracleOraDb11g_...
在Oracle数据库的连接配置方面,主要有三种连接方式,分别是组合用户与服务器结构、专用服务器(Dedicated Server)结构以及多线程服务器(Multithreaded Server,MTS)体系结构。 1) **组合用户与服务器结构**: ...
除了以上提及的特性之外,还支持Oracle 8和Oracle 8i特性,如LOB定位、对象和参考、XML TYPE、时间戳、滚动查询、密码到期、外部程序开发以及MTS Oracle服务等。 主要功能: 按范例查询模式 ——TOracleDataSet组件...
在使用共享服务器模式(MTS)时,一部分PGA(即UGA)会被放入大型池(Large Pool)中。 ##### 2.2 内存参数的差异性 冯春培指出,在查询`v$parameter`、`v$sgastat`、`v$sga`等视图时,会发现它们之间存在差异。这些...