Register and unregister logfiles

Hi @all
i have done a system copy with copy and paste the required files from on server to an second. To create an central instance I have start the sapinst with properties from a systemcopy (maxdb) He create an Database Instance with a wrong the wrong log and datafiles How register and unregister I the data and logfiles to start the database without the 9050 Error (cannot access File)
KG
Martin

Hi Lars,
and thx for your helpfully answer.
KG
Martin

Similar Messages

  • Register and unregister locations using ombplus script

    hi
    how to register and unregister the locations using ombplus scripts.
    any help would be appreciated.
    thanks,
    Keka

    The deployment script I have posted previously to copy a project mdl over to a new repository for local deployment includes creating a control center, making it the default for your project, creating the locations, assigning them to the control center, and registering them.
    Re: importing mappings using OMBPLUS
    To unregister a location, first you want to undeploy anything deployed from it to avoid dangling references int he repository, and then unregister the location.
    I do that in the following drop_project script that we use to delete an old copy of the project before importing the new version.
    #get db connection info
    source c:\\omb\\owb_config.tcl
    #get standard library
    source c:\\omb\\omb_library.tcl
    # PVCS Version Information
    #/* $Workfile:   ers_owb_drop_project.tcl  $ $Revision:   2.1  $ */
    #/* $Author:   michael.broughton  $
    #/* $Date:   03 Apr 2008 13:43:02  $ */
    #  Connect to repos
    # Commit anything from previous work, otherwise OMBDISCONNECT will fail out.
    exec_omb OMBCOMMIT
    # If already connected, disconnect first.
    set print [exec_omb OMBDISCONNECT]
      # Test if message is "OMB01001: Not connected to repository." or "Disconnected."
      # any other message is a showstopper!
    if [string match Disconn* $print ]  {
       log_msg LOG "Success Disconnecting from previous repository...."
    } else {
       # We expect an OMB01001 error for trying to disconnect when not connected
       if [string match OMB01001* $print ] {
          log_msg LOG "Disconnect unneccessary. Not currently connected...."
       } else {
          log_msg ERROR "Error Disconnecting from previous repository....Exiting process."
          log_msg ERROR "$print"
          #exit
    set print [exec_omb OMBCONNECT $OWB_DEG_USER/$OWB_DEG_PASS@$OWB_DEG_HOST:$OWB_DEG_PORT:$OWB_DEG_SRVC USE REPOSITORY '$OWB_DEG_REPOS']
    if [omb_error $print] {
        log_msg ERROR "Unable to connect to repository."
        log_msg ERROR "$print" "1"
        log_msg ERROR "Exiting Script.............."
        return
    } else {
        log_msg LOG "Connected to Repository"   
    return
    # Connect to project
    set print [exec_omb OMBCC '$PROJECT_TO_DROP_NAME']
    if [omb_error $print] {
       log_msg LOG "Project $PROJECT_TO_DROP_NAME does not exist. No Cleanup Required...."
       exec_omb OMBDISCONNECT CONTROL_CENTER
       exec_omb OMBDISCONNECT
       return
    } else {
       log_msg LOG "Verified project $PROJECT_TO_DROP_NAME exists"
       exec_omb OMBCC '..'
    # Exporting MDL Backup of Project
    set print [exec_omb OMBEXPORT TO MDL_FILE '$EXPORT_FILE_PATH/$EXPORT_FILE_NAME' FROM PROJECT NAMES '$PROJECT_TO_DROP_NAME' OUTPUT LOG TO '$EXPORT_LOG_PATH/$EXPORT_LOG_NAME' ]
    if [omb_error $print] {
       #We expect to get warnings due to differences in Control center names etc,
       if {[string match OMB05105* $print]} {
          log_msg LOG "MDL File $EXPORT_FILE_NAME exported with warnings"
       } else {
           log_msg ERROR "Unable to import $EXPORT_FILE_PATH/$EXPORT_FILE_NAME. "
           log_msg ERROR "$print"
           log_msg ERROR "Exiting Script.............."
           exec_omb OMBROLLBACK
           return
    } else {
       log_msg LOG "MDL File $EXPORT_FILE_NAME exported with no warnings.............."
    exec_omb OMBCOMMIT
    # Validate to Control Center
    set lst [OMBLIST CONTROL_CENTERS]
    if [string match *$CONTROL_CENTER_NAME* lst] {
       log_msg LOG "Verify Control Center $CONTROL_CENTER_NAME Exists."
       log_msg LOG "Setting Passwords to enable de-registration"
       log_msg LOG "Connecting to Control Center $CONTROL_CENTER_NAME"
       set print [exec_omb OMBCONNECT CONTROL_CENTER USE '$DATA_LOCATION_PASS' ]
       if [omb_error $print] {
          log_msg ERROR "Unable to connect to Control Center $CONTROL_CENTER_NAME"
          log_msg ERROR "$print"
          log_msg ERROR "Exiting Script.............."
          exec_omb OMBROLLBACK
          return
       exec_omb OMBCOMMIT
       log_msg LOG "Deleting Existing Mappings."
       set print [exec_omb OMBALTER LOCATION '$DATA_LOCATION_NAME' SET PROPERTIES (PASSWORD) VALUES ('$DATA_LOCATION_PASS')]
       exec_omb OMBCOMMIT
       exec_omb OMBCC '$ORA_MODULE_NAME'
       set mapList [ OMBLIST MAPPINGS ]
       foreach mapName $mapList {
          log_msg LOG "Un-Deploying: $mapName"
          set print [ exec_omb OMBCREATE TRANSIENT DEPLOYMENT_ACTION_PLAN 'DEPLOY_PLAN' ADD ACTION 'MAPPING_DEPLOY' SET PROPERTIES (OPERATION) VALUES ('DROP') SET REFERENCE MAPPING '$mapName' ]
          if [omb_error $print] {
             exit_failure "Unable to create Deployment plan for '$mapName'"
          set print [ exec_omb OMBDEPLOY DEPLOYMENT_ACTION_PLAN 'DEPLOY_PLAN' ]
          if [omb_error $print] {
             exit_failure "Error on execute of Deployment plan for '$mapName'"
          exec_omb OMBDROP DEPLOYMENT_ACTION_PLAN 'DEPLOY_PLAN'
          exec_omb OMBCOMMIT
      exec_omb OMBCC '..'
      exec_omb OMBCC '..'
       log_msg LOG "Un-Registering Code Location."
       set print [exec_omb OMBUNREGISTER LOCATION '$DATA_LOCATION_NAME']
       if [omb_error $print] {
          log_msg ERROR "Unable to register Location $DATA_LOCATION_NAME"
          log_msg ERROR "$print"
          log_msg ERROR "Exiting Script.............."
          exec_omb OMBROLLBACK
          return
       exec_omb OMBCOMMIT
    } else {
       log_msg LOG "Control Center $CONTROL_CENTER_NAME does not exist - unable to de-register locations."
    # Dropping project
    exec_omb OMBDISCONNECT CONTROL_CENTER
    log_msg LOG "Renaming project $PROJECT_TO_DROP_NAME to $PROJECT_TO_DROP_NEWNAME ...."
    set print [exec_omb OMBALTER PROJECT '$PROJECT_TO_DROP_NAME' RENAME TO '$PROJECT_TO_DROP_NEWNAME']
    if [omb_error $print] {
       log_msg LOG "Failed to drop project $PROJECT_TO_DROP_NAME...."
       log_msg ERROR "$print"
       log_msg ERROR "Exiting Script.............."
    exec_omb OMBDISCONNECTThis script uses the same config and library file given in the other post that I pointed you towards. That is where you will find the definition for exec_omb, for example which is simply a wrapper for OMB+ calls
    Now, note that I don't un-deploy any tables, views, sequences etc. We use Designer as our location of record for the data model metadata so our OWB project never deploys any object metadata except for mappings. Your setup may be different, still this should point you in the right direction.
    Cheers,
    Mike

  • How to register and unregister Mbean server when jvm is crashed.

    Hi All,
    how to register and unregister Mbean server when jvm is crashed with specifying like internal error(xxxxxxxxxxxsome number)
    I am getting error NameAlreadyBindExcetion when i call the below method in my program, how to unregister and register again, can any one can help on this topic?
    internalConnectorService.start();
    regards
    Prasad.Nadendla

    Looks like your server object is already bound and registered and your trying to re-register the same...
    is that a corba server? if yes, you'd be able to check that with the NamingService tools

  • Planning Appl not able to register and unregister with shared services

    Hi All,
    I created a planning application before that I created a datasource. After crearting an application I got an error as Application  not able to register with shared services .
    And also I am facing one more issue that is if I delete any particular planning application at that time I got an error as Application  not able to unregister with shared services.
    I am able to open the planning application through http://<planningmachine>:8300/HyperionPlanning/AppWizard.jsp and its working fine. I am able to open the Shared Services though Workspace but I am not able to find the option for planning application.
    Kindly guide me how to overcome it.
    Thanks and Regards
    ChiDam

    Have you checked the logs? Found something?
    This normally happens when there is issue with Planning app and cluster mapping. For some reason, the application maps to non-existent cluster in Planning system schema resulting in failure of HSS registration. you can manually re associate the cluster using configuration tool and try registering again.
    Cheers..!!

  • I plugged in my brand new nano to my husbands desktop to get it registered, but had a problem mid way through when I tried to used an apple login that already existed.  Now it's not registered and the computer won't recognize my device.  How do I fix this

    I plugged in my brand new nano to my husbands desktop to get it registered, but had a problem mid way through when I tried to used an apple login that already existed.  Now it's not registered and the computer won't recognize my device.  How do I fix this?

    iPod not recognized in 'My Computer' and in iTunes for Windows
    Call U.S. iPod and Mac technical support: 1-800-APL-CARE (1-800-275-2273) to register your iPod Nano.

  • From within Photoshop Elements, when I try to open Editor, a box opens that states I must activate the software.  I registered and activated the software last year.  When I click to activate, I get a message that I am not connected to the internet.  I am

    From within Photoshop Elements, when I try to open Editor, a box opens that states I must activate the software.  I registered and activated the software last year.  When I click to activate, I get a message that I am not connected to the internet.  I am connected.  How do I get Editor to work?

    You would get the redemption code, or perhaps even the serial number, from whomever you purchased the software from, apparently Amazon, so talk to them.  This wouldn’t be the first time they’ve sold something that didn’t have all the numbers needed to license it.
    A redemption code is something that is usually on the inner disc packaging if you purchase the media in a box, and there is a barcode on the outside of the packaging that must be scanned at the checkout register to activate the hidden inner code so you can redeem it at home on that website.  This is what happens if you buy PSE from a brick-and-mortar store like Best Buy.  I don’t’ know what happens if you purchase the downloaded version as I have never done that.
    A redemption code is 24-digits of letters and numbers that you enter into a website to get a serial number, once and only once.  The serial number of only 24-digits, no letters, is what you enter into the software during the install or when you run it and it asks if you want to register or run in a trial mode—whatever the exact phrasing is.
    In any case it sounds like you don’t have either a redemption code or serial number—although perhaps something is listed on the purchase confirmation or your account online at Amazon or even in an e-mail from Amazon.

  • How do I know where my account is registered and how can I change that?

    Hi,
    Whenever I try to pay Acrobat XI, I get the message that the country of my registration is wrong. How do I know, in which country my account is registered and how can I change that?
    It seems, that my account is registered in Austria, but I work now in the Netherlands. What is there to do?
    Thanks for your help
    Message was edited by: Michael Koller

    Hi Michael ,
    You can log in to Adobe.com with your credentials and you can change your region or country from the option "Change Region" at the bottom left of the page .
    From there you can change your region and select the preferred one and make the payments.
    Hope this will work .
    Regards
    Sukrit Dhingra

  • I have a plane which is in effect till march but I also registered and payed for a teacher plan.

    Today I'm in a plan which is in effect till march but I also registered and payed for a teacher plan.
    How do I see both in my Adobe ID?
    Will I'll receive a receipt every month (I need to give it to my accountant)  since I see that I got a confirming email for a monthly sum and not the total sum. do I have to pay till march for both?
    Could you please reply via mail?
    [email protected]

    https://www.adobe.com/account.html for serial numbers or subscriptions on your Adobe page

  • Photoshop CC keeps asking for me to register and supply my license

    I am a Creative Cloud subscriber, Photoshop/Lightroom only limited edition, and have been for a year or more, running of a Windows 8.1 platform with lots of RAM, etc.  Lately - on occasion - when launching PS, a dialogue will come up with a alternate messages, including "register your product" or "this application is not registered, and cannot launch."  PS then fails to launch, but sometimes I'm taken to a screen where I can register my "30-day trial," or enter my PS serial number for a 30-day trial.  Of course neither of these options are appropriate, and I don't have the PS CC serial number anyway, and I assume that an even worse can of worms will be introduced if I fill out either of those forms.
    I chatted with tech support awhile back, and he had me delete the "obe" file somewhere in System, do some other things, and restart PS.  That worked, but now the problem has re-emerged.
    Anyone have experience with this?
    Tx, Robert

    You need to check icloud on the phones setting you will see the old email there
    Follow these step to a T
    Change apple id back to old email
    sign out in settings
    then chnage back to what u want the account to be
    WIN

  • I try to open Acrobat I get a message that I need to register the product. I click on register and after about a minute, I'm told that I don't have an internet connection. My internet connection is working fine. In fact I registered Acrobat Pro XI using m

    I try to open Acrobat I get a message that I need to register the product. I click on register and after about a minute, I'm told that I don't have an internet connection. My internet connection is working fine. In fact I registered Acrobat Pro XI using my account, but the program itself will not recognize it or allow me to use the software. What do I do?

    If you already registered, then there is no point to trying to do so again. Simply dismiss the dialog.
    Mylenium

  • TS3376 I had my iphone set up to be tracked as registered with iCloud and it had been using it for a year one day it said no devices registered and stopped working why???

    I had my iphone set up to be tracked as registered with iCloud and it had been using it for a year today it said no devices registered and stopped working even though i tracked the selected iphone 4 device an hour earlier why did it do this???

    So basically the phone I was tracking was working an hour earlier it had no signal at times when it did pick up a signal it located it easily but an hour later the message came up no devices registered when my friend returned home I Checked the device I was tracking to make sure find my iphone was on but it was off and my friend didnt turn it off so my question is why did it turn itself off???
    Confused?

  • VAT REGISTER AND REPORT

    Hi,
    What is VAT register and VAT REPORT and in which transaction I can see it.
    Regards,
    Chetan.

    Hi,
    VAT register is nothing but the sales tax register.
    The tcode for executing vat register is J1I2.
    Regards,
    Rambhupal reddy

  • Sales tax register and purchase tax register

    Dear All,
    Is there any standard report for sales tax register and purchase tax register? give me your valuable inputs appraisals are waiting.
    Thanks inadvance.
    Nauma.

    Please refer T code J1I2 for Sales Tax Register. There is no Standard Purchase Tax Register.
    Regards
    Bhavesh Mistry
    Edited by: Bhavesh Mistry on Jul 15, 2009 7:10 AM

  • Register and cenvat

    hi,
    1) what is excise register?
    2) what is the difference for RG register and PLA register?
    RG23A Part 1 and Part 2 used for RAW METERIAL . for Exp u buy a raw meterial so the Qty of u purchased will go RG23A Part 1 and value go to the Part 2. the same way when u sell also Qty will go the Part 1 and Value of the Qty will go the Part 2.
    3) value in part2 means the excise duty or material value? should be excise duty right?
    4) rg23a part II shows the amounts of excise duty on the materials, and how much you have transferred to the CENVAT accounts.
    may i know what it means by cenvat account? cenvat account like example rg23abed? what about plabed? they are cenvat account or register?
    5) what the difference for cenvat account, pla account, pla on hold, cenvat suspense and cenvat clearing?
    thanks

    Hi,
    Please try for these.
    J2I6          :Print excise registers
    J2I9          :Monthly CENVAT return
    Thanks,
    Vasu..

  • I have a DVD Acrobat Pro 9. I upgraded laptops and trying to install but the DVD is not readable. How can I get a new DVD or Download Acrobat Pro 1. The product is registered and I have the serial number. PS: Contacting Adobe on this issue is impossible..

    I have a DVD Acrobat Pro 9. I upgraded laptops and trying to install but the DVD is not readable. How can I get a new DVD or Download Acrobat Pro 1. The product is registered and I have the serial number. PS: Contacting Adobe on this issue is impossible... direct support stinks.

    Download AA 9 Pro from http://helpx.adobe.com/acrobat/kb/acrobat-downloads.html. Make a new backup for your archive. You might also take the DVD to your library to see if it is a drive problem. You might also carefully clean the DVD with water and soap (do not use anything that would scratch the surface or you have destroyed it for sure) and see if that solves the problem. This is particularly an issue if you have finger prints or other crud on the DVD. However, it could also be a bad drive as I mentioned. Hopefully the download solves your problem in any case (I would backup the download to CD and/or backup HD).

Maybe you are looking for

  • Af:panelPage not found in Component Palette

    Hi All, I am using JDeveloper 11.1.1.5.0. I am following a hands-on tutorial in book "Oracle JDeveloper for Forms and PLSQL developers" which is using Oracle JDeveloper 10g. It is using af:panelPage facet which is not available in JDeveloper 11g. Can

  • Illustrator CS4 plugin problem after upgrade to OS X Yosemite

    I just upgrade my OS X Maverick to Yosemite, and found my adobe illustrator CS4 got error while i open it. it shown missing plugin of  photoshopimport.aip.... Anyone know how to solve this problem??

  • Display R/3 Screen Transaction in Webdynpro

    Hi, I want to display R/3 Transaction Screen ex: se38 in webdynpro when i click a button. also is it possible to set parameters for such transaction. regards, Ganesh.D

  • Tango theme for Apache autoindex

    I made a Tango theme for Apache autoindex because i was tired of the old apache icons and look download: https://bitbucket.org/wooptoo/misc/down - -icons.zip The theme uses tango naming conventions (not apache's) and it can also use the tango/gnome i

  • Why is sound of sync?

    I'm using iMovie 4.0.1 for the first time and just exported (OK, shared to the camera) an eight minute video and the sound was out of sync. The video was ahead of the audio by about 2 seconds. Have plenty of space on the HD and don't have any other p