No way to mount a diskgroup on * all * nodes in node 1?

Hello

We lack GI/Oracle RAC 11 g 2 on RH6 with storage of udev (abandoned since ASMLib).

Please correct me if I'm wrong: there is no way to mount a diskgroup that you created

from the node on which you just did on all nodes of your cluster?

I don't have to connect to the remaining nodes and run my right to ALTER DISKGROUP MONTER?

Thank you.

Kind regards

SEB

If you add a new asmca diskgroup (ASM Configuration Assistant), it mounts diskgroup to all nodes for you.

It also allows running local Assembly and installation on all nodes.

Here you can find the link to the documentation for the asmca:

Oracle ASM Setup Wizard

Tags: Database

Similar Questions

  • Is there a way to get a list of all applications / updates that are cached on your server?

    Is there a way to get a list of all applications / updates that are cached on your server?  Of course, we see the space that contains each category.  But I would like a detailed list of the individual items that are actually cached.

    ITD be even better if I could get a scoreboard that showed me how many times a particular point was served to customers.

    Yes.  But you need a little magic Terminal to get the desired data.  Caching server is managed by a sqlite database.  To examine the contents, follow these basic steps:

    1: connect to the database using the following command:

    sudo sqlite3 /Library/Server/Caching/Data/AssetInfo.db

    2: to structure the data, run these two commands to the sqlite command-line prompt:

    .blog column

    . Headers on

    3: to find everything that is stored, run this command (you'll get iCloud cached documents, books, iOS apps, etc.):

    Select * from ZASSET;

    4: to narrow the results down to elements called by software updates, try this:

    Select * from ZASSET where ZURI as "content %";

    You could get a line that looks similar to the following:

    403 2 6 0 2012986793 474949928.477396 476912032.644505 e03448847909547fb8c7d4ecd5a7b6dd FAB32A72-DE33-469D-A7DF-3CE1A1F9A4D2 on Wednesday, August 5, 2015 18:00:30 GMT

    / Content/downloads/42/44/031-30888/bhrkylcnycxmtug9daw3g4magqb7dl7hba/OSXUpdComb o10.1

    (added the newline for readability)

    It is an OS X Combo update.  It is located on the drive to library/server/cache/Data/FAB32A72-DE33-469D-A7DF-3CE1A1F9A4D2 / the file is probably named 0, but if you want to use it, just add at the end of the .pkg file.

    I hope this helps.  Put server cache saves a lot of data.

    Oh, to quit the sqlite command line tool, simply type .quit and press return.

    Reid

    Apple Consultants Network

    Author - "El Capitan Server - Foundation Services.

    Author - "El Capitan Server - Collaboration & control»

    Author - "El Capitan Server - Advanced Services '.

    : IBooks exclusively available in Apple store

  • I would like to find a way to print a list of all my songs from windows media player.

    I would like to find a way to print a list of all my songs from windows media player.

    you could try: WINDOWS MEDIA PLAYER PLAYLIST PRINT
    http://www.footballchance.com/WMPplaylist.shtm

    Ref: http://answers.microsoft.com/en-us/windows/forum/windows_vista-pictures/print-a-playlist-from-windows-media-player-11/b3dde8a4-5ecc-4e91-9440-7ec873477712

    Record the information updates on the program:

    Playlist WMP has been verified on the Windows Media Player 9, 10, 11 and 12.

    Windows XP/VISTA/7/8
    Minimum screen resolution is 800 x 600 (or larger) file size is approximately 1.2 MB.

  • Is there a way to get a list of all installed applications?

    Is there a way to get a list of all installed applications?

    You can submit a request to have such an API and provided good use. It also helps to get other developers can vote on it.

  • What is an effective way to adjust the position of all the clips on the timeline

    In one of my projects, I leave cuts on a timeline. And it seems that the position of a few clips has been accidentally changes. I need to have the same position for all the clips. Is there a way to define the position of all the clips in the world - what is the best way to tacke this? Thanks in advance. -renized

    Press A key for the track Selection tool.  Click the first clip that you want to settle and every item after that will be also selected.  You can move them as a group.

    If you need clips on more than a selected track, hold CTRL when you click.

  • Extract all nodes and filter them based on the WHERE clause

    <?xml version="1.0" encoding="UTF-8"?>
    <report_repository_summary>
       <sql sql_id="gyn915ynqjspa" sql_exec_start="08/19/2015 22:23:02" sql_exec_id="16777217">
          <status>DONE</status>
          <sql_text>BEGIN DBMS_STATS.GATHER_FIXED_OBJECTS_STATS; END;</sql_text>
          <first_refresh_time>08/19/2015 22:23:10</first_refresh_time>
          <last_refresh_time>08/19/2015 22:24:52</last_refresh_time>
          <refresh_count>54</refresh_count>
          <inst_id>1</inst_id>
          <session_id>26</session_id>
          <session_serial>20363</session_serial>
          <user_id>0</user_id>
          <user>SYS</user>
          <con_id>3</con_id>
          <con_name>PDB01_1</con_name>
          <module>sqlplus@lab (TNS V1-V3)</module>
          <service>1_1.up.com</service>
          <program>sqlplus@lab (TNS V1-V3)</program>
          <plan_hash>0</plan_hash>
          <is_cross_instance>N</is_cross_instance>
          <stats type="monitor">
             <stat name="duration">110</stat>
             <stat name="elapsed_time">109822091</stat>
             <stat name="cpu_time">78295097</stat>
             <stat name="user_io_wait_time">1388002</stat>
             <stat name="application_wait_time">1228</stat>
             <stat name="concurrency_wait_time">9175702</stat>
             <stat name="cluster_wait_time">41691</stat>
             <stat name="plsql_exec_time">39369731</stat>
             <stat name="other_wait_time">20920371</stat>
             <stat name="buffer_gets">616087</stat>
             <stat name="read_reqs">837</stat>
             <stat name="read_bytes">22998016</stat>
          </stats>
       </sql>
    </report_repository_summary>
    
    
    

    With above document XML stored as varchar2 (4000) in 12.1.0.2.0, how can I retrieve and display the relevant information(sql_id,session_id,plan_hash,duration,read_bytes) based on the place where condition to filter on any node. For example.

    select * from (
    SELECT EXTRACT (xmltype.createxml (a.report_summary), '//stats/stat[2]/text()').getstringval () AS elap_time from dba_hist_reports a WHERE component_name = 'sqlmonitor'
    )
    where elap_time > 100000000
    /
    
    
    

    Here, I try to get sql_id, sql_exec_id, duration and other information stored in the xml document by applying the where on elapsed_time condition. But to do this, I must write the part EXTRACT for all nodes in the inline view which seems like very bad way of writing of XML query. Is there an easy way to get all the information of nodes so that I can freely apply node whatever, I want in the WHERE condition to filter the records? No better way to write the code then the code below?

    select     REPORT_ID,
               EXTRACT (xmltype(a.report_summary), '//sql/@sql_id')                                    "sql_id",
               EXTRACT (xmltype(a.report_summary), '//sql/@sql_exec_id')                               "sql_exec_id",
               EXTRACT (xmltype(a.report_summary), '//sql/@sql_id')                                    "sql_exec_start",
               EXTRACT (xmltype(a.report_summary), '//status/text()')                                  "status",
               EXTRACT (xmltype(a.report_summary), '//sql_text/text()')                                "sql_text",
               EXTRACT (xmltype(a.report_summary), '//first_refresh_time/text()')              "first_refresh_time",
               EXTRACT (xmltype(a.report_summary), '//last_refresh_time/text()')               "last_refresh_time",
               EXTRACT (xmltype(a.report_summary), '//refresh_count/text()')                   "refresh_count",
               EXTRACT (xmltype(a.report_summary), '//inst_id/text()')                                         "inst_id",
               EXTRACT (xmltype(a.report_summary), '//session_id/text()')                              "session_id",
               EXTRACT (xmltype(a.report_summary), '//session_serial/text()')                  "session_serial",
               EXTRACT (xmltype(a.report_summary), '//user_id/text()')                                         "user_id",
               EXTRACT (xmltype(a.report_summary), '//user/text()')                                    "user",
               EXTRACT (xmltype(a.report_summary), '//con_id/text()')                                  "con_id",
               EXTRACT (xmltype(a.report_summary), '//con_name/text()')                                "con_name",
               EXTRACT (xmltype(a.report_summary), '//module/text()')                                  "module",
               EXTRACT (xmltype(a.report_summary), '//service/text()')                                         "service",
               EXTRACT (xmltype(a.report_summary), '//program/text()')                                         "program",
               EXTRACT (xmltype(a.report_summary), '//plan_hash/text()')                               "plan_hash",
               EXTRACT (xmltype(a.report_summary), '//is_cross_instance/text()')               "is_cross_instance",
               EXTRACT (xmltype(a.report_summary), '//stat[1]/text()')                                 "duration",
               EXTRACT (xmltype(a.report_summary), '//stat[2]/text()')                                 "elapsed_time",
               EXTRACT (xmltype(a.report_summary), '//stat[3]/text()')                                 "cpu_time",
               EXTRACT (xmltype(a.report_summary), '//stat[4]/text()')                                 "user_io_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[5]/text()')                                 "application_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[6]/text()')                                 "concurrency_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[7]/text()')                                 "cluster_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[8]/text()')                                 "plsql_exec_time",
               EXTRACT (xmltype(a.report_summary), '//stat[9]/text()')                                 "other_wait_time",
               EXTRACT (xmltype(a.report_summary), '//stat[10]/text()')                                        "buffer_gets",
               EXTRACT (xmltype(a.report_summary), '//stat[11]/text()')                                        "read_reqs",
               EXTRACT (xmltype(a.report_summary), '//stat[12]/text()')                                        "read_bytes"
    from       DBA_HIST_REPORTS a
    

    Don't know why, but it pays just 1 or 0. Even in your case his statement just 0 or 1 for all X 2 columns table.

    I guess I do something wrong in declaring XPATH for X 2 table but not able to find what it is.

    It makes account 0 or 1 because path expressions are bad.

    "For example: ' @name ="duration"

    This is a Boolean expression, not a step of XPath and so gets evaluated as such, which gives 0/1 for false/true values.

    What you need, it is something like this:

    SELECT x1.*
    FROM dba_hist_reports t
       , xmltable('/report_repository_summary/sql'
           PASSING xmlparse(document t.report_summary)
           COLUMNS
             sql_id              varchar2(15) path '@sql_id'
           , sql_exec_start      varchar2(30) path '@sql_exec_start'
           , sql_exec_id         number       path '@sql_exec_id'
           , status              varchar2(10) path 'status'
           , stats_duration      number       path 'stats/stat[@name="duration"]'
           , stats_elapsed_time  number       path 'stats/stat[@name="elapsed_time"]'
           , stats_cpu_time      number       path 'stats/stat[@name="cpu_time"]'
         ) x1
    where sql_id = 'c1tb2666n5rfx'
    and sql_exec_id = 16777668
    
  • How to turn off completely the CRS stack all in all nodes?

    Version of the grid: 11.2.0.4

    Platform: OEL 6.4

    To stop the entire stack of crs, I ran crsctl stop cluster - all of a node. After running the command, the following processes were still running on all nodes.

    [root@intsmdp01 ~] # ps - ef | grep d.bin

    root 38562 33228 0 19:12 pts/2 00:00:00 grep d.bin

    80820 1 root 0 Nov09?        00:20:56 /crs/product/11.2.0/bin/ohasd.bin restart

    grid 81448 1 0 Nov09?        00:01:22 /crs/product/11.2.0/bin/mdnsd.bin

    grid 81459 1 0 Nov09?        00:01:55 /crs/product/11.2.0/bin/gpnpd.bin

    grid 81473 1 0 Nov09?        00:17:26 /crs/product/11.2.0/bin/gipcd.bin

    root 81484 1 20 Nov09?        09:10:27 /crs/product/11.2.0/bin/osysmond.bin

    So, I had to manually run crsctl stop crs on all nodes.

    [root@intsmdp01 ~] # /crs/product/11.2.0/bin/crsctl stop crs

    CRS-2791: from closing resources managed by Oracle high availability Services on "intsmdp01".

    CRS-2673: attempt to stop 'ora.crf' on 'intsmdp01 '.

    CRS-2673: attempt to stop 'ora.drivers.acfs' on 'intsmdp01 '.

    CRS-2673: attempt to stop 'ora.mdnsd' on 'intsmdp01 '.

    CRS-2677: stop 'ora.crf' on 'intsmdp01' succeeded

    CRS-2673: attempt to stop 'ora.gipcd' on 'intsmdp01 '.

    CRS-2677: stop 'ora.mdnsd' on 'intsmdp01' succeeded

    CRS-2677: stop 'ora.drivers.acfs' on 'intsmdp01' succeeded

    CRS-2677: stop 'ora.gipcd' on 'intsmdp01' succeeded

    CRS-2673: attempt to stop 'ora.gpnpd' on 'intsmdp01 '.

    CRS-2677: stop 'ora.gpnpd' on 'intsmdp01' succeeded

    CRS-2793: stop of the resources managed by Oracle high availability Services on 'intsmdp01' made

    CRS-4133: Oracle high availability Services was arrested.

    [root@intsmdp01 ~] #.

    Is there a way to bring down the entire stack of crs in all nodes of the cluster of a node?

    Is there a way to bring down the entire stack of crs in all nodes of the cluster of a node?

    The short answer is no.

    But it can be done using a utility like DSH (distributed shell)



    crsctl off crs - start/stop the entire stack of Oracle Clusterware on one node, including the OHASD process, this command should be used only on the local managed node...

    crsctl power cluster - managing start/stop battery Oracle Clusterware on the local node if you do not specify either - all or - n and nodes remote if n option or - all be specified, NOT including the OHASD process. You cannot start and stop clusterware stack without running OHASD process.

    Despite crsctl power crs manage all Oracle Clusterware stack on the local node crsctl power crs not allow you to manage the remote nodes, unlike crsctl power cluster which allows to manage all nodes, but that if the process of KARINE is runing.

    To manage Oracle Clusterware battery on remote nodes, the ohasd (Oracle high availability Services Daemon) should run on all managed nodes. (ie using crsctl start cluster - n , )

    So, if you try use crsctl start cluster node1 - n, node2 and node1 your local node and node1 or node2 OHASD don't not running this command will be fails.

  • Search all nodes of a given XML type

    Hi all

    I'm trying to find all nodes in my XML file that corresponds to a given type. I tried with "Get all matching nodes ' VI, but this only searches one level of the hierarchy of document´s at a time.

    Structure analysis of I m of the XML files is not known, it seems a bit complicated to guarantee an exhaustive search using this method. I m aware of the analysis of methods in c# and Python which can search for all nodes in the document, regardless of their level of hirarchical. Anyone know if there is a method like that in LabVIEW or any other reasonable solution?

    Kind regards

    Esteban

    Try the following xpath expression: //NodeName

    Ben64

  • Automatic configuration - stop application tier services on all nodes?

    Hi all

    Our application R12 application tier is on several nodes. My question is when we run on application layer Metn autoconfig, made you must stop the services from the application layer on all nodes of the application level? or just stop the services on the node on the automatic configuration service.

    Thank you and best regards,

    Yes, stop the application on all nodes (level apps) services before you run the automatic configuration. Then run auto configuration on each node one by one.

    Concerning

    Arizuddin

  • While patch should RAC I take backup of Oracle Home on all nodes?

    While patch should RAC I take backup of Oracle Home on all nodes? for 11 GR 2, BECAUSE I think that take bkp for each node that each House has its own file RSC, your thoughts?

    Hello

    Although the automatic steps, it is good practice to make a backup of the current ORACLE_HOME being patched (manual).

    Kind regards.

  • Rconfig fails with "DEST ARCHIVE LOG does not exist on all nodes of the cl.

    Dear Sir

    I am to convert a single instance database RAC
    Next Note:
    Using Oracle 10 g Release 2 Real Application Clusters and Automatic Storage Management with Oracle E-Business Suite Release 12
    DOC - ID: 388577.1


    the trial seems fine until I got this error.
    This directory is only one instance and the binary FCAC did not have a configuration database, and then how do I receive this error
    < Microsoft.PowerShell.Commands.GetChildItemCommand >
    U01/Oracle/Gold/DB/apps_st/Data DEST ARCHIVE LOG does not exist on all nodes of the cluster

    Please give us a solution.
    Thanks in advance.


    Here is the ConvertToRAC.xml

    [dgold@ebs64 u01] $ ConvertToRAC.xml more
    <? XML version = "1.0" encoding = "UTF-8"? >
    < n: RConfig xmlns:n = "http://www.oracle.com/rconfig".
    xmlns: xsi = "http://www.w3.org/2001/XMLSchema-instance".
    xsi: schemaLocation = "http://www.oracle.com/rconfig" >
    < n: ConvertToRAC >
    <!-check is a precheck to ensure that all prerequisites are met, before the con
    version is attempted. The allowed values are: YES | NO. | ONLY->
    < n: Convert check 'ONLY' = >
    <!-specify current database OracleHome no cars to-> SourceDBHome
    < n: SourceDBHome > /u01/oracle/GOLD/db/tech_st/10.2.0 < / n: SourceDBHome
    >
    <!-OracleHome specify where should be configured in the rac database. It may be in Africa
    me as a SourceDBHome->
    < n: TargetDBHome > / u01/ora/GOLD/db < / n: TargetDBHome >
    <!-SID specify no rac database and credentials. User with the sysdba role is req
    receipt to achieve a conversion->
    < n: SourceDBInfo SID 'OR' = >
    < n: Credentials >
    sys < n: User > < / n: User >
    Oracle of < n: Password > < / n: Password >
    SYSDBA < n: Role > < / n: Role >
    < / Credentials: n >
    < / n: SourceDBInfo >
    <!-ASMInfo element is required only if the active non-rac database uses ASM St
    Storm->
    < n: ASMInfo SID = '+ ASM1' >
    < n: Credentials >
    sys < n: User > < / n: User >
    ASM < n: Password > < / n: Password >
    SYSDBA < n: Role > < / n: Role >
    < / Credentials: n >
    < / n: ASMInfo >
    <!-specify the list of nodes that should have instances of cars running. LocalNode
    should be the first node in the nodelist. ->
    < n: NodeList >
    < name n: Node = "ebs64" / >
    < name n: Node = "ebs641" / >
    < / n: NodeList >
    <!-specifies the prefix for the rac instances. It may be same as instance name for no
    database n - cars or different. The instance number will be attached to this prefix
    . ->
    < n: InstancePrefix > RAC < / n: InstancePrefix >
    <!-specify the port for the listener is configured for the rac database. If ports ="",
    alistener existing on the local host will be used for the rac database. The listener will be
    be extended to all the nodes in the nodelist->
    < n: Listener port = "" / >
    <!-specify the type of storage to serve as rac database. The allowed values are
    CFS | ASM. The non-rac database must have the same type of storage. ->
    < n: SharedStorage type = "ASM" >
    <!-location of database field specify is configured for the rac database. If this fie
    LD is left blank, current storage will be used for the rac database. For CFS, this f
    ield will be the directory path. ->
    < n: TargetDatabaseArea > + DATA < / n: TargetDatabaseArea >
    <!-specify the Flash recovery area is set up for the rac database. If this field
    is left empty, current data base retrieval area no cars will be set to
    RAC database. If current database uses no recovery area, FCAC resulting
    database will not be a recovery zone. ->
    < n: TargetFlashRecoveryArea > + DATA < / n: TargetFlashRecoveryArea >
    < / n: SharedStorage >
    < / n: Convert >
    < / n: ConvertToRAC >
    < / n: RConfig >

    Hello

    Do you mean that it is no longer a problem?

    Kind regards
    Hussein

  • Looking for a way to mount an acquisition of data USB-6008

    Anyone has a suggestion for an acquisition of data USB-6008 mounted on a Panel. I use it for a system where it should not be loose. I have a few ideas, but hope that someone smarter already has a good solution.

    Thank you

    It is not a robust application, but the box will be moved and I don't want it put in the open air. I simply put a velcro pad on the back and the atttaching in this way. Should be all I need.

  • his IPS LED backlit screen 27vc: could not find a way to mount 27vc 27 "IPS LED monitor

    I recently bought the 27 "and 22" HP vc IPS LED backlit monitors. My intention was to mount them on a mount for two monitors that clips to the back of my desk or on the wall. Every company in the world sells the same media/materials for double monitors, but all have the traditional media that has 4 screw holes. Vc monitors do not have the ability to accept this type of Mount. I tried to call HP customer service and am redirected more than 5 times to the representatives who had no idea how mount it and didn't have an adapter. It is impossible that it is impossible to mount these monitors. Anyone know of a replacement product or an adapter that I can use to ride together?

    Hello

    HP has monitors with standard VESA mounting holes. My suggestion: take it to the shop and swap for the one that supports standard VESA otherwise must a good skill and a good drill.

    Kind regards.

  • Is there a way to see the timestamps of all messages in a conversation?

    I have time stamps for messages under tension, but I seem to only get a timestamp in early conversations. If more than one hour or so passes, then I will get another timestamp. But I would really like to see timestamps for each message. Is there a way to enable this feature or am I the GROUND?

    Thank you

    Matteo

    Put your finger on one of the messages, and then drag to the left. You should see the schedules for all messages.

  • Is there a way to disable the thumbnails in all except a few folders cache?

    Hello

    I am a certified technician A + and I have a question about the caching of thumbnails.  For reference, I read this thread and others like it.

    In order to avoid that the Explorer snaps records I want to change, I need to disable the caching of thumbnails in most of my files.  I already know how to do this.

    Question: Can I activate the thumbnail view in some cases? (NOT the folder 'types' such as video.  I mean just one folder.)

    This will enable Thumbnail caching throughout the Explorer so that I get a "file in use" errors in non-feuillete folders?

    FYI: I also do not put the taskbar thumbnail cache.  If the style of my theme doesn't have to make a difference... I hope.  For my clients who have slow computers, as I am normally to the themes of base anyway.  I also do not allow most programs create thumbnails for the taskbar (like Firefox).  I would like to know if there are other areas, I've not thought.

    Thanks for your help.

    Caching of thumbnails taskbar is a cache of the video card Aero (desktop window manager) and unrelated to the thumbnail of the file in terms of production and storage.

    But no, you can't activate the cache of thumbnails only in a specific folder, only in the ranges you already mentioned.  There is no just the feature to follow him on this level.

    Even with all the complete default values, you should not get a lock.  No matter how well-written program should quit the amendment is requested by using opportunistic to get out of the way locks when an application you use to do something with a file or a folder. But not all programs are also well written we would like.  Again I'd be curious to know what program you are using getting locked.  Thumbnails should not be able to cause this in Windows 7 and later versions.

Maybe you are looking for