Remote system state

i want to know whether the remote system state on or off. any body help me to find remote system on or off state using java.net package. no need to use RMI concepts.

udhaya_Sri wrote:
i want to know whether the remote system state on or off. any body help me to find remote system on or off state using java.net package. no need to use RMI concepts.I doubt it (not a foolproof one anyway), and it would be likely to be system-dependent (and if I was the administrator, I'd probably turn it off).
ping usually works, but again, some systems may have it turned off. Some systems (like Unix) also provide an 'isalive' command, but it's probably based around ping.
Winston

Similar Messages

  • Remote system monitoring entry- data not relayed to Central system

    Hello Folks,
                        I am trying to establish a central monitoring system for our client. I am trying to test it in the DEV environment first.
    The central system is a Solution manager system (Dual stack- ABAPJAVA). I am trying to bring in monitoring data from the ECC development environment (ABAPJAVA).
    First of, i created to RFC connections in Solution manager system, one for data collection and the other for analysis. I have maintained the host address of the ECC system as target.
    Then i have created a remote system entry in Transaction RZ21--> technical infrastructure entered the 2 RFC names and have executed the function.
    At this point i am only trying to bring in ABAP stack monitoring data form the ECC system so i have not generated the CSNCONF file.
    Now when i look in Solution manager RZ20-->CCMS monitoring templates, i can't see any data for the the ECC system.
    I guess i am doing something wrong. Am i looking in the wrong monitor set?
    As additional information: Solution manager (SMD) and ECC (ECD) use different transport domains / transport groups. I dont know if this makes a difference.
    Can some one please help.
    Regards,
    Prashant

    Hi Prashant,
    if I understand correctly your system shows only MTEs from R/3 Stack, not from the OS side, pls check your SAPOSCOL. Are the data in OS06 in your remote system correct and do you see the current data, refredhed all 10 seconds?
    To check your environment, pls do the following:
    in th efirst step check in RZ21 > in the Topology part the System Overview for your system connection to your back end system. Are the Read Destination Data RFC and the Destination Analysis RFC correct and works the authority chek fine?
    In the second step pls check in RZ21 > in the Agents for Remotey SAP Systems part; are there registered your remote ccms agents correctly and works the connection test.
    Stop the agents and in your RZ20 monitor pls enter STAT in your command field. Are there displayed for your MTE nodes the read RFC destinations?
    Start the agents and and in your RZ20 monitor pls enter STAT in your command field. Are there displayed for your MTE nodes the CCMS Agent RFC destinations?
    To rebuild the Monitor in the CEN system you could try to reset the node of your remote system in the warm up status > go in the remote system to RZ1 > go to local segments  > change to edit > select your segments > reset segment in "WARMUP" status.
    In the CEN system you coul try to go to the edit mode for the Agents for Remot SAP Systems > select your remote system and push the button Reinitialize Agents
    In the back end system you can try to delete all MTEs in RZ21 > menu Technical Infrastructure > Reorgenize Segment Table > select the options with "ALL" in the CEN and the remote system to reorgenize all data.
    Could you pls post for the missing MTEs a screenshot on the one side from the CEN system and on the other side from the remote system...
    and last but not least you could try the following for missing OS MTEs
    delete  ALALERTS, ALMTTREE and ALPERFHI in /usr/sap/ccms/<SID>_<SNR> and check in the agents folder all trace and log files for errors.

  • Unable to Edit/Remove Remote Systems using MDM 7.1

    Unable to find an answer to this in either the forums or the Wiki...
    Using MDM 7.1 through the SAP MDM Console 7.1.03.54
    I can add a new Remote System, it comes up with the default values for the Remote System fields:
    Name: New Remote System, Code: NewRemoteSystem, Type: Inbound, Key Generation: None
    But I cannot modify the field values nor can I delete the Remote System.
    The right-click context menu always has 'Delete Remote System' greyed out.
    Nor do I see any mechanism to modify the fields' values.  Moving to the Remote System Detail pane, none of the fields are edittable; I have tried left-clicking, right-clicking, double clicking, using the Edit tool bar menu - nothing lets me edit these fields.
    My user account has the Admin role.  Looking to the Admin role, it has Execute for all functions, and Read-Write to the Remote Systems in the Tables and Fields tab.
    Any help would be appreciated.

    Hi Andrew,
    Your repository should be in unloaded state to make changes in any table whether main table, subtable, Ports, Special tables or Remote Systems table etc. As you want to make changes in your repository Remote Systems, please unload your repository->Go to Admin>Remote systems>Make necessary changes (Add/Delete/update)--> Then load repository.
    Note: You can only add User and Roles during Repository loaded state.
    Regards,
    Mandeep Saini

  • PL/SQL block query error when going to a remote system with 1 parameter.

    Hi,
    I am getting the error:
    Invalid function body condition: ORA-01460: unimplemented or unreasonable conversion requested ORA-02063: preceding line from HANSEN_REMOTE
    The issue appears to result from opening a cursor that is a select statement is in some way accessing records via a dblink and the 'where' clause is has more then one session parameter in it. Here is the smallest pl/sql block that results with an error:
    DECLARE
    CURSOR c_GetPay IS
    SELECT PERSON_ID
    FROM CASH_PERSON@HANSEN_REMOTE
    WHERE LAST_NAME = :P320_HANSEN_LAST_NAME
    AND FIRST_NAME = :P320_HANSEN_FIRST_NAME;
    BEGIN
    OPEN c_GetPay ;
    CLOSE c_GetPay ;
    RETURN TRUE;
    END ;
    If I remove 'AND FIRST_NAME = :P320_HANSEN_FIRST_NAME' from the curser, there is no problem. This block of pl/sql is in a On Load: Before Header
    on a page branch. This issue remains consistent in our 1.6.1.00.02 instance of HTMLDB with an Oracle database version 10.1.0.3.0. This instance is
    a fresh install of the 10g and HTMLDB.
    Does any one have any ideas of why I am getting this error message. I really need to get it resolve soon as we are trying to get an application up by the end of August and there is still alot of coding needing to be done.
    Thanks for the help.
    Lanie

    Scott, I have tried everything that this point except copy the whole table from the remote system.
    Here is a short version of what I have tried...
    -- hard coded condition...timing was not an issue here...it was quick.
    declare
    v_in_PersonId number(9);
    cursor c_GetPay
    IS select PERSON_ID --, first_name, LAST_NAME
         from HANSEN_CONTACT
              where first_name like 'LANIE'
              AND last_name LIKE 'MOORE'
    BEGIN
    OPEN c_GetPay;
    FETCH c_GetPay INTO v_in_PersonId;
    CLOSE c_GetPay;
    RETURN TRUE;
    END           
    -- this is an internal variable set to the string literal...does not as the v function was not called.
    declare
    V_TEST VARCHAR2(150);
    V_TEST2 VARCHAR2(150);
    v_in_PersonId number(9);
    cursor c_GetPay
    IS select PERSON_ID --, first_name, LAST_NAME
         from HANSEN_CONTACT
              where first_name like :V_TEST
              AND last_name LIKE :V_TEST2
    BEGIN
    V_TEST := 'LANIE';
    V_TEST2 := 'MOORE';
    OPEN c_GetPay;
    FETCH c_GetPay INTO v_in_PersonId;
    CLOSE c_GetPay;
    RETURN TRUE;
    END
    -- this has the v function called in the cursor since no matter what I do, I have to call it so I don't get my original error. This takes over a minute to return, and it is using hard coded values...if I use session variables where I place the information from the user, it takes even longer.
    declare
    V_TEST VARCHAR2(150);
    V_TEST2 VARCHAR2(150);
    v_in_PersonId number(9);
    cursor c_GetPay
    IS select PERSON_ID --, first_name, LAST_NAME
         from HANSEN_CONTACT
              where first_name like V(:V_TEST)
              AND last_name LIKE V(:V_TEST2)
    BEGIN
    V_TEST := 'LANIE';
    V_TEST2 := 'MOORE';
    OPEN c_GetPay;
    FETCH c_GetPay INTO v_in_PersonId;
    CLOSE c_GetPay;
    RETURN TRUE;
    END
    It does not appear to be an issue if I am looking at a view going to the remote system or the table it's self. The slowness issue takes place. (In short I have tried replacing HANSEN_CONTACT which is a view with the direct table link of imsv7.contact@HANSEN_REMOTE and that did not solve the timing issue).
    Any ideas?

  • Wbadmin System State Backup "Parameter is incorrect"

    Hello,
    We have two physical Windows Server 2008 R2 x64 Standard Domain Controllers and the system state backup on both fails with the same error.
    We issue the command:
    wbadmin start systemstatebackup -backuptarget:c:
    (NOTE: We did the REG fix to allow backups to the system volume)
    and we get  this as the output:
    C:\Windows\system32>wbadmin start systemstatebackup -backuptarget:c:
    wbadmin 1.0 - Backup command-line tool
    (C) Copyright 2004 Microsoft Corp.
    Starting to back up the system state [28/02/2010 21:26]...
    Retrieving volume information...
    This will back up the system state from volume(s) System(C:) to c:.
    Do you want to start the backup operation?
    [Y] Yes [N] No y
    Creating a shadow copy of the volumes specified for backup...
    Creating a shadow copy of the volumes specified for backup...
    Please wait while system state files to back up are identified.
    This might take several minutes...
    Summary of the backup operation:
    The backup of the system state failed [28/02/2010 21:27].
    Log of files successfully backed up:
    C:\Windows\Logs\WindowsServerBackup\Backup-28-02-2010_21-26-31.log
    Log of files for which backup failed:
    C:\Windows\Logs\WindowsServerBackup\Backup_Error-28-02-2010_21-26-31.log
    The operation ended before completion.
    The parameter is incorrect.
    C:\Windows\system32>
    This happens on both servers and the two backup log files mentioned in the output are both empty.
    There's no other information that I can find so I don't know what the "parameter" is or why it is incorrect.
    Has anyne come across this problem and know what the error is referring to?
    Thanks
    Sunil

    I received a PowerShell script from Suhas and ran it on the affected server, the script output gave:
    1.
         Service Name    : RMAGENT
         Service Caption : RMAGENT
         Registry key    : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\RMAGENT\ImagePath
         Value           : \\PRIMARY\admin$\Microsoft DPM SRT\RFCAgent.exe
         Reason          : The service path contains a double slash. Network paths or paths containing a double slash are not supported.
    2.
         Service Name    : RMAGENT
         Service Caption : RMAGENT
         Registry key    : HKEY_LOCAL_MACHINE\SYSTEM\CurrentControlSet\services\RMAGENT\ImagePath
         Value           : \\PRIMARY\admin$\Microsoft DPM SRT\RFCAgent.exe
         Reason          : The service path does not have a proper path format. Only paths beginning with [<Drive>]:\ format are supported.
    The "RMAgent" is from Microsoft Data Protection Manager 2007 System Recovery Tool (DPM-SRT) and I think is the remote agent that DPM-SRT uses to backup the remote system.
    The DPM-SRT RMAgent isn't supported and doesn't work on Windows Server 2008 R2 systems and I am not sure how it ended up installed on the server. Removing this service should solve the problem and allow the System State Backups to work. The DPM-SRT agent wasn't listed in the "Programs and Features" and so couldn't be installed from there (if it was I would have spotted this a long time ago and probably solved the problem). Instead, I used the information at:
    http://www.howtogeek.com/howto/windows-vista/how-to-delete-a-windows-service-in-vista-or-xp/
    To delete the RMAgent service: sc delete "RMAgent" in an Administrator CMD prompt. This removed the registry entries shown in the script output above. When this was done, I ran the script again just to be sure there was nothing else and indeed the RMAgent entries had gone and there were no other items that needed attention.
    Finally, I tried "webadmin start systemstatebackup -backuptarget:C:" again in an administrator CMD prompt and it completed successfully.
    I would like to thank Abhinav Mathur and Suhas Rao in particular for their very helpful script.
    Sunil

  • Load balancing across remote systems

    Hi everyone,
    When a request is routed to a remote machine (assuming that the service is not
    available on the local machine) load balancing is based on the load factors (plus
    NETLOAD, if set) of requests previously sent to the remote systems from the local
    system. My question is: is the load accumulation ever reset? As I see it, a
    reset could probably happen in one or more of the following ways:
    1. A rolling time period that will cause earlier load values to be progressively
    discareded.
    2. The load accumulations are reset every time a system is booted.
    3. The load accumulations are reset whenever the tuxconfig is modified.
    4. The accumulations are reset when the tuxconfig file is removed and recreated
    (I guess this is obvious, assuming this is where the accumulations would be stored
    between boots).
    The question is prompted by the following scenario. Machines A, B and C have
    been configured to offer the same service, but the service has only been enabled
    on A and B. Machine D does not offer this service, and therefore requests from
    D will be balanced between A and B based on the accumulated load recorded on D.
    This situation has been in operation for a couple of months without rebooting
    (quite possible - after all, this is Tuxedo we are talking about!), and it has
    now been decided to activate the service on machine C (without rebooting). The
    big question is: Will all the requests be routed to C until such time as it catches
    up to the load processed by A and B?
    Thanks to anyone who can shed some light on this.
    Regards,
    Malcolm.

    Where are you looking for the load accumulation?
    "load done" with psr command?
    In my case, with Tux 6.5, these stats are only reset with a reboot.
    Christian
    "Malcolm Freeman" <[email protected]> wrote:
    >
    Thanks, Scott - I found confirmation that stats are reset every SANITYSCAN
    interval
    in some old 4.2.1 documentation.
    Regards,
    Malcolm.
    Scott Orshan <[email protected]> wrote:
    Malcolm,
    This was an issue a number of years ago, back in one of the early 4.x
    releases.
    But now the stats are reset, I believe every SANITYSCAN interval.It
    might even
    happen as soon as the new service comes into operation. I'm too lazy
    to look, but
    it's easy to test.
         Scott
    Malcolm Freeman wrote:
    Hi everyone,
    When a request is routed to a remote machine (assuming that the serviceis not
    available on the local machine) load balancing is based on the loadfactors (plus
    NETLOAD, if set) of requests previously sent to the remote systemsfrom the local
    system. My question is: is the load accumulation ever reset? As
    I
    see it, a
    reset could probably happen in one or more of the following ways:
    1. A rolling time period that will cause earlier load values to beprogressively
    discareded.
    2. The load accumulations are reset every time a system is booted.
    3. The load accumulations are reset whenever the tuxconfig is modified.
    4. The accumulations are reset when the tuxconfig file is removedand recreated
    (I guess this is obvious, assuming this is where the accumulationswould be stored
    between boots).
    The question is prompted by the following scenario. Machines A, Band C have
    been configured to offer the same service, but the service has onlybeen enabled
    on A and B. Machine D does not offer this service, and therefore
    requests
    from
    D will be balanced between A and B based on the accumulated load recordedon D.
    This situation has been in operation for a couple of months withoutrebooting
    (quite possible - after all, this is Tuxedo we are talking about!),and it has
    now been decided to activate the service on machine C (without rebooting).The
    big question is: Will all the requests be routed to C until such
    time
    as it catches
    up to the load processed by A and B?
    Thanks to anyone who can shed some light on this.
    Regards,
    Malcolm.

  • DPM 2012 R2 failing on backup of BMR and System State

    We are running DPM 2012 R2 on Windows Server 2012 and I am trying to protect another Windows 2012 Server with a Bare Metal Recovery and system state but it fails on initial synchronization.  I get the following error in DPM:
    DPM failed to create the backup. If you are backing up only System State, verify if there is enough free space on the protected computer to store the System State backup.  On protected computers running Windows Server2008, verify that Windows Server
    Backup (WSB) is installed and that it is not performing any other backup or recovery task. (ID 30214 Details: Internal error code: 0x80990ED0)
    This is a new server and there is 65.7 GB of 99.9 GB free on the C drive.  131 of 136 GB free on the F drive.  The P drive only has 100 MB free of 36.3 GB but that is where the pagefile is located, nothing else is on the P drive. 
    Would that be a problem or is that irrelevant?
    The replica volume is 30 GB and the recovery point volume is 6.06 GB.  I tried increasing the replica volume all the way up to 200 GB and the recovery point volume to 30 GB but that didn't matter. 
    Why is this not working?

    Hi,
    Try this and troubleshoot any errors along the way.
    1) Set up a network share on a remote machine
    \\server\bmrshare
    2) From an administrative command prompt on the Protected Server you want the BMR backup for, type:
    wbadmin.exe start backup -allcritical -backuptarget:\\server\bmrshare
    This should show you the list of volumes included in the BMR backup and ask "Do you want to start the backup operation?. - Type
    Y to continue..
    3) Once completed, see how large the BMR backup is on the remote server, then resize the DPM replica accordingly to accommodate the size of the manual BMR backup.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Unable to backup System State on a 2008 R2 Server

    Have a 2008 R2 SP1 Server, patched to the current state, and we can not perform a system state / BMR backup. The backup starts, VSS creation always succeeds, but between 30 and 80% (it's never at the same point) the backup fails with event 5, error 2147943567.
    The eventlog message says the the problem should be in the "Details message":
    I can not see the reason for the failure in the eventlog message above.
    In Windows Server Backup, the logged error message is "a device is not connected".
    The server is running on VMware and has just one virtual hard disk (drive C:) All other servers running on the same VMware plattform don't have this problem. Also, there are no warnings or errors in the system and application eventlog of the affected server.
    Have also tried to run a backup with completely disabled Antivirus scanner, but the backup stops with the same error.
    What can we do? Thank you all in advance for any advice.
    Franz

    Hi Mandy
    Thank you for your feedback.
    chkdsk c: /r doesn't find any errors.
    Windows Backup is launched by the DPM Agent, so the backup destination will be a remote location (the DPM Server).
    How can we "decrypt" the WindowsBackup Logfiles? When loading and converting these etl files into the event viewer, we get events with several event ID's with a text like "GUID=5e6a17c3-26e3-0585-9640-54fcebccd5d2 (No Format Information found)."
    Thank you in advance for any further advice.
    Kind regards, Franz

  • SQL from remote systems failes

    Hi All,
    First of all, it may not be a database issue.
    In brief, Not able to execute sql statements which returns more amount of data for ex: select * from v$session,select * from dict; I Could execute simple statements like select * from version / some user tables with less number of data by using “where” clause.
    This is not an issue when I am in a remote system which are located in the same network as the database server (North America). Issue is from my local system (Asia) alone. I am sure that it has something to do with network side.
    C:\Documents and Settings>sqlplus system/******@XXXX
    SQL*Plus: Release 11.1.0.6.0 - Production on Wed May 12 11:11:39 2010
    Copyright (c) 1982, 2007, Oracle. All rights reserved.
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    SQL>
    SQL>
    SQL> select * from v$session;
    It just stops there. Session won’t disconnect or any ORA-XXXX error.
    Done the following checks,
    - v$session shows that the above session in question is in status as “INACTIVE” and state as “WAITING”
    - tnsping from remote system and localsystem returns almost similar response time (600 msec - 670 msec)
    - Couldn’t find anything unusual in alert / trace also in listener log.
    - Since I am able to run some queries, no need to bother about firewall side.
    - Done some basic analysis using wireshark packet analyzer - couldn’t see any error. However could see that local system is getting “response data” from the database server.
    - MTU set to different size , 1500,1400,Defaul;t etc with no luck.
    I am sure that many of you working on scattered environment might have faced similar issues. Your inputs will be very helpful for me.
    Server – Oracle 11.2.0.1.0 64 on RHEL 5.4
    Client - Oracle 11.1.0.6.0 on Xp. Tried with jdbc thin drivers also.
    Thanks.

    please refer below,
    oracle@XXXXX$=>tail -100 alert_db1.log | more
    Mon May 10 22:14:50 2010
    Thread 1 advanced to log sequence 1947 (LGWR switch)
    Current log# 3 seq# 1947 mem# 0: /data/oracle/oradata/db1/redo03.log
    Tue May 11 01:31:48 2010
    Thread 1 advanced to log sequence 1948 (LGWR switch)
    Current log# 1 seq# 1948 mem# 0: /data/oracle/oradata/db1/redo01.log
    Tue May 11 01:32:09 2010
    Thread 1 advanced to log sequence 1949 (LGWR switch)
    Current log# 2 seq# 1949 mem# 0: /data/oracle/oradata/db1/redo02.log
    Thread 1 cannot allocate new log, sequence 1950
    Checkpoint not complete
    Current log# 2 seq# 1949 mem# 0: /data/oracle/oradata/db1/redo02.log
    Tue May 11 01:32:28 2010
    Thread 1 advanced to log sequence 1950 (LGWR switch)
    Current log# 3 seq# 1950 mem# 0: /data/oracle/oradata/db1/redo03.log
    Thread 1 cannot allocate new log, sequence 1951
    Checkpoint not complete
    Current log# 3 seq# 1950 mem# 0: /data/oracle/oradata/db1/redo03.log
    Tue May 11 01:32:40 2010
    Thread 1 advanced to log sequence 1951 (LGWR switch)
    Current log# 1 seq# 1951 mem# 0: /data/oracle/oradata/db1/redo01.log
    Thread 1 cannot allocate new log, sequence 1952
    Checkpoint not complete
    Current log# 1 seq# 1951 mem# 0: /data/oracle/oradata/db1/redo01.log
    Thread 1 advanced to log sequence 1952 (LGWR switch)
    Current log# 2 seq# 1952 mem# 0: /data/oracle/oradata/db1/redo02.log
    Tue May 11 02:00:03 2010
    Clearing Resource Manager plan via parameter
    Tue May 11 02:01:03 2010
    Thread 1 advanced to log sequence 1953 (LGWR switch)
    Current log# 3 seq# 1953 mem# 0: /data/oracle/oradata/db1/redo03.log
    Tue May 11 03:10:44 2010
    Stopping background process CJQ0
    Tue May 11 07:00:10 2010
    Thread 1 advanced to log sequence 1954 (LGWR switch)
    Current log# 1 seq# 1954 mem# 0: /data/oracle/oradata/db1/redo01.log
    Tue May 11 13:37:35 2010
    Thread 1 advanced to log sequence 1955 (LGWR switch)
    Current log# 2 seq# 1955 mem# 0: /data/oracle/oradata/db1/redo02.log
    Tue May 11 20:00:37 2010
    Thread 1 advanced to log sequence 1956 (LGWR switch)
    Current log# 3 seq# 1956 mem# 0: /data/oracle/oradata/db1/redo03.log
    Tue May 11 21:30:45 2010
    Starting background process CJQ0
    Tue May 11 21:30:45 2010
    CJQ0 started with pid=22, OS id=2034
    Tue May 11 22:00:00 2010
    Setting Resource Manager plan SCHEDULER[0x2FF5]:DEFAULT_MAINTENANCE_PLAN via scheduler window
    Setting Resource Manager plan DEFAULT_MAINTENANCE_PLAN via parameter
    Tue May 11 22:00:01 2010
    Starting background process VKRM
    Tue May 11 22:00:01 2010
    VKRM started with pid=29, OS id=3328
    Tue May 11 22:01:21 2010
    Begin automatic SQL Tuning Advisor run for special tuning task "SYS_AUTO_SQL_TUNING_TASK"
    Tue May 11 22:04:22 2010
    Thread 1 advanced to log sequence 1957 (LGWR switch)
    Current log# 1 seq# 1957 mem# 0: /data/oracle/oradata/db1/redo01.log
    Tue May 11 22:04:41 2010
    End automatic SQL Tuning Advisor run for special tuning task "SYS_AUTO_SQL_TUNING_TASK"
    Tue May 11 22:06:29 2010
    Thread 1 advanced to log sequence 1958 (LGWR switch)
    Current log# 2 seq# 1958 mem# 0: /data/oracle/oradata/db1/redo02.log
    Tue May 11 22:10:22 2010
    Thread 1 cannot allocate new log, sequence 1959
    Checkpoint not complete
    Current log# 2 seq# 1958 mem# 0: /data/oracle/oradata/db1/redo02.log
    Tue May 11 22:13:00 2010
    Thread 1 advanced to log sequence 1959 (LGWR switch)
    Current log# 3 seq# 1959 mem# 0: /data/oracle/oradata/db1/redo03.log
    Tue May 11 22:15:58 2010
    Thread 1 advanced to log sequence 1960 (LGWR switch)
    Current log# 1 seq# 1960 mem# 0: /data/oracle/oradata/db1/redo01.log
    Wed May 12 01:32:46 2010
    Thread 1 advanced to log sequence 1961 (LGWR switch)
    Current log# 2 seq# 1961 mem# 0: /data/oracle/oradata/db1/redo02.log
    Thread 1 advanced to log sequence 1962 (LGWR switch)
    Current log# 3 seq# 1962 mem# 0: /data/oracle/oradata/db1/redo03.log
    Wed May 12 01:32:57 2010
    Thread 1 cannot allocate new log, sequence 1963
    Checkpoint not complete
    Current log# 3 seq# 1962 mem# 0: /data/oracle/oradata/db1/redo03.log
    Thread 1 advanced to log sequence 1963 (LGWR switch)
    Current log# 1 seq# 1963 mem# 0: /data/oracle/oradata/db1/redo01.log
    Thread 1 cannot allocate new log, sequence 1964
    Checkpoint not complete
    Current log# 1 seq# 1963 mem# 0: /data/oracle/oradata/db1/redo01.log
    Wed May 12 01:33:11 2010
    Thread 1 advanced to log sequence 1964 (LGWR switch)
    Current log# 2 seq# 1964 mem# 0: /data/oracle/oradata/db1/redo02.log
    Thread 1 cannot allocate new log, sequence 1965
    Checkpoint not complete
    Current log# 2 seq# 1964 mem# 0: /data/oracle/oradata/db1/redo02.log
    Thread 1 advanced to log sequence 1965 (LGWR switch)
    Current log# 3 seq# 1965 mem# 0: /data/oracle/oradata/db1/redo03.log
    Wed May 12 02:00:00 2010
    Clearing Resource Manager plan via parameter
    Wed May 12 02:00:55 2010
    Thread 1 advanced to log sequence 1966 (LGWR switch)
    Current log# 1 seq# 1966 mem# 0: /data/oracle/oradata/db1/redo01.log

  • Active directory system state backup

    We are running active directory ,Windows 2008 R2 with DPM 2012.
    I would like change the default location from C:\ to a remote network location. Such as, \\machine123\WindowsImageBackup
    I modified PSDataSourceConfig.XML to point to a network location but that did not work. it keep dumping the backup on C: drive.
    I found many article but all of them were locally on the same server.
    how to do it on a remote network location?
    Hussain
    hussain

    Hi,
    There is no provision in DPM to move the system state backup to a remote location. You can schedule windows server backup to perform the systemstate backup and use remote share, then configure DPM to protect that share.
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread. Regards, Mike J. [MSFT]
    This posting is provided "AS IS" with no warranties, and confers no rights.

  • Remote System and Remote Key Mapping at a glance

    Hi,
    I want to discuss the concept of Remote System and Remote Key Mapping.
    Remote System is a logical system which is defined in MDM Console for a MDM Repository.
    We can define key mapping enabled at each table level.
    The key mapping is used to distinguish records at Data Manager after running the Data Import.
    Now 1 record can have 1 remote system with two different keys but two different records cannot have same remote system with same remote key. So, Remote key is an unique identifier for record for any remote system for each individual records.
    Now whenever we import data from a Remote System, the remote system and remote key are mapped for each individual records. Usually all records have different remote keys.
    Now, when syndicating back the record with default remote key is updated in the remote system that is sent by xml file format.
    If same record is updated two times from a same remote system, the remote key will be different and the record which is latest contains highest remote key.
    Now, I have to look at Data Syndication and Remote key.
    I have not done Data Syndication but my concept tell if there is duplicate record with same remote system but different remote keys both will be syndicated back. But if same record have two remote keys for same remote system then only the default remote key is syndicated back.
    Regards
    Kaushik Banerjee

    You are right Kaushik,
    I have not done Data Syndication but my concept tell if there is duplicate record with same remote system but different remote keys both will be syndicated back.
    Yes, but if they are duplicate, they needs to be merged.
    But if same record have two remote keys for same remote system then only the default remote key is syndicated back.
    This is after merging. So whichever remote key has tick mark in key mapping option(default) , it will be syndicated back.
    Pls refer to these links for better understanding.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/80eb6ea5-2a2f-2b10-f68e-bf735a45705f
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/uuid/7051c376-f939-2b10-7da1-c4f8f9eecc8c%0c
    Hope this helps,
    + An

  • Syndicating based on Addition of a Remote System Key

    Hi
    We have a distributed system syndication scenario where we need to syndicate a record automatically when a remote system key is added to an existing harmonized record in MDM. By adding the Remote System Key, it essentially means the remote system is 'subscribing' to the new harmonized record.
    Is there any way to fire off a syndication event when a new remote system key is added to a record? It seems that MDM currently only flags a record as ready to be syndicated when a value changes in one of the fields of that record - it doesn't seem to identify the addition of a new system key to the record as a change to the record.
    Thanks for your assistance in advance.

    Hi Ravi
    Thanks for the reply. The current view is that we were going to add it manually as a remote system key mapping, as the material record would already exist and would have been harmonized in mdm - so no need to add it through an import map. The scenario is that the master record already exists and another system wishes to also receive this record. Any thoughts on what options do we have if we go this approach?
    Also, is their anyway to indicate if a remote system key is added for a new system to an existing mdm material, to indicate when syndicating that the record being sent is a 'Create' record - and hence only to syndicate it to the new remote system added and not to the other systems which also have remote key's against that record?
    Thanks
    Costa

  • Search for [Remote Key] and [Remote System] in Data Manager

    Hello all
    I would like to be able to search on the remote key and the remote system in the MDM Data Manager is that not possible? I thought I remembered seeing that possibility under the Free-Form Search but now I can't find it.
    I have, however, found this in the Data Manager reference guide:
    REMOTE SYSTEM AND REMOTE KEY FIELDS
    MDM uses the remote systems defined in the Remote Systems table
    within the MDM Console to store and maintain key mapping information
    for each record or text attribute. It does this using a virtual “key
    mapping” field that you never see in the MDM Client.
    This virtual key mapping field is very much like a qualified lookup field
    into a virtual key mapping qualified lookup table.
    Key Mapping information stored in virtual lookup field
    The Remote System and Remote Key fields are normally not visible;
    however, they do appear in several places in the MDM Client.
    Specifically, both fields: (1) appear in the File > Export dialogs in Record
    mode for exporting value pairs; (2) are recognized by the File > Import
    dialog in Record mode for importing value pairs; and (3) appear in the
    Edit Key Mappings dialogs in both Record mode and Taxonomy mode,
    for viewing and editing value pairs.
    Is there any way to search on the value in the remote key from the Data Manager?

    Not sure search i think not possible.
    But you can see keys as mentioned:
    Enable Key mapping in Console.
    MDM Client maens MDM Data Manager.
    They do appear in several places in the MDM Client or Data Manager. Three different methods to see in DM are given already below:
    Specifically, both fields: (1) appear in the File > Export dialogs in Record mode for exporting value pairs; (2) are recognized by the File > Import dialog in Record mode for importing value pairs; and (3) appear in the Edit Key Mappings dialogs in both Record mode and Taxonomy mode, for viewing and editing value pairs.
    BR,
    Alok

  • Remote system disconnect​ed after installing MAX 4.7.3

    Hello!
    This topic is related to the topic you can find here. 
    In order to repair the Regional Settings issue in Windows (XP in my case) I used the System Configuration 1.1.3 update and it seems to work. I changed the Regional Settings to my local and installed the update. Silverlight does not crash anymore, so that is fixed. However, this created a new issue:
    Now my remote devices (NI-1742 and NI-1746) status is always "disconnected". The devices are connected to a different subnet than the development computer. Pinging their IPs showed that they are there. I can connect to the cameras using the Real-time Project. However, in MAX the remote system status remains "disconnected". I tried to delete and re-create the devices in MAX but that did not work either.
    I also tried the latter with Windows firewall on and off and updated the software with NI Update Service. On an another computer, which has not had the update yet, I can connect to and modify the devices.
    In addition, I completely reinstalled the development system, but the issue persists.
    Kind regards,
    Mart
    Solved!
    Go to Solution.

    Hey Mart,
    It looks like this may be related to a possible bug introduced in MAX 4.7.3. I've uploaded Juurma.zip to our FTP site. Please obtain this .zip file by navigating to ftp://ftp.ni.com/outgoing.
    This .zip file contains a patched version of mxRmCfg.dll. First, close all NI software and stop the NI System Web Server service and all its dependencies (you can get to your services by going to Start->Run and typing in services.msc). Then, navigate to this directory: C:\Program Files\National Instruments\Shared\MAX\Bin
    You will need to rename the existing mxRmCfg.dll to mxRmCfg.bak, and copy the new version to that location. Restart your system, open MAX, and see if you can connect to and view your targets.
    If this resolves your issue, PLEASE post back in this thread indicating as much. If not, let us know and we'll continue to investigate. Note that items on our FTP server will be removed after 48 hours, so let me know if you're unable to get that file in time
    Justin E
    National Instruments R&D

  • Remote system reboots due to error when exporting config.

    I have a PXI-8196 controller operating on a network in a PXI-1052 chassis.  I am trying to export the config and the remote system reboots due to system error.

    Your Computer looks to be a Late 2010 iMac, if so is the RAM spec as shown below?
    Maximum Memory
    16 GB
    Memory Slots
    4 - 204-pin PC3-10600 (1333 MHz) DDR3 SO-DIMM

Maybe you are looking for

  • HELP- "IPOD Cant Be Synced.  The Disk is locked"  Cant remove Read only

    I cannot remove read only from the IPod Control folder. It won't let me. I cant load music to my ipod, which I previously have with same computer, itunes, everything. I have the most updated itunes, software, etc. Can anyone help me? I have no clue w

  • What is the best way to image a Mac HD?

    I have a school with about 60 new iMacs. I would like to create one master image and push out to all the other computers using a external network hard drive. I am installing iWork and BootCamp with XP and a few other programs, all with valid licences

  • Canopus ADVC 110 and Final Cut Pro

    I have FCP 5.1.4 and I have attached Canopus ADVC 110 using white, red, and yellow video cables to my VCR to capture a home video and transfer to CD.  I am getting nothing on FCP when I hit log and capture.  What should my settings be on capture sett

  • Drive Not Ready Error Message

    Hello all, Today I tried to sync my Ipod and I got an error message that said "Drive not ready". When I turned my ipod back on, it was wiped clean. Itunes was not seeing the ipod, then it was, and finally I was able to restore it. However, when it go

  • Poor performance mac mini

    Hello, I have a MAC mini originally equipped with 4GB memory but now updated to 16GB. The computer boots up quickly but it is very slow when I use the Safari web browser. It takes a long time to go from one page to another. I have made a clean reinst