11gR2 Database Services for "Policy" and "Administrator" Managed Databases (文件 ID 1481647.1)

11gR2 Database Services for "Policy" and "Administrator" Managed Databases (文件 ID 1481647.1)

大家好,又见面了,我是全栈君,今天给大家准备了Idea注册码。

In this Document

   Details

Applies to:

Oracle Server – Enterprise Edition – Version 11.2.0.1 and later

Information in this document applies to any platform.

Purpose

This document describes 11gR2 databases services for Policy and Administrator Managed Databases. Pre-11gR2 has only Administrator Managed Databases

Details

 
Services for Policy Managed Database:

Service for a policy-managed databases are defined to a server pool where the database is running, the service can be either UNIFORM or SINGLETON:

-UNIFORM (running on all instances in the pool)
-SINGLETON (running on only one instance in the pool) 

For singleton services, RAC chooses on which instance the service is active. If that instance fails, the service fails over to another instance in the same pool.

Note: A single RAC database can run on multiple server pools.

Eg:

To create a SINGLETON service called BACKUP_JOB using server pool SP1 and a UNIFORM service called ERP using server pool SP2

$srvctl add service -d RAC_DB -s BACKUP_JOB -g SP1 -c singleton
$srvctl add service -d RAC_DB -s ERP -g SP2 -c UNIFORM

 

Services for Administrator Managed database:

Service for administrator-managed databases is similar as what’s in pre-11gR2, it has PREFERRED instances and optionally AVAILABLE instances to control on which instances the service is active:

-PREFERRED (running on these instances normally )

-AVAILABLE (running on these instances when PREFERRED fails)

Eg:

To create a service called PAYROLL with preferred instance RAC_DB2 and available instance RAC_DB1

$srvctl add service -d RAC_DB -s PAYROLL -r RAC_DB2 -a RAC_DB1

版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请联系我们举报,一经查实,本站将立刻删除。

发布者:全栈程序员-站长,转载请注明出处:https://javaforall.net/117545.html原文链接:https://javaforall.net

(0)
全栈程序员-站长的头像全栈程序员-站长


相关推荐

  • threadlocal底层实现_数据库底层实现原理

    threadlocal底层实现_数据库底层实现原理ThreadLocal作用:提供线程内的局部变量,不同的线程之间不会相互干扰,这种变量在线程的生命周期内起作用,减少同一个线程内多个函数或组件之间一些公共变量传递的复杂性。package com.mupack;public class App{ private String content; public void setContent(String content) { this.content = content; } public Stri

    2022年8月8日
    4
  • matlab之simulink仿真入门

    matlab之simulink仿真入门MatlabSimulink仿真工具的应用****Simulink是一个用来对动态系统进行建模、仿真和分析的软件包。使用Simulink来建模、分析和仿真各种动态系统(包括连续系统、离散系统和混合系统),将是一件非常轻松的事情。它提供了一种图形化的交互环境,只需用鼠标拖动的方法便能迅速地建立起系统框图模型,甚至不需要编写一行代码。由于Simulink具有强大的功能与友好的用户界面,因此它已

    2022年6月4日
    36
  • java中asList()方法的使用

    百融云创笔试:大家都知道这个方法是将数组转成list,是JDK中java.util包中Arrays类的静态方法。大家使用时一定要注意(请看代码和注释,一看就明了了): Strings[]={“aa”,”bb”,”cc”}; List<String>sList=Arrays.asList(s); for(Stringstr:sList){//能遍历出各个元素 …

    2022年4月5日
    51
  • WEBZIP为什么打不开网页

    WEBZIP为什么打不开网页

    2021年9月21日
    47
  • vim编辑器永久显示行号(linux查看显示行号)

    介绍了ubuntu环境下vim临时显示行号和永久显示行号的设置方法

    2022年4月11日
    128
  • centos系统不识别u盘_Unable to locate package vim

    centos系统不识别u盘_Unable to locate package vim在修改源后使用sudoapt-getupdate 显示 W:GPGerror:https://mirrors.ustc.edu.cn/kalikali-rollingInRelease:Thefollowingsignaturescouldn’tbeverifiedbecausethepublickeyisnotavailable:…

    2022年10月13日
    12

发表回复

您的邮箱地址不会被公开。 必填项已用 * 标注

关注全栈程序员社区公众号