CUCM Version 9.X generate alerts every day

Hi To all
I receive everyday alerts that two nodes from the cluster are down
ServerDown occurred.
Node 10.10.1.1 is unreachable.
 ServerDown occurred.
Node 10.10.1.2 is unreachable.
We have a cluster of four cucms
First ucs server located to the building A and holding the below cucms
10.10.0.1
10.10.0.2
Second ucs server located to the building B and holding the below cucms
10.10.1.1
10.10.1.2
Building A connected with Building B with dark fiber
Checked  the interface into the layer 3 devices on both sides  and are clear
No errors no drop packets
check the output from the replication status
The ping msec is acceptable?
admin:utils dbreplication runtimestate
DB and Replication Services: ALL RUNNING
DB CLI Status: No other dbreplication CLI is running...
Cluster Replication State: Replication status command started at: 2014-03-20-09-56
     Replication status command COMPLETED 603 tables checked out of 603
     Errors or Mismatches Were Found!!!
     Use 'file view activelog cm/trace/dbl/sdi/ReplicationStatus.2014_03_20_09_56_34.out' to see the details
DB Version: ccm9_1_1_10000_11
Repltimeout set to: 300s
PROCESS option set to: 1
Cluster Detailed View from CM1 (4 Servers):
                                PING            CDR Server      REPL.   DBver&  REPL.   REPLICATION SETUP
SERVER-NAME     IP ADDRESS      (msec)  RPC?    (ID) & STATUS   QUEUE   TABLES  LOOP?   (RTMT) & details
CM1     10.10.0.1      0.032   Yes     (2)  Connected   0      match   Yes     (2) PUB Setup Completed
CM2     10.10.0.2      0.099   Yes     (3)  Connected   0      match   Yes     (2) Setup Completed
CM3     10.10.1.1      1.378   Yes     (4)  Connected   140    match   Yes     (2) Setup Completed
CM4     10.10.1.2      1.232   Yes     (5)  Connected   140    match   Yes     (2) Setup Completed
Regrds
cc

Hi,
Your cluster could be affected by the following bug
https://tools.cisco.com/bugsearch/bug/CSCtl75789
Symptom:
The RTMT receives a false alarm that the Server is down.
Conditions:
Any error in the network that closes the TCP session on the ports 1090 and 1099 will cause the false alarm.
Workaround:
none.
HTH
Manish

Similar Messages

  • PRs generated every day for consignment stock

    Hi all,
    we have schedualiing agreemet in place for some of our consingment stock but we are fadng issue that every day system generates PR for some of those materials for no reason.Ithese materials are MRP relevant.
    any suggestion.
    thanks

    If scheduling agreements have been set up for the consignment materials, the schedule lines should have been created instead of PRs.
    Do check your source list for the affected materials; ensure that the scheduling document and line items are entered. Also ensure that '2' is entered under the MRP relevancy field.
    Other things you can check include the validity date of the source list.
    Hope this helps.

  • I have an iMac with numbers '09. I modify a file and save it to documents every day.  How do I share it to my late model iPad, which also has numbers '09?  When I do it according to the directions, it shares an original version of the document, as it

    When I try to use iTunes to sync numbers doc from my iMac to my iPad, it shares an original version as installed over a year ago.  I modify this doc every day and store it to documents, but the iPad won't import it.  It doesn't appear as an existing doc on the menu.

    Everything  is updated.  I got the later versions of numbers for both units,  the iMac is running Mavericks, and the iPad is only one year old, but as I recall iOS 7 came out after, so I upgraded the pad and my phone.

  • HT4623 my IPOD is using version 5.1.1 and says it is up to date.  One of my apps updated for IOS7 and now doesn't work on my IPOD.  What can I do?  It is a podcast app that I use every day.

    My IPOD touch is using version 5.1.1. and no updates available.  I use a podcast app which I listen to every day.  The app updated for the new IOS7 and now doesn't work for me any more. 

    All yo can do is either find a compatible app that works for your 3G iPod (iOS 5.1.1) or purchase a new model iPod.

  • FF Nightly 34.0a1 keeps updating every day to the same version?!

    Ive noticed a few things this last week..
    1. first, FF Nightly (the 64bit version) has updated itself to the same version number every day for the last week..
    2. Video play using FF is terrible.
    3. nightly looses my privacy settings..
    4. Some websites say the browser has cookies turned off when they are turned on.
    5. Can't even access some websites due to their spam content, I.e. They trying to force me to watch an advert, befor moving on to the item I clicked on.
    6. Some pages only load partially.
    7. Facebook and farmville loading dead slow. I could send the info faster with morse code and a straight key.
    any ideas?

    This is about Firefox Nightly builds adding support for new security features.
    A lot of web servers haven't implemented these yet and thus aren't working properly.
    That is the risk that you run with using alpha development builds as those versions are meant for testers to check for issues with such new features.
    You should stay with the current release version (Fx 32 has been released) if you aren't experienced enough to handle possible issues.

  • Generate AWR Report automatically every day

    Hi Friends,
    I would like to generate AWR Report automatically every day. How do i do it.
    The Start Time will be 00:00 of Previous day and the end Time will be : 00:00 of current day. The File format is html.
    Currently i am using awrrpt.sql to generate report manually and i would like to achieve it automatically,I am not sure how to pass the values of start and end time (From which table i can get the values)?
    Regards,
    DB

    Hi, DB.
    You may use the below sql script , the sql script generates the AWR report for the duration of 2 days in HTML.
    So you  change
    1) the where condition as per your requirement,
    2) report name in sql script,
    3) and convert it as shell or bat script based on your environment, and schedule it in your OS job scheduler / crontab.
    =-=-=-=-
    connect / as sysdba
    REM set termout off
    variable snap1 number
    variable snap2 number
    COLUMN starthr new_value bhr
    COLUMN endhr new_value ehr
    COLUMN crdate new_value cdt
    begin
    select
      distinct  min(s.snap_id)
    into :snap1
      from dba_hist_snapshot s
    where to_char(trunc(end_interval_time,'HH24'),'HH24') = to_char(trunc(sysdate,'HH24'),'HH24')-2 and trunc(end_interval_time)=trunc(sysdate);
    select
      distinct max(s.snap_id)
    into :snap2
      from dba_hist_snapshot s
    where to_char(trunc(end_interval_time,'HH24'),'HH24') =to_char(trunc(sysdate,'HH24'),'HH24') and trunc(end_interval_time)=trunc(sysdate);
    end;
    COLUMN starthr new_value bhr
    COLUMN endhr new_value ehr
    COLUMN crdate new_value cdt
    select to_char(trunc(sysdate, 'HH24'),'HH24')-2 starthr,
            to_char(trunc(sysdate, 'HH24'),'HH24') endhr,
           to_char(trunc(sysdate),'DD-MON-YYYY') crdate
    from dual;
    define begin_snap=:snap1
    define end_snap=:snap2
    define report_name=/orashare1/reports/awrreport/AWRRPT_PROD_1_${1^^}_${EXDATE}_mor.html
    define  report_type  = 'html';
    @@?/rdbms/admin/awrrpt.sql
    exit

  • Receiving upgrade prompt every day for the same version

    I am receiving a prompt in Creative Cloud to upgrade Photoshop CC. Every day. To the same version.
    What gives? Is it not upgrading properly? Is this a known bug?
    thanks,
    John

    … aaand the prompt returns again today. For the same version that (should be) installed.
    Not being facetious, really am curious: Does anyone at Adobe monitor these forums? Or is this a user-support / sharing form?
    thanks,
    John

  • I have to restart my computer at least once every day in order to get my podcast to update?  I thought the new version would fix this but it's just getting worse.  Please help.

    I have to restart my computer at least once every day in order to get my podcast to update?  I thought the new version would fix this but it's just getting worse.  Please help

    Did you check the Processes tab in the Task Manager?
    See "Hang at exit":
    * http://kb.mozillazine.org/Firefox_hangs
    * [[Firefox hangs]]

  • Assets alert/notification every day!

    So, every day, sometimes twice a day, I get the little exclamation point on the creative cloud icon in my task bar. when i click on it, i scroll over to Assets and it goes away. I don't do anything or make any changes. I just have to open that tab to make it go away. It's pretty annoying, actually. Any idea why I'm getting that alert and how do I make it stop?
    Thanks,
    Drew

    Repeated updates http://helpx.adobe.com/creative-cloud/kb/updates-repeatedly-applied-cc.html may help

  • Why are Weekly Emergency Alerts now occurring multiple times every day?

    Hi, up until recently, it seemed Weekly Emergency Alerts occurred Weekly, and Monthly occurred Monthly.Recently, it seems the Weekly EAS Alerts are occurring an average of 3 times every day, and I am wondering what has changed.It is getting annoying to experience an Alert every six hours or so, and makes little sense to me.Thank you in advance for any explanation or information.

    I could be wrong, but I bet the EAS system (which Comcast has no control over) has taken a more aggressive stance on warnings after all the tornados and floods and fires the US is experiencing. I haven't seen an EAS since we had our last flood warning in Houston about 30 days ago.

  • Database auto restart at 2:00 AM every day

    Hi,
    I've installed 10.2.0.2.0 database in Windows 2000 Server.
    Now it restarts automatically at 2:00 AM every day.
    I've checked OS, there is no JOB run at 2:00 AM, and event viewer look normal at 2:00 AM.
    When it restarts, sometimes it would restart successfully, sometimes it wouldn't(mounted, not open).
    Here is the alert log.
    Thu Jan 31 15:23:37 2008
    Thread 1 advanced to log sequence 115
    Current log# 5 seq# 115 mem# 0: C:\ORACLE\PRODUCT\10.2.0\ORADATA\MALECARE\REDO05.LOG
    Thu Jan 31 22:00:21 2008
    Thread 1 advanced to log sequence 116
    Current log# 6 seq# 116 mem# 0: C:\ORACLE\PRODUCT\10.2.0\ORADATA\MALECARE\REDO06.LOG
    Fri Feb 01 00:50:52 2008
    Thread 1 advanced to log sequence 117
    Current log# 3 seq# 117 mem# 0: C:\ORACLE\PRODUCT\10.2.0\ORADATA\MALECARE\REDO03.LOG
    Fri Feb 01 02:00:16 2008
    Starting background process EMN0
    EMN0 started with pid=32, OS id=5848
    Fri Feb 01 02:00:16 2008
    Shutting down instance: further logons disabled
    Fri Feb 01 02:00:17 2008
    Stopping background process QMNC
    Fri Feb 01 02:00:18 2008
    Stopping background process CJQ0
    Fri Feb 01 02:00:19 2008
    Stopping background process MMNL
    Fri Feb 01 02:00:20 2008
    Stopping background process MMON
    Fri Feb 01 02:00:21 2008
    Shutting down instance (immediate)
    License high water mark = 17
    Fri Feb 01 02:00:21 2008
    Stopping Job queue slave processes
    Fri Feb 01 02:00:22 2008
    Job queue slave processes stopped
    All dispatchers and shared servers shutdown
    Fri Feb 01 02:00:31 2008
    ALTER DATABASE CLOSE NORMAL
    Fri Feb 01 02:00:31 2008
    SMON: disabling tx recovery
    SMON: disabling cache recovery
    Fri Feb 01 02:00:32 2008
    Shutting down archive processes
    Archiving is disabled
    Fri Feb 01 02:00:52 2008
    ARC0: Becoming the 'no FAL' ARCH
    ARC0: Becoming the 'no SRL' ARCH
    ARC0: Archiving disabled
    Fri Feb 01 02:00:52 2008
    ARCH shutting down
    ARC0: Archival stopped
    Fri Feb 01 02:00:53 2008
    ARC2: Becoming the 'no FAL' ARCH
    Fri Feb 01 02:00:53 2008
    ARC2: Becoming the 'no SRL' ARCH
    ARC2: Archiving disabled
    ARCH shutting down
    ARC2: Archival stopped
    Fri Feb 01 02:00:54 2008
    ARC3: Becoming the 'no FAL' ARCH
    ARC3: Becoming the 'no SRL' ARCH
    ARC3: Archiving disabled
    Fri Feb 01 02:00:54 2008
    ARCH shutting down
    ARC3: Archival stopped
    Fri Feb 01 02:00:55 2008
    ARC1: Becoming the heartbeat ARCH
    Fri Feb 01 02:00:55 2008
    ARC1: Archiving disabled
    ARCH shutting down
    ARC1: Archival stopped
    Fri Feb 01 02:00:57 2008
    Thread 1 closed at log sequence 117
    Successful close of redo thread 1
    Fri Feb 01 02:00:57 2008
    Completed: ALTER DATABASE CLOSE NORMAL
    Fri Feb 01 02:00:57 2008
    ALTER DATABASE DISMOUNT
    Completed: ALTER DATABASE DISMOUNT
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Fri Feb 01 02:01:00 2008
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =18
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.2.0.
    System parameters with non-default values:
    processes = 150
    __shared_pool_size = 197132288
    shared_pool_size = 0
    __large_pool_size = 4194304
    large_pool_size = 0
    __java_pool_size = 4194304
    java_pool_size = 0
    __streams_pool_size = 0
    streams_pool_size = 0
    spfile = C:\ORACLE\PRODUCT\10.2.0\DB_1\DBS\SPFILEMALECARE.ORA
    sga_target = 805306368
    control_files = C:\ORACLE\PRODUCT\10.2.0\ORADATA\MALECARE\CONTROL01.CTL, C:\ORACLE\PRODUCT\10.2.0\ORADATA\MALECARE\CONTROL02.CTL, C:\ORACLE\PRODUCT\10.2.0\ORADATA\MALECARE\CONTROL03.CTL
    db_block_size = 8192
    __db_cache_size = 591396864
    db_cache_size = 0
    compatible = 10.2.0.1.0
    log_archive_max_processes= 4
    db_file_multiblock_read_count= 16
    db_recovery_file_dest = C:\oracle\product\10.2.0\flash_recovery_area
    db_recovery_file_dest_size= 21474836480
    undo_management = AUTO
    undo_tablespace = UNDOTBS1
    remote_login_passwordfile= EXCLUSIVE
    db_domain =
    dispatchers = (PROTOCOL=TCP) (SERVICE=malecareXDB)
    job_queue_processes = 10
    audit_file_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\MALECARE\ADUMP
    background_dump_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\MALECARE\BDUMP
    user_dump_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\MALECARE\UDUMP
    core_dump_dest = C:\ORACLE\PRODUCT\10.2.0\ADMIN\MALECARE\CDUMP
    db_name = malecare
    open_cursors = 300
    pga_aggregate_target = 203423744
    PMON started with pid=2, OS id=2112
    PSP0 started with pid=3, OS id=3524
    MMAN started with pid=4, OS id=3528
    DBW0 started with pid=5, OS id=6008
    LGWR started with pid=6, OS id=3544
    CKPT started with pid=7, OS id=3516
    SMON started with pid=8, OS id=3508
    RECO started with pid=9, OS id=3504
    CJQ0 started with pid=10, OS id=3824
    MMON started with pid=11, OS id=3820
    MMNL started with pid=12, OS id=676
    Fri Feb 01 02:01:00 2008
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 1 shared server(s) ...
    Fri Feb 01 02:01:00 2008
    ALTER DATABASE MOUNT
    Fri Feb 01 02:01:04 2008
    Setting recovery target incarnation to 2
    Fri Feb 01 02:01:04 2008
    Successful mount of redo thread 1, with mount id 3434381212
    Fri Feb 01 02:01:04 2008
    Database mounted in Exclusive Mode
    Completed: ALTER DATABASE MOUNT
    Fri Feb 01 02:16:04 2008
    db_recovery_file_dest_size of 20480 MB is 15.35% used. This is a
    user-specified limit on the amount of space that will be used by this
    database for recovery-related files, and does not reflect the amount of
    space available in the underlying filesystem or ASM diskgroup.

    Hi,
    We have a RMAN every 2:00 PM.
    Here is the log.
    Recovery Manager: Release 10.2.0.2.0 - Production on Thu Jan 31 14:00:00 2008
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    connected to target database: MALECARE (DBID=3432372830)
    connected to recovery catalog database
    RMAN> CROSSCHECK ARCHIVELOG ALL;
    2> DELETE NOPROMPT ARCHIVELOG UNTIL TIME 'SYSDATE-7';
    3> exit
    starting full resync of recovery catalog
    full resync complete
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=141 devtype=DISK
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_24\O1_MF_1_77_3SGWO1JH_.ARC recid=50 stamp=644806820
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_24\O1_MF_1_78_3SHKS76X_.ARC recid=51 stamp=644828457
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_24\O1_MF_1_79_3SJYJ0M1_.ARC recid=52 stamp=644874242
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_25\O1_MF_1_80_3SKK0N8R_.ARC recid=53 stamp=644893207
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_25\O1_MF_1_81_3SKYJGFL_.ARC recid=54 stamp=644907024
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_25\O1_MF_1_82_3SM2RD0G_.ARC recid=55 stamp=644944142
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_25\O1_MF_1_83_3SMTVZDW_.ARC recid=56 stamp=644968834
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_26\O1_MF_1_84_3SN5DXH1_.ARC recid=57 stamp=644979617
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_26\O1_MF_1_85_3SNY0W44_.ARC recid=58 stamp=645004830
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_26\O1_MF_1_86_3SPCRCFB_.ARC recid=59 stamp=645051661
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_27\O1_MF_1_87_3SPSS7JO_.ARC recid=60 stamp=645066026
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_27\O1_MF_1_88_3SQVFHY8_.ARC recid=61 stamp=645100466
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_27\O1_MF_1_89_3SRCDP11_.ARC recid=62 stamp=645116824
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_28\O1_MF_1_90_3SSG4YLD_.ARC recid=63 stamp=645152418
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_28\O1_MF_1_91_3SSZS0LF_.ARC recid=64 stamp=645170467
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_28\O1_MF_1_92_3SV84W2B_.ARC recid=65 stamp=645211806
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_28\O1_MF_1_93_3SVR09FF_.ARC recid=66 stamp=645228044
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_29\O1_MF_1_94_3SW2K0XN_.ARC recid=67 stamp=645238820
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_29\O1_MF_1_95_3SYDCGXP_.ARC recid=68 stamp=645314417
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_30\O1_MF_1_96_3SYPWVL8_.ARC recid=69 stamp=645325214
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_30\O1_MF_1_97_3T10Q554_.ARC recid=70 stamp=645400807
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_31\O1_MF_1_98_3T1C8TO9_.ARC recid=71 stamp=645411613
    validation succeeded for archived log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_31\O1_MF_1_99_3T2D3M5V_.ARC recid=72 stamp=645445238
    Crosschecked 23 objects
    released channel: ORA_DISK_1
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: sid=141 devtype=DISK
    deleted archive log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_24\O1_MF_1_77_3SGWO1JH_.ARC recid=50 stamp=644806820
    deleted archive log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_24\O1_MF_1_78_3SHKS76X_.ARC recid=51 stamp=644828457
    deleted archive log
    archive log filename=C:\ORACLE\PRODUCT\10.2.0\FLASH_RECOVERY_AREA\MALECARE\ARCHIVELOG\2008_01_24\O1_MF_1_79_3SJYJ0M1_.ARC recid=52 stamp=644874242
    Deleted 3 objects
    Recovery Manager complete.
    select to_char(LAST_DATE,'yyyy-mm-dd hh24:mi:ss'),
    to_char(NEXT_DATE,'yyyy-mm-dd hh24:mi:ss'),interval
    from dba_jobs
    TO_CHAR(LAST_DATE,'YYYY-MM-DDHH24:MI:SS') TO_CHAR(NEXT_DATE,'YYYY-MM-DDHH24:MI:SS') INTERVAL
    2008-02-01 12:14:54 2008-02-01 12:19:54 SYSDATE + 5/1440
    2008-02-01 12:18:54 2008-02-01 12:19:54 sysdate + 1 / (24 * 60)
    2008-02-01 12:09:49 2008-02-01 13:09:49 SYSDATE + 1/24
    2008-02-01 12:09:49 2008-02-01 13:09:49 SYSDATE + 1/24
    2008-01-27 12:00:01 2008-02-03 12:00:00 TRUNC(NEXT_DAY(SYSDATE, 1))+12/24
    2008-02-01 01:00:02 2008-02-02 01:00:00 TRUNC(SYSDATE+1)+1/24

  • Load Every Day 2LIS_03_BX (Full Load landscape) BI 7.0

    Hi,
    We want a simple landscape of material stocks from an SAP R/3 system to SAP BW.  We would like to transfer the complete current material stock for a calendar day (u201CSnapshotsu201D), every day. We think that the correct datasource for taht is 2LIS_03_BX, in "How To ..." documents appears that in an Infopackage for this datasource you can set an indicator:
    - Full update
    - Create Opening Balance
    But in BI 7.0 this option doesn't appears ... we can set only "Generate Initial Status" indicator, in infopazkage ...
    We try another way, creating two differents DTP, one in "Full" mode and other in "Initial Non-Cumulative for Non-Cumulative Values", but it doesn't works ... The first time we load all data from stock inizialitation (R/3 transaction MCNB), is correct, but the netx day appears the same data ... Any Idea ? Is necessary to execute the inizialitation process in R/3 every day and after that the data load to BW ¿?
    We know that we can create a Datasource with R/3 table MARD, but we want to check this landscape ...
    Thanks in advanced.
    Best Regards,
    Carlos.

    Hello,
    thanks for your answer, it was very useful for us.
    But We don't understand your second paragraph, when you say "use the snapshot capability" ...
    We thinked that with the solution you described in the first paragraph we can implement "snapshot capability", without
    initializing delta or using LO cockpit and delta jobs ? Deleting setup table and after executing setup everyday, don't we obtain a snapshot scenario ? Because we think that with delta queues is not possible to execute setup process, is that true ?
    Another thing, I read the document you recommended, and is an old version, because if you see the infopackage to load BX appears the option full, page eleven, and the datasource is 2LIS_40_S278 ... for that we thinked that is not useful for us ... We read about snapshot capability in How To ... handle Inventory Management Scenarios in BW (Version 1.3 - January 2005), but is an old version too. We think for Bi 7.0 there is no documentation.
    Best regards,
    Carlos.

  • CRS core dump every day 3 times ????

    RDBMS Version: 10.1.0.4
    Operating System and Version: RedHat Linux RHEL ES 3.0
    Error Number (if applicable): OCR api procr_open_key failed for key
    Product (i.e. SQL*Loader, Import, etc.): RAC
    I have RAC 10.1.0.4, Linux RHEL ES 3.0.
    I notice that I have in $ORA_CRS_HOME/crs/init every day 3 core dump in same time (00:27, 08:28, 16:28), 50Mb files...
    In $ORA_CRS_HOME/crs/log find:
    2005-12-06 08:28:27.219: ALERT [CAAOCRLOOKUP:2803432368] OCR api procr_open_key failed for key CRS.CUR.ora!rac1!vip
    OCR error code = 3 OCR error msg:
    crsd.bin: caaocr.cpp:200: Assertion `0==1' failed.
    And then, CRS start again messages output...
    I check everything, and everything looks fine (TAF 10g, crs, css, logs,..), exept this error..
    Any help??

    There are quite a few bugs and without a stack from the core and more
    information it would be virtually impossible to narrow down the issue.
    You may also have to reproduce the problem with ORA_CRSDEBUG=1
    Regards
    Fairlie

  • Mac Pro turns itself on every day at the same time

    My Mac Pro suddenly decided to start turning itself on every day at 6:00:12pm local time (12:00:12AM GMT). It turns on at exactly 12 seconds after 6:00pm every day.
    I recently upgraded to OSX 10.5 and installed the point update. It did it before the point update and continues to after the point update.
    I have had it since April and it has never done this before. It did NOT do this under 10.4.
    I have the options in system settings to NOT wake on LAN event and NOT restart after power failure. It is NOT set to automatically turn on but it is set to automatically turn itself off at 1:00am.
    These settings have not changed since 10.4 and I have verified them. No other software has recently been installed since the update to 10.5. I did update the Wacom driver to the new Leopard driver. That is all. I have the Wacom tablet unplugged from the computer.
    Any ideas?
    Here is the console log from yesterday. It pretty much looks the same every day.
    Log file:
    Nov 18 18:00:12 localhost com.apple.launchctl.System[2]: kern.maxproc: 532 -> 512
    Nov 18 18:00:15 localhost com.apple.launchctl.System[2]: launchctl: Please convert the following to launchd: /etc/mach_init.d/dashboardadvisoryd.plist
    Nov 18 18:00:15 localhost com.apple.launchd[1] (org.cups.cupsd): Unknown key: SHAuthorizationRight
    Nov 18 18:00:15 localhost com.apple.launchd[1] (org.ntp.ntpd): Unknown key: SHAuthorizationRight
    Nov 18 18:00:16 localhost kernel[0]: npvhash=4095
    Nov 18 18:00:16 localhost DirectoryService[12]: Launched version 5.0 (v514)
    Nov 18 18:00:16 localhost kernel[0]: hi mem tramps at 0xffe00000
    Nov 18 18:00:16 localhost kernel[0]: PAE enabled
    Nov 18 18:00:16 localhost kextd[11]: 412 cached, 0 uncached personalities to catalog
    Nov 18 18:00:16 localhost kernel[0]: 64 bit mode enabled
    Nov 18 18:00:16 localhost kernel[0]: Darwin Kernel Version 9.1.0: Wed Oct 31 17:46:22 PDT 2007; root:xnu-1228.0.2~1/RELEASE_I386
    Nov 18 18:00:16 localhost kernel[0]: standard timeslicing quantum is 10000 us
    Nov 18 18:00:16 localhost kernel[0]: vmpagebootstrap: 973126 free pages and 75450 wired pages
    Nov 18 18:00:16 localhost kernel[0]: migtable_maxdispl = 79
    Nov 18 18:00:16 localhost kernel[0]: 88 prelinked modules
    Nov 18 18:00:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=0 LocalApicId=0 Enabled
    Nov 18 18:00:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=1 LocalApicId=1 Enabled
    Nov 18 18:00:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=2 LocalApicId=2 Enabled
    Nov 18 18:00:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=3 LocalApicId=3 Enabled
    Nov 18 18:00:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=4 LocalApicId=5 Enabled
    Nov 18 18:00:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=5 LocalApicId=6 Enabled
    Nov 18 18:00:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=6 LocalApicId=7 Enabled
    Nov 18 18:00:16 localhost kernel[0]: AppleACPICPU: ProcessorApicId=7 LocalApicId=4 Enabled
    Nov 18 18:00:16 localhost kernel[0]: Loading security extension com.apple.security.TMSafetyNet
    Nov 18 18:00:16 localhost kernel[0]: calling mpopolicyinit for TMSafetyNet
    Nov 18 18:00:16 localhost kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    Nov 18 18:00:16 localhost mDNSResponder mDNSResponder-164 (Nov 4 2007 13:23:04)[16]: starting
    Nov 18 18:00:16 localhost kernel[0]: Loading security extension com.apple.nke.applicationfirewall
    Nov 18 18:00:16 localhost kernel[0]: Loading security extension com.apple.security.seatbelt
    Nov 18 18:00:16 localhost kernel[0]: calling mpopolicyinit for mb
    Nov 18 18:00:17 localhost kernel[0]: Seatbelt MACF policy initialized
    Nov 18 18:00:17 localhost kernel[0]: Security policy loaded: Seatbelt Policy (mb)
    Nov 18 18:00:17 localhost kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    Nov 18 18:00:17 localhost kernel[0]: The Regents of the University of California. All rights reserved.
    Nov 18 18:00:17 localhost kernel[0]: MAC Framework successfully initialized
    Nov 18 18:00:17 localhost kernel[0]: using 16384 buffer headers and 4096 cluster IO buffer headers
    Nov 18 18:00:17 localhost kernel[0]: devfsmakenode: not ready for devices!
    Nov 18 18:00:17 localhost kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    Nov 18 18:00:17 localhost kernel[0]: ACPI: System State [S0 S3 S4 S5] (S3)
    Nov 18 18:00:17 localhost kernel[0]: mbinit: done
    Nov 18 18:00:17 localhost kernel[0]: Security auditing service present
    Nov 18 18:00:17 localhost kernel[0]: BSM auditing present
    Nov 18 18:00:17 localhost kernel[0]: rooting via boot-uuid from /chosen: A3FDED86-37C7-3DF1-9FCC-6C589DDC1077
    Nov 18 18:00:17 localhost kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    Nov 18 18:00:17 localhost kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleAHCI/PRT0 @0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOBlockStorageDri ver/ST3500630AS P Media/IOGUIDPartitionScheme/Customer@2
    Nov 18 18:00:17 localhost kernel[0]: BSD root: disk0s2, major 14, minor 2
    Nov 18 18:00:17 localhost kernel[0]: FireWire (OHCI) TI ID 8025 built-in now active, GUID 0019e3fffe8072a0; max speed s800.
    Nov 18 18:00:17 localhost kernel[0]: Jettisoning kernel linker.
    Nov 18 18:00:17 localhost kernel[0]: Resetting IOCatalogue.
    Nov 18 18:00:17 localhost kernel[0]: Matching service count = 0
    Nov 18 18:00:17 localhost kernel[0]: Matching service count = 18
    Nov 18 18:00:17: --- last message repeated 4 times ---
    Nov 18 18:00:17 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:19:e3:66:97:7a
    Nov 18 18:00:17 localhost kernel[0]: AppleIntel8254XEthernet: Ethernet address 00:19:e3:66:97:7b
    Nov 18 18:00:17 localhost kernel[0]: Previous Shutdown Cause: 5
    Nov 18 18:00:17 localhost mDNSResponder[16]: Adding registration domain tjasher.members.mac.com.
    Nov 18 18:00:17 localhost mDNSResponder[16]: Setting up AutoTunnel address FD14:A58A:53D0:1166:0219:E3FF:FE66:977A
    Nov 18 18:00:19 localhost fseventsd[42]: bumping event counter to: 0xfa0a6 (current 0x0) from log file '00000000000f52e0'
    Nov 18 18:00:22 localhost kernel[0]: Intel8254x -- Link Down -- 00:19:e3:66:97:7a -- called by enableHardware() --
    Nov 18 18:00:26 localhost kernel[0]: -- Auto-Negotiation Advertisement Register (04d) = 0xde1
    Nov 18 18:00:25 localhost /System/Library/CoreServices/loginwindow.app/Contents/MacOS/loginwindow[37]: Login Window Application Started
    Nov 18 18:00:26 localhost kernel[0]: -- Auto-Negotiation Link Partner Ability Register (05d) = 0x0
    Nov 18 18:00:22 localhost bootlog[48]: BOOT_TIME: 1195430411 0
    Nov 18 18:00:26 MacPro kernel[0]: -- Auto-Negotiation Gigabit Advertisement Register (09d) = 0xe00
    Nov 18 18:00:26 MacPro kernel[0]: -- Auto-Negotiation Gigabit Link Partner Ability Register (10d) = 0x4000
    Nov 18 18:00:26 MacPro kernel[0]: -- PHY Specific Status Register (17d) = 0x8040
    Nov 18 18:00:26 MacPro xgridcontrollerd[28]: Error: controller missing password file "/etc/xgrid/controller/client-password"
    Nov 18 18:00:26 MacPro com.apple.launchd[1] (com.apple.xgridcontrollerd[28]): Exited with exit code: 2
    Nov 18 18:00:27 MacPro kernel[0]: Intel8254x -- Link Up -- 00:19:e3:66:97:7b -- called by interruptOccurred() --
    Nov 18 18:00:26 MacPro rpc.statd[33]: statd.notify - no notifications needed
    Nov 18 18:00:26 MacPro xgridcontrollerd[28]: Notice: controller failed
    Nov 18 18:00:27 MacPro kernel[0]: -- Auto-Negotiation Advertisement Register (04d) = 0xde1
    Nov 18 18:00:26 MacPro configd[15]: setting hostname to "MacPro.local"
    Nov 18 18:00:27 MacPro kernel[0]: -- Auto-Negotiation Link Partner Ability Register (05d) = 0xcde1
    Nov 18 18:00:26 MacPro /usr/sbin/ocspd[64]: starting
    Nov 18 18:00:27 MacPro kernel[0]: -- Auto-Negotiation Gigabit Advertisement Register (09d) = 0xe00
    Nov 18 18:00:27 MacPro kernel[0]: -- Auto-Negotiation Gigabit Link Partner Ability Register (10d) = 0x7c00
    Nov 18 18:00:27 MacPro kernel[0]: -- PHY Specific Status Register (17d) = 0xaf08
    Nov 18 18:00:27 MacPro kernel[0]: Intel8254X -- Negotiated Speed: 1 Gb/s, Duplex: Full, Flow Control: Receive Pause Enabled, Transmit Pause Enabled
    Nov 18 18:00:27 MacPro kernel[0]: sandbox-exec 28 PARENTAGEEXEC_AND_DROPPROFILE SBF /usr/libexec/xgrid/xgridcontrollerd 13 (seatbelt)
    Nov 18 18:00:28 MacPro kextd[11]: writing kernel link data to /var/run/mach.sym
    Nov 18 18:00:30 MacPro com.wacom.wacomtablet[90]: TabletDriver[90]: Env RUNWITHLAUNCHD is set to 1
    Nov 18 18:00:31 MacPro loginwindow[37]: Login Window Started Security Agent
    Nov 18 18:00:31 MacPro Parallels[106]: Loading Hypervisor module...
    Nov 18 18:00:32 MacPro com.apple.SystemStarter[31]: kextload: extension /System/Library/Extensions/hypervisor.kext is already loaded
    Nov 18 18:00:32 MacPro kernel[0]: [Parallels] Parallels Hypervisor started.
    Nov 18 18:00:32 MacPro Parallels[112]: Loading Monitor module...
    Nov 18 18:00:32 MacPro com.apple.SystemStarter[31]: kextload: extension /System/Library/Extensions/vmmain.kext is already loaded
    Nov 18 18:00:32 MacPro kernel[0]: [Parallels] Parallels VM observer thread started
    Nov 18 18:00:32 MacPro Parallels[114]: Loading ConnectUSB module...
    Nov 18 18:00:32 MacPro com.apple.SystemStarter[31]: kextload: extension /System/Library/Extensions/ConnectUSB.kext is already loaded
    Nov 18 18:00:32 MacPro Parallels[116]: Loading Network module...
    Nov 18 18:00:32 MacPro com.apple.SystemStarter[31]: kextload: extension /System/Library/Extensions/Pvsnet.kext is already loaded
    Nov 18 18:00:32 MacPro Parallels[118]: Loading Virtual Ethernet module...
    Nov 18 18:00:32 MacPro com.apple.SystemStarter[31]: kextload: /Library/StartupItems/Parallels/Pvsvnic.kext loaded successfully
    Nov 18 18:00:33 MacPro kernel[0]: comparallels_kextPvsvnic1: Ethernet address 00:1c:42:00:00:01
    Nov 18 18:00:33 MacPro kernel[0]: comparallels_kextPvsvnic0: Ethernet address 00:1c:42:00:00:00
    Nov 18 18:00:33 MacPro ntpd[25]: bind() fd 28, family 30, port 123, scope 7, addr fe80::21c:42ff:fe00:1, in6is_addrmulticast=0 flags=17 fails: Can't assign requested address
    Nov 18 18:00:33 MacPro ntpd[25]: bind() fd 28, family 30, port 123, scope 8, addr fe80::21c:42ff:fe00:0, in6is_addrmulticast=0 flags=17 fails: Can't assign requested address
    Nov 18 18:00:33 MacPro Parallels[121]: Staring DHCP/NAT daemon...
    Nov 18 18:00:33 MacPro pvsnatd[123]: en3: DHCP/NAT for 10.211.55.2-10.211.55.254 netmask 255.255.255.0
    Nov 18 18:00:33 MacPro pvsnatd[123]: en2: DHCP for 10.37.129.2-10.37.129.254 netmask 255.255.255.0
    Nov 18 18:00:34 MacPro Parallels[125]: Restarting InternetSharing...
    Nov 18 18:00:34 MacPro Parallels[127]: Restaring CiscoVPN...
    Nov 18 18:00:34 MacPro com.apple.SystemStarter[31]: /Library/StartupItems/Parallels/Parallels: line 62: /System/Library/StartupItems/CiscoVPN/CiscoVPN: No such file or directory
    Nov 18 18:00:34 MacPro Parallels[129]: Initialization complete.

    Updates installed by Software Update are "delta" updates - they go from 10.x.y to 10.x.y+1, and are customized for a particular Mac model. It appears that in this case they also patch some files instead of replacing them fully. The "combo" update will update 10.x.anything to the latest 10.x.y, it'll update any Mac model, and in this case it appears they contain full files instead of patches. The delta updater for 10.5.1 is about 39 MB; the combo updater is about 110 MB. You can download the combo updater from the Support site. Sites such as www.macfixit.com often recommend installing the combo updater instead of, or after, the delta updater, as it often solves mysterious problems. One specific example is the numerous "SUID" messages when doing a "repair permissions" - the combo update gets rid of all but one, and that one is specifically stated by Apple to be okay. Of course, no guarantees, but the combo updater is a reasonable thing to try.
    Doug

  • I need to reset my time capsule/airport every day - time capsule has green light but I don't see any wifi signal on my mac and other computers.

    as many of you do, I use time capsule as airport, too...
    It worked fine for 6 months or so after I bought the new time capsule. (I bought it in September 2012.)
    Since the beginning of this year, I had to reset, and power off and plug it in almost every week, then now I need to reset and power off and back on again every day...
    When I first set up the time capsule, I followed the instruction with the manual.
    But, now I am so lost and don't want to reset every day for wifi connection.
    Anyone has problem like me or knows how to solve this issue?
    Please help..
    I have MacBook Pro OS X 10.8.4 & my roommates have PCs. (just in case if it helps...)

    For PC it is important the wireless has names that are compatible.. short.. like 10 characters.. but 2-20 is fine. no spaces.. and pure alphanumeric.
    Use WPA2 personal only.. with pure alphanumeric password .. again 10-20 characters should be fine.
    The latest firmware is a dud. Go back to 7.6.1
    Open the airport utility.. click on the TC and holding the option key click the actual version number..
    Go back to 7.6.1 is simple.. just select it and away it will go.. ignore future requests for upgrade.. you can also tell the utility not to check weekly for updates. You will need 5.6 utility for this I think..
    So do the firmware downgrade.
    Then do a factory reset and follow the name information above.. for TC name as well btw.. wireless name/s and disk share name.. which by default is data and that is fine.
    So some instructions in...
    The Factory Reset.
    Power down the TC.
    Hold in reset. and keep holding it in. Be Gentle! It is a tiny surface mount switch with a plastic lever.. Attempting to push it out the other side of the TC will not make the switch turn on better.
    (I fix TC and have several reset levers bent over and jammed or broken off).
    Power on the TC.. remember with the reset held in.. this needs three arms.. a friend or power switch you can get to with your feet..
    Keep holding in reset for about 10sec until the front LED flashes rapidly.
    Release reset and wait .. the boot will be slow as it deletes previous setting.. only from router side and pulls out the factory defaults. No files are deleted on the hard disk.. but the name of the TC may change.
    How to load 5.6 into ML.
    1. Download 5.6 for Lion.
    http://support.apple.com/kb/DL1482
    Click to open the dmg but do not attempt to install the pkg.. it won't work anyway.
    Leave the package open on the desktop so you can see the file. AirportUtility56.pkg
    2. Download and install unpkg.
    http://www.timdoug.com/unpkg/
    Run unpkg on the desktop.. If your Mac refuses to run the software, because it wasn’t downloaded from the Apple store, go to security in preferences and allow other software to work.. this is limitation of trade methinks. You can set back later if you like.
    Now drag the AirPortUtility56.pkg file over to unpkg.. and it will create a new directory of the same name on the desktop.. in finder, open the new directory, drill down.. applications, utilities .. there lo and behold is Airport utility 5.6 .. drag it to your main utilities directory or just run it from current location.
    You cannot uninstall version 6 (now 6.3 if you updated) so don't try.. and you cannot or should not run them both at the same time.. although I have had no problems when doing so.
    You can also load airport utility into a pc and get access to all the settings.  Untick the box for firmware updates.. it will still bug you occasionally.. regardless of the setting.. just ignore it..
    You might still need to do the occasional reboot of the TC as well.

Maybe you are looking for

  • Asset Report - Date

    Hi I would like to get some clarification regarding report date. I've always noticed that asset reports can be only run as of <end of a period>. Such as month-end date and not as at any given date.  For example if I run AR01 as at 26.07.07 it gives a

  • Verizon's third party application service provider for internationale texts

    Hi, I read here that Verizon uses a third party service provider to route international text messages. On that link they say it's a company called Inphomatch, but I found out that Inphomatch merged to another company called Sybase, and on Sybase's we

  • Batch convert file to OCR PDF

    Hi we want to survey a software that offer these function: 1. Batch convert file( MS office / PDF / JPG / TIFF ) to OCR PDF automatically. 2. Multi-threaded conversions functionality. 2. Support API . Is Adobe Acrobat XI Pro can work?

  • IChat disrupts my access to internet

    Thanks to all who may help. (I'm computer illiterate). When I connect the iSight camera to my computer, my wireless DSL access to the internet is lost entirely--rendering the iSight totally useless, of course. Any ideas? Dan

  • Jpegs embedding into email

    Hi – I recently upgraded to 10.5.5 (from 10.3.9) and occasionally have to email jpegs to clients. However, since my upgrade, I'm getting some clients who are saying the jpegs I'm sending them are embedded into the email and they're not able to save t