Oracle 12c migration (performance before/after checks) - suggestion needed

Hello Experts;
We are going to upgrade our database to 12c from 10.2.0.4 via manual migration (direct migration is from 10.2.0..5) as per documentation:
http://www.oracle.com/technetwork/database/upgrade/upgrading-oracle-database-wp-12c-1896123.pdf
I cannot find any guidance or tutorial for testing - how we should check our processes (performance, resource usage) before and after.
Could you please suggest a way for testing before/after for our production processes?
Thanks in advanace for your reply.
Regards,
Bolo

What to test from performance perspective is very generic thing and answer lies in what is important in your application and what are the performance expectations around those important functionality.
Since applications could be of different nature like- OLTP, DSS. Your requirement could also differ accordingly. In short business must be looking at no impact situation from this upgrade. There are many ways it can be ensured. More accurate way means more money and effort. e.g. You can use Real application testing option to test the production like workload in 12c and see the impact. This requires effort around setting up and using this option and license fee. You can use other available tools like load runner etc.
In other option, you can do performance baseline on existing 10204 database  and then compare it with performance baseline in 12c database. Directly doing it in prod will make most sense since then you are actually doing it real data volume and workload but it is most risky in the situations where performance degrades for something very important.
Henceforth it is recommended to run the performance baselining on non-production environment which is production like. By production like, I meant having same data as production (to get this, database refresh is very much recommended), similar workload as production (this criteria becomes more important in OLTP systems) and similar H/W, OS and Database configuration as Production. If you can't do so then your approach is not risk free.
In any case, you will have option of quick database tuning using ADDM, SQL tuning advisor and AWR etc.
Hope it helps.
Thanks,
Abhi

Similar Messages

  • How To Profile Performance Before & After Installation Of A Solution

    Hi.
    We have third party and custom solutions that we want to install into our SharePoint 2010 Farm.
    We want to find out if there are any performance bottlenecks after the installation so we would like to profile our SharePoint 2010 Farm performance and SQL Server 2008 R2 performance before and after.
    How could we achieve this profile for our Farm overall and both SharePoint 2010 and SQL Server 2008 R2?

    Profiling comes in many flavors...
    - Load Capacity => load test... there are some (slightly outdated) load test templates that you can use to slam your SP environment and determine its load capacity
    - Average usage => performance monitors... use the built in performance monitors, or some dedicated systems (like MS System Center) include application-specific capabilities (System Center has Management Packs)
    - Solution Profiling => performance profilers... a bit harder, since it requires isolating the custom components and comparing data... use the SP dev tools, SQL profiles, logs, etc.
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • Oracle 11g Migration performance issue

    Hello,
    There a performance issue with Migration from Oracle 10g(10.2.0.5) to Oracle 11g(11.2.0.2).
    Its very simple statement hanging for more than a day and later found that query plan is very very bad. Example of the query is given below:
    INSERT INTO TABLE_XYZ
    SELECT F1,F2,F3
    FROM TABLE_AB, TABLE_BC
    WHERE F1=F4;
    While looking at cost in Explain plan :
    on 10g --> 62567
    0n 11g --> 9879652356776
    Strange thing is that
    Scenario 1: if I issue just query as shown below, will display rows immediately :
    SELECT F1,F2,F3
    FROM TABLE_AB, TABLE_BC
    WHERE F1=F4;
    Scenario 2: If I create a table as shown below, will work correctly.
    CREATE TABLE TABLE_XYZ AS
    SELECT F1,F2,F3
    FROM TABLE_AB, TABLE_BC
    WHERE F1=F4;
    What could be the issue here with INSERT INTO <TAB> SELECT <COL> FROM <TAB1>?

    Table:
    CREATE TABLE AVN_WRK_F_RENEWAL_TRANS_T
    "PKSRCSYSTEMID" NUMBER(4,0) NOT NULL ENABLE,
    "PKCOMPANYCODE" VARCHAR2(8 CHAR) NOT NULL ENABLE,
    "PKBRANCHCODE" VARCHAR2(8 CHAR) NOT NULL ENABLE,
    "PKLINEOFBUSINESS" NUMBER(4,0) NOT NULL ENABLE,
    "PKPRODUCINGOFFICELIST" VARCHAR2(2 CHAR) NOT NULL ENABLE,
    "PKPRODUCINGOFFICE" VARCHAR2(8 CHAR) NOT NULL ENABLE,
    "PKEXPIRYYR" NUMBER(4,0) NOT NULL ENABLE,
    "PKEXPIRYMTH" NUMBER(2,0) NOT NULL ENABLE,
    "CURRENTEXPIRYCOUNT" NUMBER,
    "CURRENTRENEWEDCOUNT" NUMBER,
    "PREVIOUSEXPIRYCOUNT" NUMBER,
    "PREVIOUSRENEWEDCOUNT" NUMBER
    SEGMENT CREATION IMMEDIATE PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE
    INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT
    TABLESPACE "XYZ" ;
    Explain Plan(With Insert Statement and Query):_
    INSERT STATEMENT, GOAL = ALL_ROWS               Cost=9110025395866     Cardinality=78120     Bytes=11952360
    LOAD TABLE CONVENTIONAL     Object owner=ODS     Object name=AVN_WRK_F_RENEWAL_TRANS               
    NESTED LOOPS OUTER               Cost=9110025395866     Cardinality=78120     Bytes=11952360
    TABLE ACCESS FULL     Object owner=ODS     Object name=AVN_WRK_F_RENEWAL_TRANS_1ST     Cost=115     Cardinality=78120     Bytes=2499840
    VIEW PUSHED PREDICATE     Object owner=ODS          Cost=116615788     Cardinality=1     Bytes=121
    SORT GROUP BY               Cost=116615788     Cardinality=3594     Bytes=406122
    VIEW     Object owner=SYS     Object name=VW_DAG_1     Cost=116615787     Cardinality=20168     Bytes=2278984
    SORT GROUP BY               Cost=116615787     Cardinality=20168     Bytes=4073936
    NESTED LOOPS OUTER               Cost=116614896     Cardinality=20168     Bytes=4073936
    VIEW     Object owner=SYS          Cost=5722     Cardinality=20168     Bytes=2157976
    NESTED LOOPS               Cost=5722     Cardinality=20168     Bytes=2097472
    HASH JOIN               Cost=924     Cardinality=1199     Bytes=100716
    NESTED LOOPS                         
    NESTED LOOPS               Cost=181     Cardinality=1199     Bytes=80333
    TABLE ACCESS BY INDEX ROWID     Object owner=ODS     Object name=INWARDSPOLICYDETAILS     Cost=159     Cardinality=1199     Bytes=39567
    INDEX RANGE SCAN     Object owner=ODS     Object name=IX_INWPOLDTLS_SYSCOMPANYBRANCH     Cost=7     Cardinality=1199     
    INDEX UNIQUE SCAN     Object owner=ODS     Object name=PK_AVN_D_MASTERPOLICYDETAILS     Cost=0     Cardinality=1     
    TABLE ACCESS BY INDEX ROWID     Object owner=ODS     Object name=AVN_D_MASTERPOLICYDETAILS     Cost=1     Cardinality=1     Bytes=34
    TABLE ACCESS FULL     Object owner=ODS     Object name=INWARDSPOLICYLOBMAPPING     Cost=741     Cardinality=288498     Bytes=4904466
    VIEW PUSHED PREDICATE     Object owner=ODS          Cost=4     Cardinality=1     Bytes=20
    FILTER                         
    SORT AGGREGATE                    Cardinality=1     Bytes=21
    TABLE ACCESS BY GLOBAL INDEX ROWID     Object owner=ODS     Object name=AVN_F_TRANSACTIONS     Cost=4     Cardinality=1     Bytes=21
    INDEX RANGE SCAN     Object owner=ODS     Object name=PK_AVN_F_TRANSACTIONS     Cost=3     Cardinality=1     
    VIEW PUSHED PREDICATE     Object owner=ODS          Cost=5782     Cardinality=1     Bytes=95
    SORT GROUP BY               Cost=5782     Cardinality=2485     Bytes=216195
    VIEW     Object owner=SYS     Object name=VW_DAG_0     Cost=5781     Cardinality=2485     Bytes=216195
    SORT GROUP BY               Cost=5781     Cardinality=2485     Bytes=278320
    HASH JOIN               Cost=5780     Cardinality=2485     Bytes=278320
    VIEW     Object owner=SYS     Object name=VW_GBC_15     Cost=925     Cardinality=1199     Bytes=73139
    SORT GROUP BY               Cost=925     Cardinality=1199     Bytes=100716
    HASH JOIN               Cost=924     Cardinality=1199     Bytes=100716
    NESTED LOOPS                         
    NESTED LOOPS               Cost=181     Cardinality=1199     Bytes=80333
    TABLE ACCESS BY INDEX ROWID     Object owner=ODS     Object name=INWARDSPOLICYDETAILS     Cost=159     Cardinality=1199     Bytes=39567
    INDEX RANGE SCAN     Object owner=ODS     Object name=IX_INWPOLDTLS_SYSCOMPANYBRANCH     Cost=7     Cardinality=1199     
    INDEX UNIQUE SCAN     Object owner=ODS     Object name=PK_AVN_D_MASTERPOLICYDETAILS     Cost=0     Cardinality=1     
    TABLE ACCESS BY INDEX ROWID     Object owner=ODS     Object name=AVN_D_MASTERPOLICYDETAILS     Cost=1     Cardinality=1     Bytes=34
    TABLE ACCESS FULL     Object owner=ODS     Object name=INWARDSPOLICYLOBMAPPING     Cost=741     Cardinality=288498     Bytes=4904466
    VIEW     Object owner=SYS     Object name=VW_GBF_16     Cost=4854     Cardinality=75507     Bytes=3850857
    SORT GROUP BY               Cost=4854     Cardinality=75507     Bytes=2340717
    VIEW     Object owner=ODS          Cost=4207     Cardinality=75507     Bytes=2340717
    SORT GROUP BY               Cost=4207     Cardinality=75507     Bytes=1585647
    PARTITION HASH ALL               Cost=3713     Cardinality=75936     Bytes=1594656
    TABLE ACCESS FULL     Object owner=ODS     Object name=AVN_F_TRANSACTIONS     Cost=3713     Cardinality=75936     Bytes=1594656
    Explain Plan(Only Query):_
    SELECT STATEMENT, GOAL = ALL_ROWS               Cost=62783     Cardinality=89964     Bytes=17632944
    HASH JOIN OUTER               Cost=62783     Cardinality=89964     Bytes=17632944
    TABLE ACCESS FULL     Object owner=ODS     Object name=AVN_WRK_F_RENEWAL_TRANS_1ST     Cost=138     Cardinality=89964     Bytes=2878848
    VIEW     Object owner=ODS          Cost=60556     Cardinality=227882     Bytes=37372648
    HASH GROUP BY               Cost=60556     Cardinality=227882     Bytes=26434312
    VIEW     Object owner=SYS     Object name=VW_DAG_1     Cost=54600     Cardinality=227882     Bytes=26434312
    HASH GROUP BY               Cost=54600     Cardinality=227882     Bytes=36005356
    HASH JOIN OUTER               Cost=46664     Cardinality=227882     Bytes=36005356
    VIEW     Object owner=SYS          Cost=18270     Cardinality=227882     Bytes=16635386
    HASH JOIN               Cost=18270     Cardinality=227882     Bytes=32587126
    HASH JOIN               Cost=12147     Cardinality=34667     Bytes=2912028
    HASH JOIN               Cost=10076     Cardinality=34667     Bytes=2322689
    TABLE ACCESS FULL     Object owner=ODS     Object name=AVN_D_MASTERPOLICYDETAILS     Cost=137     Cardinality=34667     Bytes=1178678
    TABLE ACCESS FULL     Object owner=ODS     Object name=INWARDSPOLICYDETAILS     Cost=9934     Cardinality=820724     Bytes=27083892
    TABLE ACCESS FULL     Object owner=ODS     Object name=INWARDSPOLICYLOBMAPPING     Cost=741     Cardinality=866377     Bytes=14728409
    VIEW     Object owner=ODS          Cost=5195     Cardinality=227882     Bytes=13445038
    HASH GROUP BY               Cost=5195     Cardinality=227882     Bytes=4785522
    PARTITION HASH ALL               Cost=3717     Cardinality=227882     Bytes=4785522
    TABLE ACCESS FULL     Object owner=ODS     Object name=AVN_F_TRANSACTIONS     Cost=3717     Cardinality=227882     Bytes=4785522
    VIEW     Object owner=ODS          Cost=26427     Cardinality=227882     Bytes=19369970
    HASH GROUP BY               Cost=26427     Cardinality=227882     Bytes=18686324
    VIEW     Object owner=SYS     Object name=VW_DAG_0     Cost=26427     Cardinality=227882     Bytes=18686324
    HASH GROUP BY               Cost=26427     Cardinality=227882     Bytes=25294902
    HASH JOIN               Cost=20687     Cardinality=227882     Bytes=25294902
    VIEW     Object owner=SYS     Object name=VW_GBC_15     Cost=12826     Cardinality=34667     Bytes=2080020
    HASH GROUP BY               Cost=12826     Cardinality=34667     Bytes=2912028
    HASH JOIN               Cost=12147     Cardinality=34667     Bytes=2912028
    HASH JOIN               Cost=10076     Cardinality=34667     Bytes=2322689
    TABLE ACCESS FULL     Object owner=ODS     Object name=AVN_D_MASTERPOLICYDETAILS     Cost=137     Cardinality=34667     Bytes=1178678
    TABLE ACCESS FULL     Object owner=ODS     Object name=INWARDSPOLICYDETAILS     Cost=9934     Cardinality=820724     Bytes=27083892
    TABLE ACCESS FULL     Object owner=ODS     Object name=INWARDSPOLICYLOBMAPPING     Cost=741     Cardinality=866377     Bytes=14728409
    VIEW     Object owner=SYS     Object name=VW_GBF_16     Cost=7059     Cardinality=227882     Bytes=11621982
    HASH GROUP BY               Cost=7059     Cardinality=227882     Bytes=6836460
    VIEW     Object owner=ODS          Cost=5195     Cardinality=227882     Bytes=6836460
    HASH GROUP BY               Cost=5195     Cardinality=227882     Bytes=4785522
    PARTITION HASH ALL               Cost=3717     Cardinality=227882     Bytes=4785522
    TABLE ACCESS FULL     Object owner=ODS     Object name=AVN_F_TRANSACTIONS     Cost=3717     Cardinality=227882     Bytes=4785522

  • Oracle Certified PL/SQL Developer Associate (OCA) suggestions needed

    Hi,i'm currently working as pl/sql developer and i'm planing to do OCA certification..
    i'm currently working in 10g..can i take 11g OCA straight away or do i have to go for 9i or 10g?
    Some where in online i read that after three
    exams in 9i i.e 1z0-007, 1z0-031 and 1z0-032.
    Then we can upgrade ourself to 11g OCP just by passing one examOracle *1Z0
    -055* is that possible?
    Can i have OCA in 9i and OCP in 11g
    Please give your suggestions.

    user13710379 wrote:
    Hi,i'm currently working as pl/sql developer and i'm planing to do OCA certification..
    i'm currently working in 10g..can i take 11g OCA straight away or do i have to go for 9i or 10g?
    Some where in online i read that after three
    exams in 9i i.e 1z0-007, 1z0-031 and 1z0-032.
    Then we can upgrade ourself to 11g OCP just by passing one examOracle *1Z0
    -055* is that possible?
    Can i have OCA in 9i and OCP in 11g
    Please give your suggestions.There are many many different OCA Certifications.
    From the title of your post you seem to be seeking an PL/SQLOCA certification (obained by fr instance 1z0-051 + 1z0-144 (though there are other options).
    However the exams you mentaion typically refer to DBA Certifications.
    Vist Http://certification.oracle.com ....
    ... Become familiar with information under PREPARATION
    ... Examine CERTIFICATION PATHS ... ALL CERTIFICATIONS (PL//SQL comes under middleware )
    ... In particular:: http://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=155

  • Can migration assistant resume after being cancelled

    I'm using Migration Assistant to transfer data from my old MacBook Pro to my new MacBook Pro.  Each have same Mac OX 10.6.8.  I've connected them through a LinkSys router.  Migration ran for about 3 hours and 39 minutes before completion prompted that a there was a problem with the network.  I double checked all the connections and even replaced the router and the error message continued to appear.  I have no choice at this point but to cancel the migration.
    Before I do, I need to know that assuming I do have a network issue and get it fixed, will I be able to resume the migration from where it left off or repeat the whole process again?
    Thanks.

    No, it will start from scratch. You can always uncheck items that have already migrated but this removes a whole category from the process.
    I suggest you connect the two computers by Firewire cable rather than use your network. The direct connection is much faster and more reliable. You only need a suitable Firewire cable and use Target Disk Mode on the old computer - Transferring files between two computers using FireWire.

  • A conflicting local user account as indicated was found on the identified nodes Oracle 12c GRID runclufy check

    Dear Team,
    Oracle 12c GRID Runclufy check failing with below error. Even After Changing Local Built in Administrator User Name also same failure reporting. Kindly help to resolve this Issue and Provide steps to Avoid this conflict.
    Windows user account consistency check across nodes - Checks consistency of Windows user account across nodes  Error:
    PRVG-11818 : Windows user "MDCCOMMONLDAP\Administrator" is a domain user but a conflicting local user account was found on nodes "sep03vvm-401,sep03vvm-402"  -
    Cause:  A conflicting local user account as indicated was found on the identified nodes.  - Action:  Ensure that the Windows user account used for Oracle installation and configuration is defined as a domain user on all nodes or as a local user on all nodes, but not a mixture of the two.
    Check Failed on Nodes: [sep03vvm-402,  sep03vvm-401]
    c:\Oracle12c_software\Oracle12c_grid\grid>runcluvfy.bat stage -pre crsinst -verbose -n SEP03VVM-401,SEP03VVM-402
    Performing pre-checks for cluster services setup
    Checking node reachability...
    Check: Node reachability from node "sep03vvm-401"
      Destination Node                      Reachable?
      sep03vvm-401                          yes
      sep03vvm-402                          yes
    Result: Node reachability check passed from node "sep03vvm-401"
    Checking user equivalence...
    Check: User equivalence for user "Administrator"
      Node Name                             Status
      sep03vvm-402                          passed
      sep03vvm-401                          passed
    Result: User equivalence check passed for user "Administrator"
    Checking node connectivity...
    Interface information for node "sep03vvm-402"
    Name   IP Address      Subnet          Gateway         Def. Gateway    HW Addre
    ss        MTU
    PublicLAN 153.71.45.202   153.71.45.0     On-link         153.71.45.254   00:50
    :56:91:05:30 1500
    PrivateLAN 10.10.10.15     10.10.10.0      On-link         153.71.45.254   00:5
    0:56:91:75:1B 1500
    6TO4 Adapter 2002:9947:2dca::9947:2dca 2002::
            00:00:00:00:00:00 1280
    Interface information for node "sep03vvm-401"
    Name   IP Address      Subnet          Gateway         Def. Gateway    HW Addre
    ss        MTU
    PublicLAN 153.71.45.201   153.71.45.0     On-link         153.71.45.254   00:50
    :56:91:56:B6 1500
    PrivateLAN 10.10.10.14     10.10.10.0      On-link         153.71.45.254   00:5
    0:56:91:60:99 1500
    6TO4 Adapter 2002:9947:2dc9::9947:2dc9 2002::
            00:00:00:00:00:00 1280
    Check: Node connectivity of subnet "153.71.45.0"
      Source                          Destination                     Connected?
      sep03vvm-402[153.71.45.202]     sep03vvm-401[153.71.45.201]     yes
    Result: Node connectivity passed for subnet "153.71.45.0" with node(s) sep03vvm-
    402,sep03vvm-401
    Check: TCP connectivity of subnet "153.71.45.0"
      Source                          Destination                     Connected?
      sep03vvm-402 : 153.71.45.202    sep03vvm-402 : 153.71.45.202    passed
      sep03vvm-401 : 153.71.45.201    sep03vvm-402 : 153.71.45.202    passed
      sep03vvm-402 : 153.71.45.202    sep03vvm-401 : 153.71.45.201    passed
      sep03vvm-401 : 153.71.45.201    sep03vvm-401 : 153.71.45.201    passed
    Result: TCP connectivity check passed for subnet "153.71.45.0"
    Check: Node connectivity of subnet "10.10.10.0"
      Source                          Destination                     Connected?
      sep03vvm-402[10.10.10.15]       sep03vvm-401[10.10.10.14]       yes
    Result: Node connectivity passed for subnet "10.10.10.0" with node(s) sep03vvm-4
    02,sep03vvm-401
    Check: TCP connectivity of subnet "10.10.10.0"
      Source                          Destination                     Connected?
      sep03vvm-402 : 10.10.10.15      sep03vvm-402 : 10.10.10.15      passed
      sep03vvm-401 : 10.10.10.14      sep03vvm-402 : 10.10.10.15      passed
      sep03vvm-402 : 10.10.10.15      sep03vvm-401 : 10.10.10.14      passed
      sep03vvm-401 : 10.10.10.14      sep03vvm-401 : 10.10.10.14      passed
    Result: TCP connectivity check passed for subnet "10.10.10.0"
    Check: Node connectivity of subnet "2002::"
      Source                          Destination                     Connected?
      sep03vvm-402[2002:9947:2dca::9947:2dca]  sep03vvm-401[2002:9947:2dc9::9947:2dc
    9]  yes
    Result: Node connectivity passed for subnet "2002::" with node(s) sep03vvm-402,s
    ep03vvm-401
    Check: TCP connectivity of subnet "2002::"
      Source                          Destination                     Connected?
      sep03vvm-402 : 2002:9947:2dca::9947:2dca  sep03vvm-402 : 2002:9947:2dca::9947:
    2dca  passed
      sep03vvm-401 : 2002:9947:2dc9::9947:2dc9  sep03vvm-402 : 2002:9947:2dca::9947:
    2dca  passed
      sep03vvm-402 : 2002:9947:2dca::9947:2dca  sep03vvm-401 : 2002:9947:2dc9::9947:
    2dc9  passed
      sep03vvm-401 : 2002:9947:2dc9::9947:2dc9  sep03vvm-401 : 2002:9947:2dc9::9947:
    2dc9  passed
    Result: TCP connectivity check passed for subnet "2002::"
    Interfaces found on subnet "153.71.45.0" that are likely candidates for VIP are:
    sep03vvm-402 PublicLAN:153.71.45.202
    sep03vvm-401 PublicLAN:153.71.45.201
    Interfaces found on subnet "2002::" that are likely candidates for VIP are:
    sep03vvm-402 6TO4 Adapter:2002:9947:2dca::9947:2dca
    sep03vvm-401 6TO4 Adapter:2002:9947:2dc9::9947:2dc9
    Interfaces found on subnet "10.10.10.0" that are likely candidates for a private
    interconnect are:
    sep03vvm-402 PrivateLAN:10.10.10.15
    sep03vvm-401 PrivateLAN:10.10.10.14
    Checking subnet mask consistency...
    Subnet mask consistency check passed for subnet "153.71.45.0".
    Subnet mask consistency check passed for subnet "10.10.10.0".
    Subnet mask consistency check passed for subnet "2002::".
    Subnet mask consistency check passed.
    Result: Node connectivity check passed
    Checking multicast communication...
    Checking subnet "153.71.45.0" for multicast communication with multicast group "
    224.0.0.251"...
    Check of subnet "153.71.45.0" for multicast communication with multicast group "
    224.0.0.251" passed.
    Check of multicast communication passed.
    Checking the status of Windows firewall
      Node Name     Enabled?                  Comment
      sep03vvm-402  no                        passed
      sep03vvm-401  no                        passed
    Result: Windows firewall verification check passed
    Check: Total memory
      Node Name     Available                 Required                  Status
      sep03vvm-402  4.9996GB (5242420.0KB)    4GB (4194304.0KB)         passed
      sep03vvm-401  4.9996GB (5242420.0KB)    4GB (4194304.0KB)         passed
    Result: Total memory check passed
    Check: Available memory
      Node Name     Available                 Required                  Status
      sep03vvm-402  3.6612GB (3839028.0KB)    50MB (51200.0KB)          passed
      sep03vvm-401  3.3152GB (3476244.0KB)    50MB (51200.0KB)          passed
    Result: Available memory check passed
    Check: Swap space
      Node Name     Available                 Required                  Status
      sep03vvm-402  5.8121GB (6094388.0KB)    4.9996GB (5242420.0KB)    passed
      sep03vvm-401  5.8121GB (6094388.0KB)    4.9996GB (5242420.0KB)    passed
    Result: Swap space check passed
    Check: Free disk space for "sep03vvm-402:C:\Windows\temp"
      Path              Node Name     Mount point   Available     Required      Stat
    us
      C:\Windows\temp   sep03vvm-402  C             82.6484GB     1GB           pass
    ed
    Result: Free disk space check passed for "sep03vvm-402:C:\Windows\temp"
    Check: Free disk space for "sep03vvm-401:C:\Windows\temp"
      Path              Node Name     Mount point   Available     Required      Stat
    us
      C:\Windows\temp   sep03vvm-401  C             82.6112GB     1GB           pass
    ed
    Result: Free disk space check passed for "sep03vvm-401:C:\Windows\temp"
    Check: System architecture
      Node Name     Available                 Required                  Status
      sep03vvm-402  64-bit                    64-bit                    passed
      sep03vvm-401  64-bit                    64-bit                    passed
    Result: System architecture check passed
    Checking length of value of environment variable "PATH"
    Check: Length of value of environment variable "PATH"
      Node Name         Set?          Maximum Length  Actual Length  Comment
      sep03vvm-402      yes           5119          100           passed
      sep03vvm-401      yes           5119          129           passed
    Result: Check for length of value of environment variable "PATH" passed.
    Checking availability of ports "6200,6100" required for component "Oracle Notifi
    cation Service (ONS)"
      Node Name         Port Number   Protocol      Available     Status
      sep03vvm-402      6200          TCP           yes           successful
      sep03vvm-401      6200          TCP           yes           successful
      sep03vvm-402      6100          TCP           yes           successful
      sep03vvm-401      6100          TCP           yes           successful
    Result: Port availability check passed for ports "6200,6100"
    Starting Clock synchronization checks using Network Time Protocol(NTP)...
    Checking daemon liveness...
    Check: Liveness for "W32Time"
      Node Name                             Running?
      sep03vvm-402                          yes
      sep03vvm-401                          yes
    Result: Liveness check passed for "W32Time"
    Check for NTP daemon or service alive passed on all nodes
    Result: Clock synchronization check using Network Time Protocol(NTP) passed
    Checking if current user is a domain user...
    Check: If user "Administrator" is a domain user
    Result: User "MDCCOMMONLDAP\Administrator" is a part of the domain "MDCCOMMONLDA
    P"
    Check: Time zone consistency
    Result: Time zone consistency check passed
    Checking for status of Automount feature
      Node Name     Enabled?                  Comment
      sep03vvm-402  yes                       passed
      sep03vvm-401  yes                       passed
    Result: Check for status of Automount feature passed
    Checking consistency of current Windows user account across all nodes
    PRVG-11818 : Windows user "MDCCOMMONLDAP\Administrator" is a domain user but a c
    conflicting local user account was found on nodes "sep03vvm-402"
    Result: Check for Windows user account "MDCCOMMONLDAP\Administrator" consistency
    failed
    Pre-check for cluster services setup was unsuccessful.
    Checks did not pass for the following node(s):
            sep03vvm-402

    SEVERE: [FATAL] [INS-30131] Initial setup required for the execution of installer validations failed.
       CAUSE: Failed to access the temporary location.
       ACTION: Ensure that the current user has required permissions to access the temporary location.
    Are you using a supported OS version (listed in the Install Doc) and following all of the steps in the Install Doc ?
    HTH
    Srini

  • System performance degrades after server migration ???

    Hi Friends,
    System performance degrades after we migrate our BW 3.5 Server (Production) from UK to Germany.
    for details :
    1. Data is coming to Informatica server from Informatica its going to POSDM Server (Point of Sales Data Management) from POSDM we are running pipes and data is coming to BW (Delta Queqe)
    so before Server Migration it was taking 2 Hrs to load 4 Million Records
    After Server Migration it is taking 4 Hrs.
    Please help out to find the reason for this.
    Note : Server Ram , Hard Disk , Speed is same on both Servers
    Thanks
    Asim

    Note : Server Ram , Hard Disk , Speed is same on both Servers
    Are you cahnge any application or database parameter (the OS and all patch'es are the same?)
    How you doing migration? Very low information... Are you check the network configuration are the same( for example check the network speed 1G or 100MB).
    Are you trying to analyse the St03N and St04 t-codes?
    Regards.

  • Performance Hit After Oracle Database Upgrade to 10.2.0.4

    We have a couple dozen workbooks that took this performance hit after the upgrade of the database/migration to a new server. Worksheets that executed in the ten second range are now running for hours or simply not finishing. We took the new server factor out of the equation by rolling back the database to 10.2.0.3 where a test EUL resides and the problem was resolved. Has anyone seen this issue? Does anyone have an suggestions? An early reply would be greatly appreciated.
    Thanks,
    Jerre

    Rod,
    Thanks for the quick reply. We are looking at the different plans and modifying the optimizer settings, switching back and forth, as we speak. We are now starting with the hints. Currently our Server 'optimizer_mode' parameter is ALL_ROWS. We are planning to change the to 'Choose' and see what happens. The workbooks that are impacted are on our oldest business areas of Finance and HR. The former setup was borrowed from another school for a quick, low cost start up. The latter was thrown together by novices. Our true datamarts developed by knowledgeable personnel with star schemas are not impacted. Of course we are planning on redoing the older business areas but time, personnel and money matters slow things down. It is these workbooks on the older business areas that are greatly affected by the migrations and upgrade. We eventually get things to settle down but past actions do not always have the same resolution with newer and better servers and upgrades.
    Thanks,
    Jerre

  • Can i use "Oracle Database 12c: Performance Management and Tuning " training for getting certification on "Oracle Database 11g: Performance Tuning 1Z0-054"

    i have taken "Oracle Database 12c: Performance Management and Tuning new" training from oracle university. Now i would like to get certified on "Oracle Database 11g: Performance Tuning 1Z0-054" exam. Is it possible ?

    I essentially endorse and refer you to Matthews' and John's post above.
    I would differ with slightly with Matthew because my guess is you would often be able to use like for like 12c training for an 11g certification ( I believe there are precedents).  BEFORE ANYONE ASKS THE OTHER WAY DOESN'T HAPPEN.
    .... but totally concur with Matthew you would ill advised to procede on that basis without one of:
    - This being advertised as possible on the website : e.g. https://education.oracle.com/pls/web_prod-plq-dad/db_pages.getpage?page_id=654&get_params=p_id:169 ... option 2 show courses.
    - Confirmation from Brandye
    - Confirmation from an Oracle Certification Support Web Ticket ( http://education.oracle.com/pls/eval-eddap-dcd/OU_SUPPORT_OCP.home?p_source=OCP )
    ... The more common (and in my opinion usually better) way would be get your 11g DBA OCP ( or higher first) and then take the 1z0-054.  I am almost certain they will accept your 12c course for the 11g DBA OCP.
    If you are choosing the route of not being a 11g (or 12c ) DBA OCP first but are on option 2 and relying on the course for certification then the issue is more in the balance and you are even more strongly advised to get confirmation before proceding (remember if the rules need to be changed for you only then any profit out of the exam is lost).
    In general my understanding is Oracle would prefer to encourage people to train on the latest version of product that is available for training  and will prefer to avoid restrictions which would cause you to train at a lower version.  ( This is simply my guess at Oracle University Policy ... personal opinion only).
    Having said all I have said I'd encourage you to go with the advice of the earlier two posts.

  • Creation of Schema in Oracle after checking

    All,
    My sincere apologies to post this here, but I did not find the answer anywhere.
    I have a task to convert some SQL Server Scripts to Oracle.
    The below is the sql server script to create the schema called HRMS after checking whether it is existing or not.
    IF NOT EXISTS (SELECT [schema_id] FROM [sys].[schemas] WHERE [name] = N'HRMS')
    BEGIN
    EXECUTE ('CREATE SCHEMA [HRMS] AUTHORIZATION [dbo];');
    END
    GO
    Can we have any similar kind of solution / statement in oracle. Please help me.
    When I read in the Oracle Docs, CREATE SCHEMA statement is just to bundle multiple sql statements to a single transaction.
    http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_6014.htm
    2)
    IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[HRMS].[TBL_PMapping]') AND type in (N'U'))
    DROP TABLE [HRMS].[TBL_PMapping]
    GO
    This statement is to check whether the table called 'TBL_PMapping is exists or not and, if exists then drop it. Please suggest me a similar approach/ how to achieve the same with in Oracle.
    First need to check whether the table exists or not, if exists then drop it other wise create it.
    I would request for your kind help in this. Thank you very much in advance.
    Thanks,

    968217 wrote:
    All,
    My sincere apologies to post this here, but I did not find the answer anywhere.
    I have a task to convert some SQL Server Scripts to Oracle.
    The below is the sql server script to create the schema called HRMS after checking whether it is existing or not.
    IF NOT EXISTS (SELECT [schema_id] FROM [sys].[schemas] WHERE [name] = N'HRMS')
    BEGIN
    EXECUTE ('CREATE SCHEMA [HRMS] AUTHORIZATION [dbo];');
    END
    GO
    Can we have any similar kind of solution / statement in oracle. Please help me.
    When I read in the Oracle Docs, CREATE SCHEMA statement is just to bundle multiple sql statements to a single transaction.
    http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_6014.htm
    2)
    IF EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[HRMS].[TBL_PMapping]') AND type in (N'U'))
    DROP TABLE [HRMS].[TBL_PMapping]
    GO
    This statement is to check whether the table called 'TBL_PMapping is exists or not and, if exists then drop it. Please suggest me a similar approach/ how to achieve the same with in Oracle.
    First need to check whether the table exists or not, if exists then drop it other wise create it.Oracle is NOT SQL Server, and doesn't work like SQL Server. It may be acceptable in SQL Server to drop and create tables on-the-fly, but in Oracle it's considered poor database design. There shouldn't be any need to drop and recreate tables at run time, and it would likely drop dependencies from other database objects or triggers, constraints, indexes, grants etc.
    If you need a "temporary table" in Oracle, you create a Global Temporary Table just once and use it for your session. This is a special kind of table where the data in it is only visible to the session that inserts it (multiple sessions only see their own data), and that data is automatically removed upon commit or when the session ends, depending on how you configure the table at the time of creation.

  • I can't burn a cd of my own created music. I either get the error 4261, or after "Checking media" the process stops and nothing further happens. Have tried different burn speeds and cds. Have re-installed iTunes.Any suggestions please?

    I can't burn a cd of my own created music. I either get the error 4261, or after "Checking media" the process stops and nothing further happens. Have tried different burn speeds and cds. Have re-installed iTunes.Any suggestions please?
    wm0203

    Sounds like the CD drive died. Luckily they cost next to nothing to replace. Or get an external LaCie instead. I have a dual G4 1.25 and the CD drive was always so anemic I use a LaCie Porsche with it.

  • How to validate performance before and after turn on Trace Flag 2371

    Hi Friends
    I have 5 TB DB for AX.
    What homework I am supposed to follow to collect some evidence of performance improvement after I turn on -T2371
    Regards,
    Anjan

    Once you have
    turned on the traces, you’re probably going to want to determine whether the trace is actually running. To do this, you can issue the
    DBCC TRACESTATUS command. One method to issue the command is to interrogate whether a given trace is running:
    DBCC TRACESTATUS (3604)
    If you want to see all traces that apply to the connection, run the command with the -1 parameter:
    DBCC TRACESTATUS (-1)
    DBCC execution completed. If DBCC printed error messages, contact your system administrator. Your instance of SQL Server
    should not have trace flags turned on indefinitely, unless you have been instructed by Microsoft Product Support to do so.
    I hope this might help you a bit.

  • Pre-loading Oracle text in memory with Oracle 12c

    There is a white paper from Roger Ford that explains how to load the Oracle index in memory : http://www.oracle.com/technetwork/database/enterprise-edition/mem-load-082296.html
    In our application, Oracle 12c, we are indexing a big XML field (which is stored as XMLType with storage secure file) with the PATH_SECTION_GROUP. If I don't load the I table (DR$..$I) into memory using the technique explained in the white paper then I cannot have decent performance (and especially not predictable performance, it looks like if the blocks from the TOKEN_INFO columns are not memory then performance can fall sharply)
    But after migrating to oracle 12c, I got a different problem, which I can reproduce: when I create the index it is relatively small (as seen with ctx_report.index_size) and by applying the technique from the whitepaper, I can pin the DR$ I table into memory. But as soon as I do a ctx_ddl.optimize_index('Index','REBUILD') the size becomes much bigger and I can't pin the index in memory. Not sure if it is bug or not.
    What I found as work-around is to build the index with the following storage options:
    ctx_ddl.create_preference('TEST_STO','BASIC_STORAGE');
    ctx_ddl.set_attribute ('TEST_STO', 'BIG_IO', 'YES' );
    ctx_ddl.set_attribute ('TEST_STO', 'SEPARATE_OFFSETS', 'NO' );
    so that the token_info column will be stored in a secure file. Then I can change the storage of that column to put it in the keep buffer cache, and write a procedure to read the LOB so that it will be loaded in the keep cache. The size of the LOB column is more or less the same as when creating the index without the BIG_IO option but it remains constant even after a ctx_dll.optimize_index. The procedure to read the LOB and to load it into the cache is very similar to the loaddollarR procedure from the white paper.
    Because of the SDATA section, there is a new DR table (S table) and an IOT on top of it. This is not documented in the white paper (the white paper was written for Oracle 10g). In my case this DR$ S table is much used, and the IOT also, but putting it in the keep cache is not as important as the token_info column of the DR I table. A final note: doing SEPARATE_OFFSETS = 'YES' was very bad in my case, the combined size of the two columns is much bigger than having only the TOKEN_INFO column and both columns are read.
    Here is an example on how to reproduce the problem with the size increasing when doing ctx_optimize
    1. create the table
    drop table test;
    CREATE TABLE test
    (ID NUMBER(9,0) NOT NULL ENABLE,
    XML_DATA XMLTYPE
    XMLTYPE COLUMN XML_DATA STORE AS SECUREFILE BINARY XML (tablespace users disable storage in row);
    2. insert a few records
    insert into test values(1,'<Book><TITLE>Tale of Two Cities</TITLE>It was the best of times.<Author NAME="Charles Dickens"> Born in England in the town, Stratford_Upon_Avon </Author></Book>');
    insert into test values(2,'<BOOK><TITLE>The House of Mirth</TITLE>Written in 1905<Author NAME="Edith Wharton"> Wharton was born to George Frederic Jones and Lucretia Stevens Rhinelander in New York City.</Author></BOOK>');
    insert into test values(3,'<BOOK><TITLE>Age of innocence</TITLE>She got a prize for it.<Author NAME="Edith Wharton"> Wharton was born to George Frederic Jones and Lucretia Stevens Rhinelander in New York City.</Author></BOOK>');
    3. create the text index
    drop index i_test;
      exec ctx_ddl.create_section_group('TEST_SGP','PATH_SECTION_GROUP');
    begin
      CTX_DDL.ADD_SDATA_SECTION(group_name => 'TEST_SGP', 
                                section_name => 'SData_02',
                                tag => 'SData_02',
                                datatype => 'varchar2');
    end;
    exec ctx_ddl.create_preference('TEST_STO','BASIC_STORAGE');
    exec  ctx_ddl.set_attribute('TEST_STO','I_TABLE_CLAUSE','tablespace USERS storage (initial 64K)');
    exec  ctx_ddl.set_attribute('TEST_STO','I_INDEX_CLAUSE','tablespace USERS storage (initial 64K) compress 2');
    exec  ctx_ddl.set_attribute ('TEST_STO', 'BIG_IO', 'NO' );
    exec  ctx_ddl.set_attribute ('TEST_STO', 'SEPARATE_OFFSETS', 'NO' );
    create index I_TEST
      on TEST (XML_DATA)
      indextype is ctxsys.context
      parameters('
        section group   "TEST_SGP"
        storage         "TEST_STO"
      ') parallel 2;
    4. check the index size
    select ctx_report.index_size('I_TEST') from dual;
    it says :
    TOTALS FOR INDEX TEST.I_TEST
    TOTAL BLOCKS ALLOCATED:                                                104
    TOTAL BLOCKS USED:                                                      72
    TOTAL BYTES ALLOCATED:                                 851,968 (832.00 KB)
    TOTAL BYTES USED:                                      589,824 (576.00 KB)
    4. optimize the index
    exec ctx_ddl.optimize_index('I_TEST','REBUILD');
    and now recompute the size, it says
    TOTALS FOR INDEX TEST.I_TEST
    TOTAL BLOCKS ALLOCATED:                                               1112
    TOTAL BLOCKS USED:                                                    1080
    TOTAL BYTES ALLOCATED:                                 9,109,504 (8.69 MB)
    TOTAL BYTES USED:                                      8,847,360 (8.44 MB)
    which shows that it went from 576KB to 8.44MB. With a big index the difference is not so big, but still from 14G to 19G.
    5. Workaround: use the BIG_IO option, so that the token_info column of the DR$ I table will be stored in a secure file and the size will stay relatively small. Then you can load this column in the cache using a procedure similar to
    alter table DR$I_TEST$I storage (buffer_pool keep);
    alter table dr$i_test$i modify lob(token_info) (cache storage (buffer_pool keep));
    rem: now we must read the lob so that it will be loaded in the keep buffer pool, use the prccedure below
    create or replace procedure loadTokenInfo is
      type c_type is ref cursor;
      c2 c_type;
      s varchar2(2000);
      b blob;
      buff varchar2(100);
      siz number;
      off number;
      cntr number;
    begin
        s := 'select token_info from  DR$i_test$I';
        open c2 for s;
        loop
           fetch c2 into b;
           exit when c2%notfound;
           siz := 10;
           off := 1;
           cntr := 0;
           if dbms_lob.getlength(b) > 0 then
             begin
               loop
                 dbms_lob.read(b, siz, off, buff);
                 cntr := cntr + 1;
                 off := off + 4096;
               end loop;
             exception when no_data_found then
               if cntr > 0 then
                 dbms_output.put_line('4K chunks fetched: '||cntr);
               end if;
             end;
           end if;
        end loop;
    end;
    Rgds, Pierre

    I have been working a lot on that issue recently, I can give some more info.
    First I totally agree with you, I don't like to use the keep_pool and I would love to avoid it. On the other hand, we have a specific use case : 90% of the activity in the DB is done by queuing and dbms_scheduler jobs where response time does not matter. All those processes are probably filling the buffer cache. We have a customer facing application that uses the text index to search the database : performance is critical for them.
    What kind of performance do you have with your application ?
    In my case, I have learned the hard way that having the index in memory (the DR$I table in fact) is the key : if it is not, then performance is poor. I find it reasonable to pin the DR$I table in memory and if you look at competitors this is what they do. With MongoDB they explicitly says that the index must be in memory. With elasticsearch, they use JVM's that are also in memory. And effectively, if you look at the awr report, you will see that Oracle is continuously accessing the DR$I table, there is a SQL similar to
    SELECT /*+ DYNAMIC_SAMPLING(0) INDEX(i) */    
    TOKEN_FIRST, TOKEN_LAST, TOKEN_COUNT, ROWID    
    FROM DR$idxname$I
    WHERE TOKEN_TEXT = :word AND TOKEN_TYPE = :wtype    
    ORDER BY TOKEN_TEXT,  TOKEN_TYPE,  TOKEN_FIRST
    which is continuously done.
    I think that the algorithm used by Oracle to keep blocks in cache is too complex. A just realized that in 12.1.0.2 (was released last week) there is finally a "killer" functionality, the in-memory parameters, with which you can pin tables or columns in memory with compression, etc. this looks ideal for the text index, I hope that R. Ford will finally update his white paper :-)
    But my other problem was that the optimize_index in REBUILD mode caused the DR$I table to double in size : it seems crazy that this was closed as not a bug but it was and I can't do anything about it. It is a bug in my opinion, because the create index command and "alter index rebuild" command both result in a much smaller index, so why would the guys that developped the optimize function (is it another team, using another algorithm ?) make the index two times bigger ?
    And for that the track I have been following is to put the index in a 16K tablespace : in this case the space used by the index remains more or less flat (increases but much more reasonably). The difficulty here is to pin the index in memory because the trick of R. Ford was not working anymore.
    What worked:
    first set the keep_pool to zero and set the db_16k_cache_size to instead. Then change the storage preference to make sure that everything you want to cache (mostly the DR$I) table come in the tablespace with the non-standard block size of 16k.
    Then comes the tricky part : the pre-loading of the data in the buffer cache. The problem is that with Oracle 12c, Oracle will use direct_path_read for FTS which basically means that it bypasses the cache and read directory from file to the PGA !!! There is an event to avoid that, I was lucky to find it on a blog (I can't remember which, sorry for the credit).
    I ended-up doing that. the events to 10949 is to avoid the direct path reads issue.
    alter session set events '10949 trace name context forever, level 1';
    alter table DR#idxname0001$I cache;
    alter table DR#idxname0002$I cache;
    alter table DR#idxname0003$I cache;
    SELECT /*+ FULL(ITAB) CACHE(ITAB) */ SUM(TOKEN_COUNT),  SUM(LENGTH(TOKEN_INFO)) FROM DR#idxname0001$I;
    SELECT /*+ FULL(ITAB) CACHE(ITAB) */ SUM(TOKEN_COUNT),  SUM(LENGTH(TOKEN_INFO)) FROM DR#idxname0002$I;
    SELECT /*+ FULL(ITAB) CACHE(ITAB) */ SUM(TOKEN_COUNT),  SUM(LENGTH(TOKEN_INFO)) FROM DR#idxname0003$I;
    SELECT /*+ INDEX(ITAB) CACHE(ITAB) */  SUM(LENGTH(TOKEN_TEXT)) FROM DR#idxname0001$I ITAB;
    SELECT /*+ INDEX(ITAB) CACHE(ITAB) */  SUM(LENGTH(TOKEN_TEXT)) FROM DR#idxname0002$I ITAB;
    SELECT /*+ INDEX(ITAB) CACHE(ITAB) */  SUM(LENGTH(TOKEN_TEXT)) FROM DR#idxname0003$I ITAB;
    It worked. With a big relief I expected to take some time out, but there was a last surprise. The command
    exec ctx_ddl.optimize_index(idx_name=>'idxname',part_name=>'partname',optlevel=>'REBUILD');
    gqve the following
    ERROR at line 1:
    ORA-20000: Oracle Text error:
    DRG-50857: oracle error in drftoptrebxch
    ORA-14097: column type or size mismatch in ALTER TABLE EXCHANGE PARTITION
    ORA-06512: at "CTXSYS.DRUE", line 160
    ORA-06512: at "CTXSYS.CTX_DDL", line 1141
    ORA-06512: at line 1
    Which is very much exactly described in a metalink note 1645634.1 but in the case of a non-partitioned index. The work-around given seemed very logical but it did not work in the case of a partitioned index. After experimenting, I found out that the bug occurs when the partitioned index is created with  dbms_pclxutil.build_part_index procedure (this enables  enables intra-partition parallelism in the index creation process). This is a very annoying and stupid bug, maybe there is a work-around, but did not find it on metalink
    Other points of attention with the text index creation (stuff that surprised me at first !) ;
    - if you use the dbms_pclxutil package, then the ctx_output logging does not work, because the index is created immediately and then populated in the background via dbms_jobs.
    - this in combination with the fact that if you are on a RAC, you won't see any activity on the box can be very frightening : this is because oracle can choose to start the workers on the other node.
    I understand much better how the text indexing works, I think it is a great technology which can scale via partitioning. But like always the design of the application is crucial, most of our problems come from the fact that we did not choose the right sectioning (we choosed PATH_SECTION_GROUP while XML_SECTION_GROUP is so much better IMO). Maybe later I can convince the dev to change the sectionining, especially because SDATA and MDATA section are not supported with PATCH_SECTION_GROUP (although it seems to work, even though we had one occurence of a bad result linked to the existence of SDATA in the index definition). Also the whole problematic of mixed structured/unstructured searches is completly tackled if one use XML_SECTION_GROUP with MDATA/SDATA (but of course the app was written for Oracle 10...)
    Regards, Pierre

  • Need Oracle 12c whitepaper recommendation for upgrade assessment

    Hi:  Good morning!
    This is not an urgent request, but appreciate your recommendation!  I need documents about Oracle 12c (our os is IBM AIX power system, 6.1, 64 bit), because we are planning upgrade current oracle database 11.2.0.4 to 12c, we need a thorough assessment to 12c  since 12c introduced many innovative, new features, major component changes, as well as impact to java application.  The document I have so far is-
    1. database upgrade guide
    http://docs.oracle.com/database/121/UPGRD/preup.htm#UPGRD002
    2. Deprecated API (oracle database JDBC Java API Reference)
    https://docs.oracle.com/database/121/JAJDB/deprecated-list.html
    3. Tom Kytes Top 12 new features for Oracle 12c (from web).
    There are many things to look for.  I want to know the major things I should focus in new features & impact to java application.
    what document can provide me the info!
    thank you very much in advance!

    Hi all:
    Can anyone gives me advice after upgrade from 11.2.0.4 database to 12c database, which 'core-DB new features' impact to Java application more, and that we should focus on assessment?
    There are too many new & innovative features introduced in 12c. Should I convert our single instance database (on non-cluster server) to 'CDB/PDB' during upgrade? Is it a 'Must-to-do' or not?  We have a physical standby DB, how to do with the standby?
    Oracle Documents I reviewed are: 'Oracle 12c database document', 'Oracle 12c Java Developer's Guide'. I recommend this to our developers based on 'Oracle 12c Java Developer's Guide':
    Oracle JVM  (  JDK6, JDK7 support in 12)
    [note:need to check jvm components for application: library manager, compiler, interpreter, class loader, server-side JDBC internal driver, server-side SQLJ, translator, system classes; Java stored procedure, SQLJ, JDBC, etc]
    2. Oracle Memory Space management      (         garbage collection)
    3. Multithreading
    4. Footprinting
    5. Dynamic class loading
    6. JNDI class support
    7. Auditing for Java ( alert/execute/audit/grant is enabled in auditing)
    8. Support for logging
    9. Support for customizing default java.security resource
    10. Improved for debugging
    However, I may lost myself in core-DB new features for:
    1. advanced analytics features
    2. OLAP features
    3. Partitioning enhance
    4. Performance for zero effort
    5. Compression and Archiving features (depends on application tables design)
    6. Database Overall
       - Integrate With Operating System Processor Groups
       - Oracle Data Pump Support
       - Multitenant Architecture (Not sure)
       - PDBs Backup and Recovery  (Not sure)
       - PDBs Point-in-Time Recovery  (Not sure)
       - PDBs Resource Plans  (Not sure)
       - Utilities
    7. High Availability
       - Application Continuity
       - Transaction Guard
       - Logical Replication
       - Global Data Services
       - Online Operations
       - Oracle Data Guard Enhancements (Depends on our standby design)
    8. Manageability
       - PGA Size Limit
       - Resource Manager Runaway Query Management
       - Spot ADDM
    9. General
       - DBMS_QOPATCH
    10. Performance
    11. Security enhance
    12. Improve Security Manageability, Administration and Integration
        - Database vault
    Is my above suggestion (text in red-color) correct?
    Thank you very much!

  • CLSRSC-117: Failed to start Oracle Clusterware stack Oracle 12c clusterware

    I'm installing Oracle 12c clusterware on 2 nodes.
    i installed it on node 1 and after executing the ./root.sh is was executed successfully.
    but after trying to execute it on the other node it fails with the next error:
    CRS-2789: Cannot stop resource 'ora.diskmon' as it is not running on server 'dbrac1'
    CRS-2883: Resource 'ora.cssdmonitor' failed during Clusterware stack start.
    CRS-4406: Oracle High Availability Services synchronous start failed.
    CRS-4000: Command Start failed, or completed with errors.
    2015/02/11 01:53:15 CLSRSC-117: Failed to start Oracle Clusterware stack
    my ASM disks are fine and i can see them via oracleasm scandisks and oracleasm listdiks.

    Sorry it was successful on node 2 dbrac2 (which is my main node and has the oracle 12c sources)
    here is the complete logs:
    2015-02-11 00:58:11: Checking parameters from paramfile /u01/app/12.1.0/grid_1/crs/install/crsconfig_params to validate installer variables
    2015-02-11 00:58:11: Set BC to 1
    2015-02-11 00:58:11: ASM_CONFIG is near
    2015-02-11 00:58:11: The configuration parameter file /u01/app/12.1.0/grid_1/crs/install/crsconfig_params  is valid
    2015-02-11 00:58:11: ### Printing the configuration values from files:
    2015-02-11 00:58:11:    /u01/app/12.1.0/grid_1/crs/install/crsconfig_params
    2015-02-11 00:58:11:    /u01/app/12.1.0/grid_1/crs/install/s_crsconfig_defs
    2015-02-11 00:58:11: ASM_AU_SIZE=1
    2015-02-11 00:58:11: ASM_CONFIG=near
    2015-02-11 00:58:11: ASM_CREDENTIALS=
    2015-02-11 00:58:11: ASM_DISCOVERY_STRING=
    2015-02-11 00:58:11: ASM_DISKS=ORCL:OC1,ORCL:OC2,ORCL:OC3
    2015-02-11 00:58:11: ASM_DISK_GROUP=Votting
    2015-02-11 00:58:11: ASM_REDUNDANCY=EXTERNAL
    2015-02-11 00:58:11: ASM_SPFILE=
    2015-02-11 00:58:11: ASM_UPGRADE=false
    2015-02-11 00:58:11: BIG_CLUSTER=true
    2015-02-11 00:58:11: CLSCFG_MISSCOUNT=
    2015-02-11 00:58:11: CLUSTER_GUID=
    2015-02-11 00:58:11: CLUSTER_NAME=dbrac-cluster
    2015-02-11 00:58:11: CRFHOME="/u01/app/12.1.0/grid_1"
    2015-02-11 00:58:11: CRS_LIMIT_CORE=unlimited
    2015-02-11 00:58:11: CRS_LIMIT_MEMLOCK=unlimited
    2015-02-11 00:58:11: CRS_LIMIT_OPENFILE=65536
    2015-02-11 00:58:11: CRS_LIMIT_STACK=2048
    2015-02-11 00:58:11: CRS_LSNR_STACK=10240
    2015-02-11 00:58:11: CRS_NODEVIPS='AUTO/255.255.255.0/bond0,AUTO/255.255.255.0/bond0'
    2015-02-11 00:58:11: CRS_STORAGE_OPTION=1
    2015-02-11 00:58:11: CSS_LEASEDURATION=400
    2015-02-11 00:58:11: DIRPREFIX=
    2015-02-11 00:58:11: DISABLE_OPROCD=0
    2015-02-11 00:58:11: EXTERNAL_ORACLE=/opt/oracle
    2015-02-11 00:58:11: EXTERNAL_ORACLE_BIN=/opt/oracle/bin
    2015-02-11 00:58:11: GNS_ADDR_LIST=172.20.30.12
    2015-02-11 00:58:11: GNS_ALLOW_NET_LIST=
    2015-02-11 00:58:11: GNS_CONF=true
    2015-02-11 00:58:11: GNS_CREDENTIALS=
    2015-02-11 00:58:11: GNS_DENY_ITF_LIST=
    2015-02-11 00:58:11: GNS_DENY_NET_LIST=
    2015-02-11 00:58:11: GNS_DOMAIN_LIST=gns.kbe.com
    2015-02-11 00:58:11: GNS_TYPE=local
    2015-02-11 00:58:11: GPNPCONFIGDIR=/u01/app/12.1.0/grid_1
    2015-02-11 00:58:11: GPNPGCONFIGDIR=/u01/app/12.1.0/grid_1
    2015-02-11 00:58:11: GPNP_PA=
    2015-02-11 00:58:11: HOST_NAME_LIST=dbrac2,dbrac1
    2015-02-11 00:58:11: HUB_NODE_LIST=dbrac2,dbrac1
    2015-02-11 00:58:11: HUB_NODE_VIPS=AUTO,AUTO
    2015-02-11 00:58:11: HUB_SIZE=32
    2015-02-11 00:58:11: ID=/etc/init.d
    2015-02-11 00:58:11: INIT=/sbin/init
    2015-02-11 00:58:11: INITCTL=/sbin/initctl
    2015-02-11 00:58:11: ISROLLING=true
    2015-02-11 00:58:11: IT=/etc/inittab
    2015-02-11 00:58:11: JLIBDIR=/u01/app/12.1.0/grid_1/jlib
    2015-02-11 00:58:11: JREDIR=/u01/app/12.1.0/grid_1/jdk/jre/
    2015-02-11 00:58:11: LANGUAGE_ID=AMERICAN_AMERICA.AL32UTF8
    2015-02-11 00:58:11: LISTENER_USERNAME=grid
    2015-02-11 00:58:11: MGMT_DB=true
    2015-02-11 00:58:11: MSGFILE=/var/adm/messages
    2015-02-11 00:58:11: NETWORKS="bond0"/172.20.30.0:public,"bond1"/172.20.190.0:asm,"bond1"/172.20.190.0:cluster_interconnect
    2015-02-11 00:58:11: NEW_HOST_NAME_LIST=
    2015-02-11 00:58:11: NEW_NODEVIPS='AUTO/255.255.255.0/bond0,AUTO/255.255.255.0/bond0'
    2015-02-11 00:58:11: NEW_NODE_NAME_LIST=
    2015-02-11 00:58:11: NEW_PRIVATE_NAME_LIST=
    2015-02-11 00:58:11: NODELIST=dbrac2,dbrac1
    2015-02-11 00:58:11: NODE_NAME_LIST=dbrac2,dbrac1
    2015-02-11 00:58:11: OCRCONFIG=/etc/oracle/ocr.loc
    2015-02-11 00:58:11: OCRCONFIGDIR=/etc/oracle
    2015-02-11 00:58:11: OCRID=
    2015-02-11 00:58:11: OCRLOC=ocr.loc
    2015-02-11 00:58:11: OCR_LOCATIONS=NO_VAL
    2015-02-11 00:58:11: OLASTGASPDIR=/etc/oracle/lastgasp
    2015-02-11 00:58:11: OLD_CRS_HOME=
    2015-02-11 00:58:11: OLRCONFIG=/etc/oracle/olr.loc
    2015-02-11 00:58:11: OLRCONFIGDIR=/etc/oracle
    2015-02-11 00:58:11: OLRLOC=olr.loc
    2015-02-11 00:58:11: OPROCDCHECKDIR=/etc/oracle/oprocd/check
    2015-02-11 00:58:11: OPROCDDIR=/etc/oracle/oprocd
    2015-02-11 00:58:11: OPROCDFATALDIR=/etc/oracle/oprocd/fatal
    2015-02-11 00:58:11: OPROCDSTOPDIR=/etc/oracle/oprocd/stop
    2015-02-11 00:58:11: ORACLE_BASE=/u01/app/grid
    2015-02-11 00:58:11: ORACLE_HOME=/u01/app/12.1.0/grid_1
    2015-02-11 00:58:11: ORACLE_OWNER=grid
    2015-02-11 00:58:11: ORA_ASM_GROUP=asmadmin
    2015-02-11 00:58:11: ORA_DBA_GROUP=oinstall
    2015-02-11 00:58:11: PRIVATE_NAME_LIST=
    2015-02-11 00:58:11: RCALLDIR=/etc/rc.d/rc0.d /etc/rc.d/rc1.d /etc/rc.d/rc2.d /etc/rc.d/rc3.d /etc/rc.d/rc4.d /etc/rc.d/rc5.d /etc/rc.d/rc6.d
    2015-02-11 00:58:11: RCKDIR=/etc/rc.d/rc0.d /etc/rc.d/rc1.d /etc/rc.d/rc2.d /etc/rc.d/rc4.d /etc/rc.d/rc6.d
    2015-02-11 00:58:11: RCSDIR=/etc/rc.d/rc3.d /etc/rc.d/rc5.d
    2015-02-11 00:58:11: RC_KILL=K15
    2015-02-11 00:58:11: RC_KILL_OLD=K96
    2015-02-11 00:58:11: RC_KILL_OLD2=K19
    2015-02-11 00:58:11: RC_START=S96
    2015-02-11 00:58:11: REUSEDG=false
    2015-02-11 00:58:11: RIM_NODE_LIST=
    2015-02-11 00:58:11: SCAN_NAME=kberac-scan.gns.kbe.com
    2015-02-11 00:58:11: SCAN_PORT=1521
    2015-02-11 00:58:11: SCRBASE=/etc/oracle/scls_scr
    2015-02-11 00:58:11: SILENT=false
    2015-02-11 00:58:11: SO_EXT=so
    2015-02-11 00:58:11: SRVCFGLOC=srvConfig.loc
    2015-02-11 00:58:11: SRVCONFIG=/var/opt/oracle/srvConfig.loc
    2015-02-11 00:58:11: SRVCONFIGDIR=/var/opt/oracle
    2015-02-11 00:58:11: TZ=Asia/Riyadh
    2015-02-11 00:58:11: UPSTART_INIT_DIR=/etc/init
    2015-02-11 00:58:11: USER_IGNORED_PREREQ=true
    2015-02-11 00:58:11: VNDR_CLUSTER=false
    2015-02-11 00:58:11: VOTING_DISKS=NO_VAL
    2015-02-11 00:58:11: ### Printing other configuration values ###
    2015-02-11 00:58:11: CLSCFG_EXTRA_PARMS=
    2015-02-11 00:58:11: HAS_GROUP=oinstall
    2015-02-11 00:58:11: HAS_USER=root
    2015-02-11 00:58:11: HOST=dbrac1
    2015-02-11 00:58:11: OLR_DIRECTORY=/u01/app/12.1.0/grid_1/cdata
    2015-02-11 00:58:11: OLR_LOCATION=/u01/app/12.1.0/grid_1/cdata/dbrac1.olr
    2015-02-11 00:58:11: ORA_CRS_HOME=/u01/app/12.1.0/grid_1
    2015-02-11 00:58:11: SIHA=0
    2015-02-11 00:58:11: SUCC_REBOOT=0
    2015-02-11 00:58:11: SUPERUSER=root
    2015-02-11 00:58:11: addfile=/u01/app/12.1.0/grid_1/crs/install/crsconfig_addparams
    2015-02-11 00:58:11: crscfg_trace=1
    2015-02-11 00:58:11: crscfg_trace_file=/u01/app/12.1.0/grid_1/cfgtoollogs/crsconfig/rootcrs_dbrac1_2015-02-11_00-58-11AM.log
    2015-02-11 00:58:11: old_nodevips=
    2015-02-11 00:58:11: osdfile=/u01/app/12.1.0/grid_1/crs/install/s_crsconfig_defs
    2015-02-11 00:58:11: parameters_valid=1
    2015-02-11 00:58:11: paramfile=/u01/app/12.1.0/grid_1/crs/install/crsconfig_params
    2015-02-11 00:58:11: platform_family=unix
    2015-02-11 00:58:11: srvctl_trc_suff=0
    2015-02-11 00:58:11: stackStartLevel=11
    2015-02-11 00:58:11: user_is_superuser=1
    2015-02-11 00:58:11: ### Printing of configuration values complete ###
    2015-02-11 00:58:11: Save the ASM password file location: +Votting/orapwASM
    2015-02-11 00:58:11: Performing few checks before running scripts
    2015-02-11 00:58:11: Attempt to get current working directory
    2015-02-11 00:58:11: Running as user grid: pwd
    2015-02-11 00:58:11: s_run_as_user2: Running /bin/su grid -c ' pwd '
    2015-02-11 00:58:11: Removing file /tmp/fileCnF377
    2015-02-11 00:58:11: Successfully removed file: /tmp/fileCnF377
    2015-02-11 00:58:11: /bin/su successfully executed
    2015-02-11 00:58:11: Pre-checkes for running scripts passed
    2015-02-11 00:58:11: Instantiating scripts in GI home: /u01/app/12.1.0/grid_1
    2015-02-11 00:58:11: saving current owner/permisssios of  parent dir of /u01/app/12.1.0
    2015-02-11 00:58:11: saving parent dir ACLs in /u01/app/12.1.0/grid_1/crs/install/ParentDirPerm_dbrac1.txt
    2015-02-11 00:58:11: loading... /u01/app/12.1.0/grid_1/crs/install/ParentDirPerm_dbrac1.txt
    2015-02-11 00:58:11: Getting file permissions for /u01/app/12.1.0
    2015-02-11 00:58:11: Getting file permissions for /u01/app
    2015-02-11 00:58:11: Getting file permissions for /u01
    2015-02-11 00:58:11: Executing cmd: /u01/app/12.1.0/grid_1/bin/sqlplus -V
    2015-02-11 00:58:11: Command output:

    >  SQL*Plus: Release 12.1.0.1.0 Production
    >  
    >End Command output
    2015-02-11 00:58:11: Got CRS release version: 12.1.0.1.0
    2015-02-11 00:58:11:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK
    2015-02-11 00:58:11: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK
    2015-02-11 00:58:11: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK '
    2015-02-11 00:58:11: Removing file /tmp/fileBau02q
    2015-02-11 00:58:11: Successfully removed file: /tmp/fileBau02q
    2015-02-11 00:58:11: /bin/su successfully executed
    2015-02-11 00:58:11: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK -pname VERSION
    2015-02-11 00:58:11: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK -pname VERSION '
    2015-02-11 00:58:12: Removing file /tmp/fileMP6nyK
    2015-02-11 00:58:12: Successfully removed file: /tmp/fileMP6nyK
    2015-02-11 00:58:12: /bin/su successfully executed
    2015-02-11 00:58:12: The property VERSION for checkpoint:ROOTCRS_STACK is there
    2015-02-11 00:58:12: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -listckpt -name ROOTCRS_STACK -pname VERSION
    2015-02-11 00:58:12: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -listckpt -name ROOTCRS_STACK -pname VERSION '
    2015-02-11 00:58:12: Removing file /tmp/filelarvE4
    2015-02-11 00:58:12: Successfully removed file: /tmp/filelarvE4
    2015-02-11 00:58:12: /bin/su successfully executed
    2015-02-11 00:58:12: Succeeded to get property value:VERSION=12.1.0.1.0
    2015-02-11 00:58:12: version1 is 12.1.0.1.0
    2015-02-11 00:58:12: version2 is 12.1.0.1.0
    2015-02-11 00:58:12: Version match status is 1
    2015-02-11 00:58:12: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK -status
    2015-02-11 00:58:12: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK -status '
    2015-02-11 00:58:12: Removing file /tmp/file2xL0lp
    2015-02-11 00:58:12: Successfully removed file: /tmp/file2xL0lp
    2015-02-11 00:58:12: /bin/su successfully executed
    2015-02-11 00:58:12: The 'ROOTCRS_STACK' status is FAILED
    2015-02-11 00:58:12: USER_IGNORED_PREREQ  is set to 1
    2015-02-11 00:58:12: Executing cmd: /u01/app/12.1.0/grid_1/bin/clsecho -p has -f clsrsc -m 363
    2015-02-11 00:58:12: Command output:
    >  CLSRSC-363: User ignored prerequisites during installation
    >End Command output
    2015-02-11 00:58:12: Executing cmd: /u01/app/12.1.0/grid_1/bin/clsecho -p has -f clsrsc -m 363
    2015-02-11 00:58:12: Command output:
    >  CLSRSC-363: User ignored prerequisites during installation
    >End Command output
    2015-02-11 00:58:12: CLSRSC-363: User ignored prerequisites during installation
    2015-02-11 00:58:12: Set BC to 1
    2015-02-11 00:58:12: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK -status
    2015-02-11 00:58:12: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK -status '
    2015-02-11 00:58:12: Removing file /tmp/fileUO8xNK
    2015-02-11 00:58:12: Successfully removed file: /tmp/fileUO8xNK
    2015-02-11 00:58:12: /bin/su successfully executed
    2015-02-11 00:58:12: The 'ROOTCRS_STACK' status is FAILED
    2015-02-11 00:58:12: Saving the configuration parameter file data
    2015-02-11 00:58:12: checkpoint status of ROOTCRS_STACK is FAIL
    2015-02-11 00:58:12:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_PARAM
    2015-02-11 00:58:12: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_PARAM
    2015-02-11 00:58:12: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_PARAM '
    2015-02-11 00:58:13: Removing file /tmp/file53D9Q6
    2015-02-11 00:58:13: Successfully removed file: /tmp/file53D9Q6
    2015-02-11 00:58:13: /bin/su successfully executed
    2015-02-11 00:58:13:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OSDSETUP
    2015-02-11 00:58:13: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OSDSETUP
    2015-02-11 00:58:13: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OSDSETUP '
    2015-02-11 00:58:13: Removing file /tmp/fileJAZWvt
    2015-02-11 00:58:13: Successfully removed file: /tmp/fileJAZWvt
    2015-02-11 00:58:13: /bin/su successfully executed
    2015-02-11 00:58:13: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OSDSETUP -status
    2015-02-11 00:58:13: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OSDSETUP -status '
    2015-02-11 00:58:13: Removing file /tmp/filesnoyLQ
    2015-02-11 00:58:13: Successfully removed file: /tmp/filesnoyLQ
    2015-02-11 00:58:13: /bin/su successfully executed
    2015-02-11 00:58:13: The 'ROOTCRS_OSDSETUP' status is SUCCESS
    2015-02-11 00:58:13: Oracle CRS home = /u01/app/12.1.0/grid_1
    2015-02-11 00:58:13: Host name = dbrac1
    2015-02-11 00:58:13: CRS user = grid
    2015-02-11 00:58:13: Oracle CRS home = /u01/app/12.1.0/grid_1
    2015-02-11 00:58:13: GPnP host = dbrac1
    2015-02-11 00:58:13: Oracle GPnP home = /u01/app/12.1.0/grid_1/gpnp
    2015-02-11 00:58:13: Oracle GPnP local home = /u01/app/12.1.0/grid_1/gpnp/dbrac1
    2015-02-11 00:58:13: GPnP directories verified.
    2015-02-11 00:58:13: Checking to see if Oracle CRS stack is already configured
    2015-02-11 00:58:13: Oracle CRS stack is already configured and will be running under init (1M)
    2015-02-11 00:58:13: ---Checking local gpnp setup...
    2015-02-11 00:58:13: chk gpnphome /u01/app/12.1.0/grid_1/gpnp/dbrac1: profile_ok 1 wallet_ok 1 r/o_wallet_ok 1
    2015-02-11 00:58:13: gpnptool: run /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/peer" -wu=peer
    2015-02-11 00:58:13: Running as user grid: /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/peer" -wu=peer
    2015-02-11 00:58:13: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/peer" -wu=peer '
    2015-02-11 00:58:13: Removing file /tmp/fileC5RBEe
    2015-02-11 00:58:13: Successfully removed file: /tmp/fileC5RBEe
    2015-02-11 00:58:13: /bin/su successfully executed
    2015-02-11 00:58:13: gpnptool: rc=0
    2015-02-11 00:58:13: gpnptool output:
    Profile signature is valid.
    2015-02-11 00:58:13: Profile "/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" signature is VALID for wallet "file:/u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/peer"
    2015-02-11 00:58:13: gpnptool: run /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/prdr" -wu=peer
    2015-02-11 00:58:13: Running as user grid: /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/prdr" -wu=peer
    2015-02-11 00:58:13: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/prdr" -wu=peer '
    2015-02-11 00:58:14: Removing file /tmp/filebJUCzD
    2015-02-11 00:58:14: Successfully removed file: /tmp/filebJUCzD
    2015-02-11 00:58:14: /bin/su successfully executed
    2015-02-11 00:58:14: gpnptool: rc=0
    2015-02-11 00:58:14: gpnptool output:
    Profile signature is valid.
    2015-02-11 00:58:14: Profile "/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" signature is VALID for wallet "file:/u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/prdr"
    2015-02-11 00:58:14: chk gpnphome /u01/app/12.1.0/grid_1/gpnp/dbrac1: OK
    2015-02-11 00:58:14: gpnptool: run /u01/app/12.1.0/grid_1/bin/gpnptool getpval -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -o="/tmp/fileW3oHv3" -prf_cn -prf_cid -prf_sq -prf_pa
    2015-02-11 00:58:14: Running as user grid: /u01/app/12.1.0/grid_1/bin/gpnptool getpval -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -o="/tmp/fileW3oHv3" -prf_cn -prf_cid -prf_sq -prf_pa
    2015-02-11 00:58:14: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/gpnptool getpval -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -o="/tmp/fileW3oHv3" -prf_cn -prf_cid -prf_sq -prf_pa '
    2015-02-11 00:58:14: Removing file /tmp/fileXuqOrt
    2015-02-11 00:58:14: Successfully removed file: /tmp/fileXuqOrt
    2015-02-11 00:58:14: /bin/su successfully executed
    2015-02-11 00:58:14: gpnptool: rc=0
    2015-02-11 00:58:14: gpnptool output:
    2015-02-11 00:58:14: Removing file /tmp/fileW3oHv3
    2015-02-11 00:58:14: Successfully removed file: /tmp/fileW3oHv3
    2015-02-11 00:58:14: setting profile permissions
    2015-02-11 00:58:14: resfiles are /u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/root/ewallet.p12 /u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/peer/cwallet.sso /u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/prdr/cwallet.sso /u01/app/12.1.0/grid_1/gpnp/dbrac1/wallets/pa/cwallet.sso
    2015-02-11 00:58:14: GPnP Wallets ownership/permissions successfully set. [node-local=1]
    2015-02-11 00:58:14: ---Checking cluster-wide gpnp setup...
    2015-02-11 00:58:14: chk gpnphome /u01/app/12.1.0/grid_1/gpnp: profile_ok 1 wallet_ok 1 r/o_wallet_ok 1
    2015-02-11 00:58:14: gpnptool: run /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/wallets/peer" -wu=peer
    2015-02-11 00:58:14: Running as user grid: /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/wallets/peer" -wu=peer
    2015-02-11 00:58:14: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/wallets/peer" -wu=peer '
    2015-02-11 00:58:15: Removing file /tmp/filefqLPlU
    2015-02-11 00:58:15: Successfully removed file: /tmp/filefqLPlU
    2015-02-11 00:58:15: /bin/su successfully executed
    2015-02-11 00:58:15: gpnptool: rc=0
    2015-02-11 00:58:15: gpnptool output:
    Profile signature is valid.
    2015-02-11 00:58:15: Profile "/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" signature is VALID for wallet "file:/u01/app/12.1.0/grid_1/gpnp/wallets/peer"
    2015-02-11 00:58:15: gpnptool: run /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/wallets/prdr" -wu=peer
    2015-02-11 00:58:15: Running as user grid: /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/wallets/prdr" -wu=peer
    2015-02-11 00:58:15: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/wallets/prdr" -wu=peer '
    2015-02-11 00:58:15: Removing file /tmp/fileudaEhm
    2015-02-11 00:58:15: Successfully removed file: /tmp/fileudaEhm
    2015-02-11 00:58:15: /bin/su successfully executed
    2015-02-11 00:58:15: gpnptool: rc=0
    2015-02-11 00:58:15: gpnptool output:
    Profile signature is valid.
    2015-02-11 00:58:15: Profile "/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" signature is VALID for wallet "file:/u01/app/12.1.0/grid_1/gpnp/wallets/prdr"
    2015-02-11 00:58:15: chk gpnphome /u01/app/12.1.0/grid_1/gpnp: OK
    2015-02-11 00:58:15: gpnptool: run /u01/app/12.1.0/grid_1/bin/gpnptool getpval -p="/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" -o="/tmp/fileYSmOeP" -prf_cn -prf_cid -prf_sq -prf_pa
    2015-02-11 00:58:15: Running as user grid: /u01/app/12.1.0/grid_1/bin/gpnptool getpval -p="/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" -o="/tmp/fileYSmOeP" -prf_cn -prf_cid -prf_sq -prf_pa
    2015-02-11 00:58:15: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/gpnptool getpval -p="/u01/app/12.1.0/grid_1/gpnp/profiles/peer/profile.xml" -o="/tmp/fileYSmOeP" -prf_cn -prf_cid -prf_sq -prf_pa '
    2015-02-11 00:58:15: Removing file /tmp/filernP1bi
    2015-02-11 00:58:15: Successfully removed file: /tmp/filernP1bi
    2015-02-11 00:58:15: /bin/su successfully executed
    2015-02-11 00:58:15: gpnptool: rc=0
    2015-02-11 00:58:15: gpnptool output:
    2015-02-11 00:58:15: Removing file /tmp/fileYSmOeP
    2015-02-11 00:58:15: Successfully removed file: /tmp/fileYSmOeP
    2015-02-11 00:58:15: setting profile permissions
    2015-02-11 00:58:15: resfiles are /u01/app/12.1.0/grid_1/gpnp/wallets/root/ewallet.p12 /u01/app/12.1.0/grid_1/gpnp/wallets/peer/cwallet.sso /u01/app/12.1.0/grid_1/gpnp/wallets/prdr/cwallet.sso /u01/app/12.1.0/grid_1/gpnp/wallets/pa/cwallet.sso
    2015-02-11 00:58:15: GPnP Wallets ownership/permissions successfully set. [node-local=0]
    2015-02-11 00:58:15: gpnp setup checked: local valid? 1 cluster-wide valid? 1
    2015-02-11 00:58:15: gpnptool: run /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/wallets/peer" -wu=peer
    2015-02-11 00:58:15: Running as user grid: /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/wallets/peer" -wu=peer
    2015-02-11 00:58:15: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/gpnptool verify -p="/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" -w="file:/u01/app/12.1.0/grid_1/gpnp/wallets/peer" -wu=peer '
    2015-02-11 00:58:16: Removing file /tmp/fileaK8v7L
    2015-02-11 00:58:16: Successfully removed file: /tmp/fileaK8v7L
    2015-02-11 00:58:16: /bin/su successfully executed
    2015-02-11 00:58:16: gpnptool: rc=0
    2015-02-11 00:58:16: gpnptool output:
    Profile signature is valid.
    2015-02-11 00:58:16: Profile "/u01/app/12.1.0/grid_1/gpnp/dbrac1/profiles/peer/profile.xml" signature is VALID for wallet "file:/u01/app/12.1.0/grid_1/gpnp/wallets/peer"
    2015-02-11 00:58:16: Local and Cluster-wide setups signed with same wallet.
    gpnp setup: CLUSTERWIDE
    2015-02-11 00:58:16: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl query crs releaseversion
    2015-02-11 00:58:16: Command output:
    >  Oracle High Availability Services release version on the local node is [12.1.0.1.0]
    >End Command output
    2015-02-11 00:58:16: Version String passed is: [Oracle High Availability Services release version on the local node is [12.1.0.1.0]]
    2015-02-11 00:58:16: Version Info returned is : [12.1.0.1.0]
    2015-02-11 00:58:16: Got CRS release version: 12.1.0.1.0
    2015-02-11 00:58:16: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK -status
    2015-02-11 00:58:16: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_STACK -status '
    2015-02-11 00:58:16: Removing file /tmp/fileshWmsh
    2015-02-11 00:58:16: Successfully removed file: /tmp/fileshWmsh
    2015-02-11 00:58:16: /bin/su successfully executed
    2015-02-11 00:58:16: The 'ROOTCRS_STACK' is either in START/FAILED state
    2015-02-11 00:58:16:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OLR
    2015-02-11 00:58:16: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OLR
    2015-02-11 00:58:16: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OLR '
    2015-02-11 00:58:16: Removing file /tmp/fileIB67nN
    2015-02-11 00:58:16: Successfully removed file: /tmp/fileIB67nN
    2015-02-11 00:58:16: /bin/su successfully executed
    2015-02-11 00:58:16: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OLR -status
    2015-02-11 00:58:16: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OLR -status '
    2015-02-11 00:58:16: Removing file /tmp/filenbKqUj
    2015-02-11 00:58:16: Successfully removed file: /tmp/filenbKqUj
    2015-02-11 00:58:16: /bin/su successfully executed
    2015-02-11 00:58:16: The 'ROOTCRS_OLR' status is SUCCESS
    2015-02-11 00:58:16: 'ROOTCRS_OLR' state is 'SUCCESS'
    2015-02-11 00:58:16: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OLR -status
    2015-02-11 00:58:16: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OLR -status '
    2015-02-11 00:58:17: Removing file /tmp/filevkRq2Q
    2015-02-11 00:58:17: Successfully removed file: /tmp/filevkRq2Q
    2015-02-11 00:58:17: /bin/su successfully executed
    2015-02-11 00:58:17: The 'ROOTCRS_OLR' status is SUCCESS
    2015-02-11 00:58:17: OLR is already initialized
    2015-02-11 00:58:17: Executing /u01/app/12.1.0/grid_1/bin/crsctl create scr grid
    2015-02-11 00:58:17: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl create scr grid
    2015-02-11 00:58:17:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_GPNPSETUP
    2015-02-11 00:58:17: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_GPNPSETUP
    2015-02-11 00:58:17: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_GPNPSETUP '
    2015-02-11 00:58:17: Removing file /tmp/filevuHPep
    2015-02-11 00:58:17: Successfully removed file: /tmp/filevuHPep
    2015-02-11 00:58:17: /bin/su successfully executed
    2015-02-11 00:58:17: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_GPNPSETUP -status
    2015-02-11 00:58:17: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_GPNPSETUP -status '
    2015-02-11 00:58:17: Removing file /tmp/filegPte2X
    2015-02-11 00:58:17: Successfully removed file: /tmp/filegPte2X
    2015-02-11 00:58:17: /bin/su successfully executed
    2015-02-11 00:58:17: The 'ROOTCRS_GPNPSETUP' status is SUCCESS
    2015-02-11 00:58:17: 'ROOTCRS_GPNPSETUP' state is SUCCESS
    2015-02-11 00:58:17: Local GPNP is already initialized
    2015-02-11 00:58:17: Pin process list is osysmond.bin,ologgerd,ocssd.bin,cssdmonitor,cssdagent,mdb_pmon_-MGMTDB,kswapd0
    2015-02-11 00:58:17:   copy "/u01/app/12.1.0/grid_1/crf/admin/crfdbrac1.ora" => "/tmp/DRDpfvHuaC"
    2015-02-11 00:58:17: Copied existing orafile
    2015-02-11 00:58:17: Creating CHM/OS config file /u01/app/12.1.0/grid_1/crf/admin/crfdbrac1.ora
    2015-02-11 00:58:17: Trying to check if new CRS stack is partially up
    2015-02-11 00:58:17: check new crs stack
    2015-02-11 00:58:17: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl check resource ora.cssd -init
    2015-02-11 00:58:17: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl status resource ora.cssd -init
    2015-02-11 00:58:18: Checking the status of ora.cssd
    2015-02-11 00:58:23: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl status resource ora.cssd -init
    2015-02-11 00:58:23: Checking the status of ora.cssd
    2015-02-11 00:58:28: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl status resource ora.cssd -init
    2015-02-11 00:58:28: Checking the status of ora.cssd
    2015-02-11 00:58:33: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl check resource ora.crsd -init
    2015-02-11 00:58:33: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl status resource ora.crsd -init
    2015-02-11 00:58:33: Checking the status of ora.crsd
    2015-02-11 00:58:38: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl status resource ora.crsd -init
    2015-02-11 00:58:38: Checking the status of ora.crsd
    2015-02-11 00:58:43: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl status resource ora.crsd -init
    2015-02-11 00:58:44: Checking the status of ora.crsd
    2015-02-11 00:58:49: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl check resource ora.evmd -init
    2015-02-11 00:58:49: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl status resource ora.evmd -init
    2015-02-11 00:58:49: Checking the status of ora.evmd
    2015-02-11 00:58:54: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl status resource ora.evmd -init
    2015-02-11 00:58:54: Checking the status of ora.evmd
    2015-02-11 00:58:59: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl status resource ora.evmd -init
    2015-02-11 00:58:59: Checking the status of ora.evmd
    2015-02-11 00:59:04: Oracle Grid Infrastructure is not running from /u01/app/12.1.0/grid_1
    2015-02-11 00:59:04: Deleting older CHM/OS repository at
    2015-02-11 00:59:04:   copy "/tmp/DRDpfvHuaC" => "/u01/app/12.1.0/grid_1/crf/admin/crfdbrac1.ora"
    2015-02-11 00:59:04: Check and delete older IPD/OS installation
    2015-02-11 00:59:04: INFO: The OS Tool is not installed at /usr/lib/oracrf.
    2015-02-11 00:59:04: Registering ohasd
    2015-02-11 00:59:04:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OHASD
    2015-02-11 00:59:04: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OHASD
    2015-02-11 00:59:04: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OHASD '
    2015-02-11 00:59:05: Removing file /tmp/fileF65ZJD
    2015-02-11 00:59:05: Successfully removed file: /tmp/fileF65ZJD
    2015-02-11 00:59:05: /bin/su successfully executed
    2015-02-11 00:59:05: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OHASD -status
    2015-02-11 00:59:05: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_OHASD -status '
    2015-02-11 00:59:05: Removing file /tmp/filewDoW1j
    2015-02-11 00:59:05: Successfully removed file: /tmp/filewDoW1j
    2015-02-11 00:59:05: /bin/su successfully executed
    2015-02-11 00:59:05: The 'ROOTCRS_OHASD' status is SUCCESS
    2015-02-11 00:59:05: 'ROOTCRS_OHASD' state is SUCCESS
    2015-02-11 00:59:05: ohasd already registered
    2015-02-11 00:59:05: Starting ohasd
    2015-02-11 00:59:05: Checking the status of ohasd
    2015-02-11 00:59:05: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl check has
    2015-02-11 00:59:05: ohasd is already running
    2015-02-11 00:59:05: Checking the status of ohasd
    2015-02-11 00:59:05: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl check has
    2015-02-11 00:59:05: ohasd started successfully
    2015-02-11 00:59:05: Creating OHASD resources and dependencies
    2015-02-11 00:59:05: Configuring HASD
    2015-02-11 00:59:05:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_INITRES
    2015-02-11 00:59:05: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_INITRES
    2015-02-11 00:59:05: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_INITRES '
    2015-02-11 00:59:05: Removing file /tmp/fileral9N1
    2015-02-11 00:59:05: Successfully removed file: /tmp/fileral9N1
    2015-02-11 00:59:05: /bin/su successfully executed
    2015-02-11 00:59:05: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_INITRES -status
    2015-02-11 00:59:05: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_INITRES -status '
    2015-02-11 00:59:06: Removing file /tmp/fileL9iNaK
    2015-02-11 00:59:06: Successfully removed file: /tmp/fileL9iNaK
    2015-02-11 00:59:06: /bin/su successfully executed
    2015-02-11 00:59:06: The 'ROOTCRS_INITRES' status is SUCCESS
    2015-02-11 00:59:06: 'ROOTCRS_INITRES' state is SUCCESS
    2015-02-11 00:59:06: OHASD Resources are already configured
    2015-02-11 00:59:06: Successfully created OHASD resources for cluster and ASM
    2015-02-11 00:59:06:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_AFDINST
    2015-02-11 00:59:06: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_AFDINST
    2015-02-11 00:59:06: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_AFDINST '
    2015-02-11 00:59:06: Removing file /tmp/fileqVR08s
    2015-02-11 00:59:06: Successfully removed file: /tmp/fileqVR08s
    2015-02-11 00:59:06: /bin/su successfully executed
    2015-02-11 00:59:06: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_AFDINST -status
    2015-02-11 00:59:06: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_AFDINST -status '
    2015-02-11 00:59:06: Removing file /tmp/fileOqJoHc
    2015-02-11 00:59:06: Successfully removed file: /tmp/fileOqJoHc
    2015-02-11 00:59:06: /bin/su successfully executed
    2015-02-11 00:59:06: The 'ROOTCRS_AFDINST' status is SUCCESS
    2015-02-11 00:59:06:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_ACFSINST
    2015-02-11 00:59:06: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_ACFSINST
    2015-02-11 00:59:06: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_ACFSINST '
    2015-02-11 00:59:06: Removing file /tmp/file1r4ZQW
    2015-02-11 00:59:06: Successfully removed file: /tmp/file1r4ZQW
    2015-02-11 00:59:06: /bin/su successfully executed
    2015-02-11 00:59:06: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_ACFSINST -status
    2015-02-11 00:59:06: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_ACFSINST -status '
    2015-02-11 00:59:06: Removing file /tmp/filePXzECH
    2015-02-11 00:59:06: Successfully removed file: /tmp/filePXzECH
    2015-02-11 00:59:06: /bin/su successfully executed
    2015-02-11 00:59:06: The 'ROOTCRS_ACFSINST' status is SUCCESS
    2015-02-11 00:59:06: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl stop crs -f
    2015-02-11 00:59:09: Command output:
    >  CRS-2791: Starting shutdown of Oracle High Availability Services-managed resources on 'dbrac1'
    >  CRS-2673: Attempting to stop 'ora.evmd' on 'dbrac1'
    >  CRS-2673: Attempting to stop 'ora.cssdmonitor' on 'dbrac1'
    >  CRS-2673: Attempting to stop 'ora.mdnsd' on 'dbrac1'
    >  CRS-2673: Attempting to stop 'ora.gipcd' on 'dbrac1'
    >  CRS-2673: Attempting to stop 'ora.gpnpd' on 'dbrac1'
    >  CRS-2677: Stop of 'ora.cssdmonitor' on 'dbrac1' succeeded
    >  CRS-2677: Stop of 'ora.gipcd' on 'dbrac1' succeeded
    >  CRS-2677: Stop of 'ora.evmd' on 'dbrac1' succeeded
    >  CRS-2677: Stop of 'ora.mdnsd' on 'dbrac1' succeeded
    >  CRS-2677: Stop of 'ora.gpnpd' on 'dbrac1' succeeded
    >  CRS-2793: Shutdown of Oracle High Availability Services-managed resources on 'dbrac1' has completed
    >  CRS-4133: Oracle High Availability Services has been stopped.
    >End Command output
    2015-02-11 00:59:09: The return value of stop of CRS: 0
    2015-02-11 00:59:09: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl check crs
    2015-02-11 00:59:09: Command output:
    >  CRS-4639: Could not contact Oracle High Availability Services
    >End Command output
    2015-02-11 00:59:09: Oracle CRS stack has been shut down
    2015-02-11 00:59:09:      ckpt: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_BOOTCFG
    2015-02-11 00:59:09: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_BOOTCFG
    2015-02-11 00:59:09: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_BOOTCFG '
    2015-02-11 00:59:10: Removing file /tmp/file9QLcAB
    2015-02-11 00:59:10: Successfully removed file: /tmp/file9QLcAB
    2015-02-11 00:59:10: /bin/su successfully executed
    2015-02-11 00:59:10: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_BOOTCFG -status
    2015-02-11 00:59:10: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -chkckpt -name ROOTCRS_BOOTCFG -status '
    2015-02-11 00:59:10: Removing file /tmp/fileMeQD8v
    2015-02-11 00:59:10: Successfully removed file: /tmp/fileMeQD8v
    2015-02-11 00:59:10: /bin/su successfully executed
    2015-02-11 00:59:10: The 'ROOTCRS_BOOTCFG' status is SUCCESS
    2015-02-11 00:59:10: 'ROOTCRS_BOOTCFG' state is SUCCESS
    2015-02-11 00:59:10: Node specific initial boot configuration already completed
    2015-02-11 00:59:10: Startup level is 11
    2015-02-11 00:59:10: Attempt to start the whole CRS stack
    2015-02-11 00:59:10: Executing cmd: /u01/app/12.1.0/grid_1/bin/crsctl start crs -wait
    2015-02-11 01:09:57: Command output:
    >  CRS-4123: Starting Oracle High Availability Services-managed resources
    >  CRS-2672: Attempting to start 'ora.mdnsd' on 'dbrac1'
    >  CRS-2672: Attempting to start 'ora.evmd' on 'dbrac1'
    >  CRS-2676: Start of 'ora.mdnsd' on 'dbrac1' succeeded
    >  CRS-2676: Start of 'ora.evmd' on 'dbrac1' succeeded
    >  CRS-2672: Attempting to start 'ora.gpnpd' on 'dbrac1'
    >  CRS-2676: Start of 'ora.gpnpd' on 'dbrac1' succeeded
    >  CRS-2672: Attempting to start 'ora.gipcd' on 'dbrac1'
    >  CRS-2676: Start of 'ora.gipcd' on 'dbrac1' succeeded
    >  CRS-2672: Attempting to start 'ora.cssdmonitor' on 'dbrac1'
    >  CRS-2676: Start of 'ora.cssdmonitor' on 'dbrac1' succeeded
    >  CRS-2672: Attempting to start 'ora.cssd' on 'dbrac1'
    >  CRS-2672: Attempting to start 'ora.diskmon' on 'dbrac1'
    >  CRS-2676: Start of 'ora.diskmon' on 'dbrac1' succeeded
    >  CRS-2789: Cannot stop resource 'ora.diskmon' as it is not running on server 'dbrac1'
    >  CRS-2883: Resource 'ora.cssdmonitor' failed during Clusterware stack start.
    >  CRS-4406: Oracle High Availability Services synchronous start failed.
    >  CRS-4000: Command Start failed, or completed with errors.
    >End Command output
    2015-02-11 01:09:57: The return value of blocking start of CRS: 1
    2015-02-11 01:09:57: Failed to start the Oracle CRS stack
    2015-02-11 01:09:57: Executing cmd: /u01/app/12.1.0/grid_1/bin/clsecho -p has -f clsrsc -m 117
    2015-02-11 01:09:57: Command output:
    >  CLSRSC-117: Failed to start Oracle Clusterware stack
    >End Command output
    2015-02-11 01:09:57: Executing cmd: /u01/app/12.1.0/grid_1/bin/clsecho -p has -f clsrsc -m 117
    2015-02-11 01:09:57: Command output:
    >  CLSRSC-117: Failed to start Oracle Clusterware stack
    >End Command output
    2015-02-11 01:09:57: CLSRSC-117: Failed to start Oracle Clusterware stack
    2015-02-11 01:09:57: ###### Begin DIE Stack Trace ######
    2015-02-11 01:09:57:     Package         File                 Line Calling  
    2015-02-11 01:09:57:     --------------- -------------------- ---- ----------
    2015-02-11 01:09:57:  1: main            rootcrs.pl            211 crsutils::dietrap
    2015-02-11 01:09:57:  2: crsinstall      crsinstall.pm         941 main::__ANON__
    2015-02-11 01:09:57:  3: crsinstall      crsinstall.pm         857 crsinstall::start_cluster
    2015-02-11 01:09:57:  4: crsinstall      crsinstall.pm         281 crsinstall::prepare_to_start_clusterware
    2015-02-11 01:09:57:  5: crsinstall      crsinstall.pm         219 crsinstall::CRSInstall
    2015-02-11 01:09:57:  6: main            rootcrs.pl            334 crsinstall::new
    2015-02-11 01:09:57: ####### End DIE Stack Trace #######
    2015-02-11 01:09:57: ROOTCRS_STACK checkpoint has failed
    2015-02-11 01:09:57: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -writeckpt -name ROOTCRS_STACK -state FAIL
    2015-02-11 01:09:57: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -writeckpt -name ROOTCRS_STACK -state FAIL '
    2015-02-11 01:09:57: Removing file /tmp/fileJKiQVi
    2015-02-11 01:09:57: Successfully removed file: /tmp/fileJKiQVi
    2015-02-11 01:09:57: /bin/su successfully executed
    2015-02-11 01:09:57: Succeeded in writing the checkpoint:'ROOTCRS_STACK' with status:FAIL
    2015-02-11 01:09:57: Running as user grid: /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -writeckpt -name ROOTCRS_STACK -state FAIL
    2015-02-11 01:09:57: s_run_as_user2: Running /bin/su grid -c ' /u01/app/12.1.0/grid_1/bin/cluutil -ckpt -oraclebase /u01/app/grid -writeckpt -name ROOTCRS_STACK -state FAIL '
    2015-02-11 01:09:58: Removing file /tmp/file3h3DN6
    2015-02-11 01:09:58: Successfully removed file: /tmp/file3h3DN6
    2015-02-11 01:09:58: /bin/su successfully executed
    2015-02-11 01:09:58: Succeeded in writing the checkpoint:'ROOTCRS_STACK' with status:FAIL

Maybe you are looking for

  • Error while creating filter using BD59 and BD64

    Hi Friends- While creating filters for HRMD_A  message type  using BD59 i have added one field  stat2 for segment E1P0000    and its coming also in  BD64  while creating filter group  but when i double click on it to give value to it  it  gives me er

  • Operating System on MSI GT 70 0ND - Windows 8 32 bit??

    Greetings! I'm new on the forum so I hope I didn't mess with the forum section... However as in subject I'm here seeking some information about the OS installed on the Laptop I own: due to the hardware configuration (i7 processor and 12 Gb Ram) I ass

  • Third party installer and LabVIEW/VISA RT engines

    I would like to use a third party installer (Q-Setup) for a stand-alone application I recently built using LabVIEW 7.1. The program was developed to run on Windows XP/2000/98 and requires serial communication with multiple devices. I realize LabVIEW

  • Problem in opening new tab

    Problem in opening Mozila firefox tab. when we open mozila firefox blank page open and when we open next tab, the new tab open with "search.babylon.com/?affID=112060&tt=321- i have tried lot to stop this automatically open search of babylon but not d

  • Adding Facebook and Twitter links to iWeb

    Can anyone explain how to add FB and Twitter logos and links to my entry page/ Thanks