Automatically deactivate password on CUA

We have a system whereby user-accounts are automatically created from Active Directory to SAP. As these users are normally only used for acces from a portal the password should be de-activated. We need to do this from the CUA-system as password changes are not allowed on the child-system.
When a new user is created the password is of course always initial but Is there a way to automatically deactivate the password directly after an account is created ?
Thanks for any suggestions.

Hi Jurjen,
It is not enough to disable the password, you have to actively set the password to "deactivated".
These users come from an HR-portal where their identity is verified via ldap but connect to backend-system to get the relevant HR-data per user. To prevent them getting a logon-screen when connecting the password needs to be deactivated (which is something else than disabled). As the users are automatically created on a CUA-system we need to add a step somewhere to do this deactivation. Hope this clarifies my question.

Similar Messages

  • I've updated my Flash software but Firefox still reports it as outdated and automatically deactivates it. How can I fix this?

    Firefox says that my Flash software is outdated and therefore vulnerable and automatically deactivates the software. When Firefox recognizes that I'm visiting a page that uses Flash for something it will give me a grey (typically) diagonally striped screen in the place where the Flash would be used with the option of "activating" Flash. But sometimes there are items on webpages that used to show up (and I guess use Flash) that, since this problem started, I can't see. It's also kind of a nuisance to have to activate it each time. But, ultimately, it's somewhat worrying that I've downloaded and installed the latest version of Flash a couple of times and it's still doing this. I'm not really sure what else to do.
    Some background on what I'm working with. I'm running Firefox 23.0 and the "About Firefox" screen says I'm up to date. I'm running Mac OS X 10.6.8. When I go to the add-on page for Firefox, it tells me that the version of "Shockwave Flash" is 11.4.402.265. The package that I've downloaded and installed from the Adobe website is here: http://get.adobe.com/flashplayer/completion/?installer=Flash_Player_11_for_Mac_OS_X_10.6_-_10.9.
    Any thoughts?

    hello, if the plugin-check page shows that you're still on version 11.4 something is wrong - 11.8.800.94 is the latest version that's avilable for your system. does the adobe support page for flash installation issues help?: http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-mac.html

  • "Deactivate password" for standard authentication

    Hi Guys,
    I'm trying to get more information about the "Deactivate password" option on SU01, but the only information I get says that it can be done when we are using an external authentication method like X.509.
    So, my question is :
    If I have an ABAP instance using standard authentication method (without an external authentication method), is it a good practice to lock users and deactivate their passowrd to increase the security? Does it make sense?
    Thanks in advance,
    Itamar

    Thank you Tim, for your prompt answer.
    With your comments I think it is a good practice to deactivate the password for locked users which will not have to access the system again.
    Regards,
    Itamar
    Edited by: Itamar S Marioto on Aug 9, 2011 7:42 PM

  • How to create automatically users&roles in CUA and in chlid systems?

    Hi,
    i have a CUA on a 2 chlid R/3 systems (test and training) and 2 portal systems (test and training).
    i need to create a web application to create automatically users test and users training in CUA and see them in the R/3 chlid systems and at the same time to create autmatically a roles in CUA and R/3 chlid systems for those users (we sppose that the role is already stored in a table).
    are there any standard BAPI or Funcion modules that can do this job?
    is the role created automatically in CUA can be seen automaticall in the portal child system?
    any help?
    Thanks&Best regards

    You can use one of the various ways Java EE provides you, e.g. container managed authentication.
    It's also all in the Java EE tutorial: [http://java.sun.com/javaee/5/docs/tutorial/doc/bncas.html].
    You can configure it in the application server as well: [http://tomcat.apache.org/tomcat-6.0-doc/realm-howto.html].
    Here is an example how to use it in JSF: [http://ocpsoft.com/java/acegi-spring-security-jsf-login-page/].

  • How to create automatically users&roles in CUA and child systems

    Hi,
    i have a CUA on a 2 chlid R/3 systems (test and training) and 2 portal systems (test and training).
    i need to create a web application to create automatically users test and users training in CUA and see them in the R/3 chlid systems and at the same time to create autmatically a roles in CUA and R/3 chlid systems for those users (we sppose that the role is already stored in a table).
    are there any standard BAPI or Funcion modules that can do this job?
    is the role created automatically in CUA can be seen automaticall in the portal child system?
    any help?
    Thanks&Best regards

    Thank you all. I got the solution.
    Regards
    Rajesh

  • Change user password with CUA

    When I attempt to change a password on a CUA child, I enter tocde SU01 and enter the account. The I was to reset password via the icon. When I select the change password icon (shift+ F8) and then the popup window appear to prompting you to enter and reenter password.
    After I enter new pwd twice the screen stays nothing happen pop screen stay up and no status is reported back on the status bar at the bottom.
    If I open up the account and change it via logon data table the change.reset password works fine.
    Any ideas?
    Mikie B.

    There was a similar (unconclusive) discussion recently ( Screen not getting refreshed after reseting password ), for which I found the following thread:
    Password generation problem
    Maybe that can help.

  • How do I deactivate password vault?

    Every time I enter a password at a web address, that silly little key in the upper left hand corner of the address bar asks if I want to save the password. I do not store passwords on my system.
    So, how do I prevent that little drop down question from dropping down?

    There is no "automatic login" anywhere in that window.There is Change Password, Login Items, Mac User Name, Address Book Card, and Enable Parental Controls. I've already investigated all of them.
    Click on Login Options and turn automatic login on. If it's already on, turn it off and back on.
    Where do I find this file?
    Double-click on your hard disk from the desktop, or single-click on the entry for it in a Finder window's sidebar. Open the Library folder in the window, then the Preferences folder, and delete the com.apple.loginwindow item inside.
    (44341)

  • Cluster creation - powershell - automatic username/password

    Hi, 
    I am trying to automate the creation of an HDInsight cluster using a powershell script. I haven't been able to find a way to automatically indicate the username and password of the cluster. I know it is possible with the .NET SDK and the Azure cross-platform
    command-line, but I haven't found anything for powershell, which surprises me.
    Am I missing something here?

    Hi,
    Yes, you can customize your cluster credentials too using PowerShell. Below is a sample snippet to include the credentials:
    New-AzureHDInsightCluster -Subscription $subid    -Credential $creds -Name $clusterName -Location $location
    You can construct the $creds variable like this:
    $secpasswd = ConvertTo-SecureString "password" -AsPlainText -Force
    $creds = New-Object System.Management.Automation.PSCredential ("username", $secpasswd)
    Alternatively you can follow this tutorial:
    http://azure.microsoft.com/en-us/documentation/articles/hdinsight-provision-clusters/#powershell
    The script in the link does not specify a user name/password but it will prompt for it when you execute. You can supply your custom credentials at that point.
    Regards.
    Debarchan Sarkar - MSFT ( This posting is provided AS IS with no warranties, and confers no rights.)

  • I want to ask how to automatically saved passwords without asking even on first visit?

    In Tools >Options>Security i want to saved password automatically without asking even on first visit.

    1) Resetting Firefox retains some essential data like bookmarks and passwords. See the following article for details.
    * [[Reset Firefox – easily fix most problems]]
    To remove the problem manually, look for suspicious add-ons in the Add-ons Manager, Extensions and Plugins categories. Also check the Uninstall a Program category of the Windows Control Panel. Install, update, then perform a full system scan with MalwareBytes' Antimalware.
    * [[Disable or remove Add-ons]]
    * http://windows.microsoft.com/en-us/windows/uninstall-change-program
    * http://www.malwarebytes.org
    2) A third-party application attempting to install an add-on in Firefox will trigger a [https://blog.mozilla.org/addons/2011/08/11/strengthening-user-control-of-add-ons/ confirmation prompt].<br>
    Known malicious add-ons are added to [https://www.mozilla.com/blocklist/ the blocklist], which disables them.<br>
    There won't be any measure to prevent add-ons from loading scripts on web pages. There is nothing inherently malicious about such behavior, and preventing it would break the legitimate add-ons that do this.
    3) You can manually provide troubleshooting information. Open the '''Help''' menu either from the '''Firefox button''' or the menu bar, then choose '''Troubleshooting Information'''. Click the '''Copy text to clipboard''' button then paste the text in your message.

  • How can i deactivate password on start up

    Since downloading ios8 I'm having to put the password in every time I use my phone.
    Sick of it, but how do I deactivate the password. HELP, please.

    Go to Settings>Passcode, it will prompt you for the passcode and then select Turn Passcode Off. It will prompt you for the passcode again and then will remove the passcode.

  • Windows Bitlocker and automatic unlock password storage safety

    I've encrypted my external HDD with a Bitlocker and after rebooting computer I tried to open that drive and got this message:
    Say, if I pick to "Automatically unlock on this computer from now on", does this mean that Windows will store my password somewhere in the registry?
    PS. Or, are they smart enough to store only the hash -- preferably salted?

    I think Windows will save and encrypt password as well as other information of the drive.
    Niki Han
    TechNet Community Support

  • How do I deactivate password on ios 7 on my iPhone 4s?

    I updated to iOS 7 today and iCloud isn't activated. I don't use this feature. But everytime my iPhone goes to sleep, I have to enter a password to use it. Annoying! I went into the settings and deactivated it, it asked for my Apple ID and password and got a message it was deactivated. But still, it always asks for my password. How can I deactive this permanently? Please, don't tell me I should use iCould, I won't. Thanks! =)

    Same way as you always have done -- press and hold 'till they wiggle, then tap the [x] in the corner of the one you want to delete.  Or, change your sync settings via iTunes to not sync apps you don't want/need.
    Note that you cannot eliminate built-in apps like Weather, Stocks, etc.

  • Automate oracle password reset via procedure

    I want to create a web application that I can call a stored procedure, pass in the username, and application that the user is trying to have their password reset on. Reset their password to a temporary password, and email the temp password to their email account. Once they get the temp password, they can login into the system, and change their password.
    The java part probably not a problem. Does anyone know how to create a procedure to act as sysadmin, and reset passwords temporarily?
    I know it can be done. The only problem is that I am on 8i, and 9 for the databases. I have about 5 - 6 different applications that they can change their password on.
    thanks ahead of time.
    orozcom

    What do you mean by "application"?We do have a number of home grown applications that require username, and password.
    Some of these application use the standard ldap username/password. So resetting the password here may also reset other application passwords as well. Yet some of our application have their own unique way of resetting the password for the application. I am hoping to copy the way that a sys admin usually does this and replicate it using java. Some are command line, other are through the use of a tool used by the application. So far I have been able to replicate most of them using java. I am still working on 1 other. 5 out of 6 not bad. Anyway, we would like to go to one place to reset the password for a user, and then email that temp password to them. Of course we will have some sort of authentication to change the password, such as unique questions they must answer, etc...

  • Does Adobe's uninstaller automatically deactivate license?

    I think I might have messed up here. I forgot to deactivate a license before running Adobe's uninstaller. Any chance it deactivates your license before wiping out all the apps? If not, am I screwed?

    That feature was last seen in the CS2 uninstaller, then was removed for CS3 and CS4. It's back in CS5, thankfully. that doesn't really help you, though, so do cal lsupport as Andrew recommended.
    Mylenium

  • Db2 standby stsem automatic deactivate problem

    i set up hadr on 2 db2 systems but i encouter strange problem.following is my steps:
    1. i start both os system.
    2, i enter cmd 'db2start' then 'db2 start hadr on db db2 as standby' on standby server.
    3.i enter cmd 'db2start' then 'db2 start hadr on db db2 as primary' on pirmary server
    4.i enter cmd 'db2 get snapshot for db on db2' on standby server but i get sql1611w message.
    so i enter cmd 'db2 activate db db2' on standby server and quickly enter cmd 'db2 get snapshot for db on db2' ,then i'll get the right result.but i'll get sql1611w message again if i have another get snapshot cmd several seconds later.it's also unseccessful if i use update db cfg cmd.
    it seems the standby db automatically deacaticate.
    what' wrong?
    thank u in advance.

    hi, Gerhard Paulus
        the db2diag.log is following on standby db.
    2008-08-10-22.41.42.787000+480 E328956H451        LEVEL: Error (OS)
    PID     : 2328                 TID  : 620         PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    APPHDL  : 0-62                 APPID: *LOCAL.DB2DB2.080810144142
    AUTHID  : DB2ADM 
    FUNCTION: DB2 UDB, oper system services, sqloCreateDirectory, probe:10
    MESSAGE : ZRC=0x83000003=-2097151997
    CALLED  : OS, -, CreateDirectory
    OSERR   : 3 "系统找不到指定的路径。"
    2008-08-10-22.41.59.396000+480 I329409H371        LEVEL: Warning
    PID     : 2328                 TID  : 620         PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    APPHDL  : 0-62                 APPID: *LOCAL.DB2DB2.080810144142
    AUTHID  : DB2ADM 
    FUNCTION: DB2 UDB, relation data serv, sqlrr_db_init, probe:100
    MESSAGE : DB2_IMPLICIT_UNICODE enabled
    2008-08-10-22.41.59.427000+480 I329782H391        LEVEL: Warning
    PID     : 2328                 TID  : 620         PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    APPHDL  : 0-62                 APPID: *LOCAL.DB2DB2.080810144142
    AUTHID  : DB2ADM 
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduStartup, probe:21151
    MESSAGE : Info: HADR Startup has begun.
    2008-08-10-22.41.59.459000+480 E330175H307        LEVEL: Event
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrSetHdrState, probe:10000
    CHANGE  : HADR state set to None (was None)
    2008-08-10-22.41.59.506000+480 I330484H337        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrResolveHostNamesToIp, probe:20100
    MESSAGE : HADR_LOCAL_HOST 192.168.1.51 mapped to 192.168.1.51
    2008-08-10-22.41.59.552000+480 I330823H338        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrResolveHostNamesToIp, probe:20110
    MESSAGE : HADR_REMOTE_HOST 192.168.1.53 mapped to 192.168.1.53
    2008-08-10-22.41.59.584000+480 I331163H297        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrResolveHosts, probe:20157
    MESSAGE : HADR is using IPv4.
    2008-08-10-22.41.59.599000+480 E331462H309        LEVEL: Event
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrSetHdrState, probe:10000
    CHANGE  : HADR state set to S-Boot (was None)
    2008-08-10-22.41.59.615000+480 I331773H313        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrStartReplayMaster, probe:21251
    MESSAGE : Info: Replaymaster Starting...
    2008-08-10-22.41.59.646000+480 I332088H368        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduStartup, probe:21151
    MESSAGE : Info: HADR Startup has begun.
    2008-08-10-22.41.59.724000+480 I332458H374        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpReplayMaster, probe:300
    MESSAGE : Starting Replay Master on standby.
    2008-08-10-22.41.59.802000+480 I332834H315        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrStartReplayMaster, probe:21252
    MESSAGE : Info: Replaymaster request done.
    2008-08-10-22.41.59.849000+480 I333151H395        LEVEL: Warning
    PID     : 2328                 TID  : 620         PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    APPHDL  : 0-62                 APPID: *LOCAL.DB2DB2.080810144142
    AUTHID  : DB2ADM 
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduStartup, probe:21152
    MESSAGE : Info: HADR Startup has completed.
    2008-08-10-22.41.59.849000+480 E333548H319        LEVEL: Event
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrSetHdrState, probe:10000
    CHANGE  : HADR state set to S-LocalCatchup (was S-Boot)
    2008-08-10-22.41.59.943000+480 E333869H390        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpReplayMaster, probe:920
    MESSAGE : ADM1602W  Rollforward recovery has been initiated.
    2008-08-10-22.41.59.959000+480 I334261H292        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduS, probe:20341
    MESSAGE : Info: Standby Started.
    2008-08-10-22.41.59.990000+480 E334555H434        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpReplayMaster, probe:1740
    MESSAGE : ADM1603I  DB2 is invoking the forward phase of the database
              rollforward recovery.
    2008-08-10-22.42.00.162000+480 I334991H507        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpForwardRecovery, probe:710
    DATA #1 : <preformatted>
    Invoking database rollforward forward recovery,
    lowtranlsn 00000004F870800C in log file number 0
    minbufflsn 00000004F870800C in log file number 0
    2008-08-10-22.42.00.177000+480 I335500H420        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlprecm, probe:2000
    DATA #1 : <preformatted>
    Using parallel recovery with 3 agents 34 QSets 102 queues and 64 chunks
    2008-08-10-22.42.00.787000+480 I335922H429        LEVEL: Error
    PID     : 2328                 TID  : 3732        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, recovery manager, sqlplfrIsLogFromValidChain, probe:5150
    DATA #1 : <preformatted>
    Log file S0000000.LOG is not from the correct log chain, lfcbFlags 1 PId 1214649520 CId 1217166070 state 513lfrScanStartPId 1212414351 bkpExtCID 0
    2008-08-10-22.42.00.912000+480 I336353H364        LEVEL: Warning
    PID     : 2328                 TID  : 3916        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpshrEdu, probe:18300
    MESSAGE : Maxing hdrLCUEndLsnRequested
    2008-08-10-22.42.00.974000+480 E336719H335        LEVEL: Event
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrSetHdrState, probe:10000
    CHANGE  : HADR state set to S-RemoteCatchupPending (was S-LocalCatchup)
    2008-08-10-22.42.01.068000+480 I337056H402        LEVEL: Severe
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduAcceptEvent, probe:20280
    MESSAGE : Failed to connect to primary. rc:
    DATA #1 : Hexdump, 4 bytes
    0x0BC0F304 : 1900 0F81                                  ....
    2008-08-10-22.42.01.646000+480 I337460H344        LEVEL: Severe
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduAcceptEvent, probe:20280
    RETCODE : ZRC=0x810F0019=-2129723367=SQLO_CONN_REFUSED "Connection refused"
    2008-08-10-22.42.15.052000+480 E337806H343        LEVEL: Event
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrSetHdrState, probe:10000
    CHANGE  : HADR state set to S-RemoteCatchupPending (was S-RemoteCatchupPending)
    2008-08-10-22.42.15.271000+480 E338151H336        LEVEL: Event
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrSetHdrState, probe:10000
    CHANGE  : HADR state set to S-RemoteCatchup (was S-RemoteCatchupPending)
    2008-08-10-22.42.15.302000+480 I338489H310        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrSPrepareLogWrite, probe:10260
    MESSAGE : RCUStartLsn 00000004F870800C
    2008-08-10-22.42.43.209000+480 I338801H319        LEVEL: Error
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduS, probe:21210
    MESSAGE : HADR: Missing log on primary. Standby shutting down
    2008-08-10-22.42.43.318000+480 I339122H350        LEVEL: Error
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduS, probe:21210
    RETCODE : ZRC=0x87800148=-2021654200=HDR_ZRC_BAD_LOG
              "HADR standby found bad log"
    2008-08-10-22.42.43.427000+480 I339474H293        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduS, probe:20342
    MESSAGE : Info: Standby Finished.
    2008-08-10-22.42.43.506000+480 I339769H311        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrStopReplayMaster, probe:21271
    MESSAGE : Info: Replaymaster Stoping...
    2008-08-10-22.42.43.537000+480 I340082H485        LEVEL: Warning
    PID     : 2328                 TID  : 3916        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrGetBlock, probe:40095
    MESSAGE : Warning: hdrGetBlock interrupted, rc =
    DATA #1 : Hexdump, 4 bytes
    0x0C23F41C : 0300 0F80                                  ....
    2008-08-10-22.42.43.552000+480 I340569H457        LEVEL: Error
    PID     : 2328                 TID  : 3496        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpshrScanNext, probe:1450
    RETCODE : ZRC=0x80100003=-2146435069=SQLP_LINT "Interrupt from application"
              DIA8003C The interrupt  has been received.
    2008-08-10-22.42.43.599000+480 I341028H457        LEVEL: Error
    PID     : 2328                 TID  : 3496        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpPRecReadLog, probe:1275
    RETCODE : ZRC=0x80100003=-2146435069=SQLP_LINT "Interrupt from application"
              DIA8003C The interrupt  has been received.
    2008-08-10-22.42.43.631000+480 I341487H457        LEVEL: Error
    PID     : 2328                 TID  : 3496        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpPRecReadLog, probe:1180
    RETCODE : ZRC=0x80100003=-2146435069=SQLP_LINT "Interrupt from application"
              DIA8003C The interrupt  has been received.
    2008-08-10-22.42.43.881000+480 I341946H449        LEVEL: Error
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlprecm, probe:2350
    RETCODE : ZRC=0x800F0003=-2146500605=SQLO_INTRP "Interrupt.  User Cancel."
              DIA8003C The interrupt  has been received.
    2008-08-10-22.42.43.912000+480 I342397H459        LEVEL: Error
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlprDoForwardPhase, probe:330
    RETCODE : ZRC=0x800F0003=-2146500605=SQLO_INTRP "Interrupt.  User Cancel."
              DIA8003C The interrupt  has been received.
    2008-08-10-22.42.43.912000+480 I342858H460        LEVEL: Error
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpForwardRecovery, probe:1230
    RETCODE : ZRC=0x800F0003=-2146500605=SQLO_INTRP "Interrupt.  User Cancel."
              DIA8003C The interrupt  has been received.
    2008-08-10-22.42.43.943000+480 E343320H401        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpReplayMaster, probe:6600
    MESSAGE : ADM1611W  The rollforward recovery phase has been completed.
    2008-08-10-22.42.43.943000+480 I343723H465        LEVEL: Error
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpReplayMaster, probe:8880
    MESSAGE : replay master stopping with sqlcode
    DATA #1 : Hexdump, 4 bytes
    0x02D1F91C : ECFB FFFF                                  ....
    2008-08-10-22.42.44.021000+480 I344190H314        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrStopReplayMaster, probe:21272
    MESSAGE : Info: Replaymaster request done.
    2008-08-10-22.42.44.021000+480 I344506H375        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000         DB   : DB2
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, recovery manager, sqlpReplayMaster, probe:9500
    MESSAGE : Stopping Replay Master on standby.
    2008-08-10-22.42.44.021000+480 I344883H354        LEVEL: Error
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduEntry, probe:21150
    RETCODE : ZRC=0x87800148=-2021654200=HDR_ZRC_BAD_LOG
              "HADR standby found bad log"
    2008-08-10-22.42.44.037000+480 I345239H370        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduShutdown, probe:29001
    MESSAGE : Info: HADR Shutdown has begun.
    2008-08-10-22.42.44.068000+480 I345611H301        LEVEL: Warning
    PID     : 2328                 TID  : 1924        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduEntry, probe:21145
    MESSAGE : Waiting for hdrEDUTerminate
    2008-08-10-22.42.44.068000+480 I345914H362        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduShutdown, probe:29125
    MESSAGE : Posting HDR_RTYPE_STOP
    2008-08-10-22.42.44.162000+480 I346278H374        LEVEL: Warning
    PID     : 2328                 TID  : 2152        PROC : db2syscs.exe
    INSTANCE: DB2DB2               NODE : 000
    APPHDL  : 0-63                 APPID: *LOCAL.DB2.080810144159
    FUNCTION: DB2 UDB, High Availability Disaster Recovery, hdrEduShutdown, probe:29002
    MESSAGE : Info: HADR Shutdown has completed.
    Edited by: tao pan on Aug 10, 2008 5:12 PM

Maybe you are looking for

  • I can't restore my iPod touch because of error 3194. I've tried pretty much everything and it still won't restore. Help?!

    I turned my iPod off last night and when I went to turn it back on, it got stuck on the logo. I tried to reboot it but it got stuck again. I waited about 15-20 minutes before rebooting it again. It got stuck once again. I plugged it into the computer

  • Inbound delivery without PO

    I would want to know whether inbound delivery can be created without any reference to purchase order. If true, is there any to achieve it? Thanks

  • Photoshop CS5 running VERY slow

    Hi, My Photoshop CS5 started running very slowly. I followed some suggestions and removed a bunch of programs and services from the start up menu. I also disabled Windows Search Host Protocol as I was getting frequent performance warnings from it whi

  • Why won't my final cut pro 7 open anymore?

    The load screen starts up but after a certain piont it dissapears and says final cut quit unexpectedly.  I already tried to reinstall it but it still happens. Please help.

  • DHCP giving out incorrect DNS server information

    Migrated my ONLY DHCP server from a 2k3 server to a new 2k8 server and I cannot figure out why it wont give out the correct DNS server settings. Here is what I have tried so far: Stopped service on the old DHCP server and forced a /release /renew on