11R2 How to change IP in OWB_REPOSITORY_LOCATION and Default Control Center

We are changing the IP of the OWB repository database server. Reviewing the locations tab, I found out the Default Control Center and OWB_REPOSITORY_LOCATION are set up with IPs, so I need to change the IPs by hostname in both of them. I think I cannot use the script OWB_HOME/rtp/sql/UpdateLocation.sql, then, how to do it?
I would appreciate if someone points at other issues I should check from OWB point of view.
Thanks in advance
Carmen

Thanks for your answers.
Oleg, I have update the CONNECT_SPEC in table WB_RT_SERVICE_NODES with hostname(:port:service), then I stopped / started the Control Center. Locations of OWB_REPOSITORY_LOCATION and Default Control Center still show the IPs in designer. (The other target locations were configured with hostname)
Then I run the script UpdateLocation.sql for OWB_REPOSITORY_LOCATION, and it finished fine:
09:06:01 SQL> @$ORACLE_HOME/owb/rtp/sql/UpdateLocation
This sql script sets the host:port:service and version parameters for a
location in the OWB Client Repository. It must be run from user OWBSYS.
The connection type must be host:port:service and cannot be changed
using this script.
The location may be registered or unregistered.
Restart OWB client in order to see the new version in the UI.
Enter Workspace Name: MY_WS
Enter Workspace User Name: WSUSER
Enter Location Name: OWB_REPOSITORY_LOCATION
New Host: myhost
New Port: myport
New Service Name: myDB
New Version: 11.2
Select Workspace Id for workspace MY_WS and user WSUSER
Workspace id = 122
Update location properties for OWB_REPOSITORY_LOCATION
Location Type = Oracle Database
Location OWB_REPOSITORY_LOCATION Found
Connection Type = Default HOST:PORT:SERVICE Updating...
Updating CMPLocation_Host = myhost
Updating CMPLocation_Port = myport
Updating CMPLocation_ServiceName = myDB
Updating CMPLocation_Version = 11.2
InsertingCMPLocation_Version
Procedimiento PL/SQL terminado correctamente.
09:12:04 SQL>
Both locations still have IPs in designer. Migth I have tried with GLOBAL_WORKSPACE instead of MY_WS?
Regards
Carmen

Similar Messages

  • How to change data source name and context root during deployment

    Hi,
    Env:
    WLS 10.1.3
    JDev 11.1.1.6
    Hudson
    I need to deploy two instances of my ADF application on the same development enviroment. We are using Hudson to deploy. My question is how to change data source name and application context root before second deployment.
    Kuba

    I don't believe there is an inbuilt facility to do this.
    Previously how I've done this is when checking files out using Hudson jovs, before the build I then use an Ant extension called XmlTask (http://www.oopsconsultancy.com/software/xmltask/) to modify the required XML files.
    Can I ask why you're doing this in the first place please? Multi-tenancy? 2 versions of the same app?
    CM.

  • How to change apps,applsys,applsyspub and alloracle in 11.5.10.2

    Hi,
    How to change apps,applsys,applsyspub and alloracle in 11.5.10.2.
    Thanks
    Siva

    siva,
    check
    Re: how to use FNDCPASS utility
    fadi

  • How to change Topic's Icon and show the Print Button

    Hi, currently i'm using robohelp html version 8. I have spent quite some time to figure out how to change topic's Icon and show the Print Button in my project. Anyone can help me on this? Btw, i using MX(template) to generate the output with FlashHelp Pro.
    Below is the screenshot for clearer clarification:
    Thanks.

    We would have told you if there was.
    Sorry but a downside of FlashHelp is that your customising options are limited.
    See www.grainge.org for RoboHelp and Authoring tips
    Follow me @petergrainge

  • HT201303 how to change a security question and answer

    how to change a security question and answer

    Sam ,
    I do have the same problem !!
    How to solve it ?
    Plz

  • My podcast has been approved, how do change my cover art and add an author?

    My podcast has been approved, how do change my cover art and add an author?  I would appreciate any help
    Thanks

    In whatever method you are using to create your podcast there should be a place where you originally placed the image or its URL, and you can just replace this with a new one (which needs to have a different filename from the original). Similarly there should be a place to enter your name so that it goes in the 'itunes:author' tag.

  • How to change a setting in the Java Control Panel with command line

    Hi,
    I am trying to figure out how to change a setting in the Java Control Panel with command line or with a script. I want to enable "Use SSL 2.0 compatible ClientHello format"
    I can't seem to find any documentation on how to change settings in the Java Control Panel via the command line
    Edited by: 897133 on Nov 14, 2011 7:15 AM

    OK figured it out. This is for the next person seeking the same solution.
    When you click on the Java Control Panel (found in the Control panel) in any version of Windows, it first looks for a System Wide Java Configuration (found here: C:\Windows\Sun\Java\Deployment). At this point you must be wondering why you don't have this folder (C:\Windows\Sun\Java\Deployment) or why its empty. Well, for an enterprise environment, you have to create it and place something in it - it doesn't exist by default. So you'll need a script (I used Autoit) to create the directory structure and place the the two files into it. The two files are "deployment.properties" and "deployment.config".
    Example: When you click on the Java Control Panel it first checks to see if this directory exists (C:\Windows\Sun\Java\Deployment) and then checks if there is a "deployment.config". If there is one it opens it and reads it. If it doesn't exist, Java creates user settings found here C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7.
    __deployment.config__
    It should look like this inside:
    *#deployment.config*
    *#Mon Nov 14 13:06:38 AST 2011*
    *# The First line below specifies if this config is mandatory which is simple enough*
    *# The second line just tells Java where to the properties of your Java Configuration*
    *# NOTE: These java settings will be applied to each user file and will overwrite existing ones*
    deployment.system.config.mandatory=True
    deployment.system.config=file\:C\:/WINDOWS/Sun/Java/Deployment/deployment.properties
    If you look in C:\Users\USERNAME\AppData\LocalLow\Sun\Java\Deployment on Windows 7 for example you will find "deployment.properties". You can use this as your default example and add your settings to it.
    How?
    Easy. If you want to add *"Use SSL 2.0 compatible ClientHello format"*
    Add this line:
    deployment.security.SSLv2Hello=true
    Maybe you want to disable Java update (which is a big problem for enterprises)
    Add these lines:
    deployment.javaws.autodownload=NEVER
    deployment.javaws.autodownload.locked=
    Below is a basic AutoIt script you could use (It compiles the files into the executable. When you compile the script the two Java files must be in the directory you specify in the FileInstall line, which can be anything you choose. It will also create your directory structure):
    #NoTrayIcon
    #RequireAdmin
    #Region ;**** Directives created by AutoIt3Wrapper_GUI ****
    #AutoIt3Wrapper_UseX64=n
    #EndRegion ;**** Directives created by AutoIt3Wrapper_GUI ****
    Func _JavaConfig()
         $ConfigFile_1 = @TempDir & "\deployment.properties"
         $ConfigFile_2 = @TempDir & "\deployment.config"
         FileInstall ("D:\My Documents\Autoit\Java config\deployment.properties", $ConfigFile_1)
    FileInstall ("D:\My Documents\Autoit\Java config\deployment.config", $ConfigFile_2)
         FileCopy($ConfigFile_1, @WindowsDir & "\Sun\Java\Deployment\", 9)
         FileCopy($ConfigFile_2, @WindowsDir & "\Sun\Java\Deployment\", 9)
         Sleep(10000)
         FileDelete(@TempDir & "\deployment.properties")
         FileDelete(@TempDir & "\deployment.config")
    EndFunc
    _JavaConfig()
    Now if you have SCUP and have setup Self Cert for your organization, you just need to create a SCUP update for JRE.
    Edited by: 897133 on Nov 16, 2011 4:53 AM

  • Does anyone knows how to change Microsoft Office 2011 language default from Italian to English ???

    Does anyone knows how to change Microsoft Office 2011 language default from Italian to English ???

    Are you talking about spellcheck or the language of menus and dialogues and menus?
    In general, the best place to search/ask about MS product issues is the forums they run for that:
    ttp://answers.microsoft.com/en-us/mac/forum/macword

  • With Firefox as my default browser for a desktop iMac, a note appears "An attempt to change your home page and default search has been blocked" It won't go away

    With Firefox as my default browser for a desktop iMac, a note appears "An attempt to change your home page and default search has been blocked" It won't go away. It tells me to click on the checkmark to change settings but that doesn't work and the red x in the upper right hand corner doesn't remove the note which is in the upper left corner of my iMac ??? The only thing that removes the note is quitting Firefox but it reappear as soon as I start Firefox back up ???

    If that does not work,
    Start '''[https://support.mozilla.org/en-US/kb/troubleshoot-firefox-issues-using-safe-mode Firefox in Safe Mode]''' {web Link} by holding down the '''<Shift><br> ''(Mac Options)'' ''' key, and then starting Firefox. Is the problem still there?
    Start your '''Computer''' in safe mode with networking. Then start Firefox. Try '''Safe''' web sites.
    '''[http://encyclopedia2.thefreedictionary.com/Linux+Safe+Mode Starting The Computer In Safe Mode;<br>Free Online Encyclopedia]'''

  • ATI Catalyst Install Manager and catalyst Control Center Help

    I just run the Windows 7 Upgrade
    advisor report and it said that I should uninstall the ATI Catalyst Install Manager and Catalyst Control Center then reinstall after upgrade..
    Could someone direct me where I might t find these programs for Windows 7

    You must not do this. Just continue upgrade installation.
    On my Satellite I got the same message but I have simply continued with upgrade.
    At the end everything went fine.

  • How to change my Email address and my home address ?

    Hi,
    I Create a new account @live.com  , I want all my last  certifications to be use the new Email address instead of the old one
    and also how to change my home address
    Last Questions , I want to change my login account on this forums to  use the new one so i keep with all my questions and my points  in the new login
    Thanks.

    Hi.
    You can change your home address at the Microsoft Profile Center. You will need to log in with one of your Live ID accounts and change here it here:
    https://profile.microsoft.com/regsysprofilecenter/infodefault.aspx
    As Sathya suggested, you can contact the Microsoft Certified Professional Support staff to move your certifications from the old email address to the new one, here:
    MCP support contact information
    Telephone: (800) 636-7544
    Monday through Friday: 6:30 A.M.–5:30 P.M. Pacific Time
    Email: [email protected]
    Expect a response within two business days.
    Fax: (661) 793-6555
    Alternately, you can contact your Microsoft Regional Service Center for Microsoft Learning. Please use the following web page to find the contact information for help.
    http://www.microsoft.com/learning/en-us/help.aspx
    The page includes email and phone contact information for your geographic location so you can email or call them directly. They will help you get your MCP ID transferred to your new Live ID email account.
    NOTE: This public forum is usually monitored by fellow certified IT folks and trainers.
    Good luck!
    Best wishes, Davin Mickelson

  • How to change the font size and style on run time

    dear all
    i try to change the font style and font size on runtime. I did the following:
    1- i created an item(:font_size) in which i will write the size of the font for the the other item ('customer_name')
    2 on the post_change trigger for 'font_size' i write this code
    SET_ITEM_PROPERTY('customer_name',FONT_size,(:font_size);
    i write 12 then then font size changed , then i write 18 , the size does not change. and when i write any value , no change happens. I do not know why
    the second problem is how to change the font style
    i made three checkbooks (bold,italic,underline)
    on the trugger when_checkbox_checked i write
         IF :BOLD = 'B' THEN
         SET_ITEM_PROPERTY('N_SAMPLE',FONT_STYLE,'BOLD');
         ELSE
    SET_ITEM_PROPERTY('N_SAMPLE',FONT_STYLE,'REGULAR');
         END IF;     
    no change happend at all.
    please help

    Hi friend,
    it's a really really strange tip... May be it's a Forms bug? I've tried with set_item_property..and.. you're right, it doesn't work..
    So.. you can try making this:
    - create a visual attribute with an specific font size....
    - use the
    SET_ITEM_INSTANCE_PROPERTY('block.item',CURRENT_RECORD,VISUAL_ATTRIBUTE,'you_visual_attribute');
    and call it from psot-change....
    It works
    Hope it helps,
    Jose.

  • How to change number of retries and delay before retrying after software install failure

    I deploy a software to client, but the installation is fail, so it will retry. but How to change the number of retries and delay before retrying after software install failure?
    I find "Retry Settings" in "Software Distribution Component Properties". But I think it work for Distribution, not the installation. am I right?

    First, are you referring to packages or applications because the behavior is different.
    Also, why do you want it to retry a failure? It failed for a reason so you need to fix the cause of the failure first. If it failed the first, it will likely fail the next time for the same reason. In general, ConfigMgr will only retry on transient type
    errors.
    Jason | http://blog.configmgrftw.com

  • How to change the master page and theme dynamically in sharepoint2013 anonymous site

    hi
    I have to change the master page and theme dynamically in sharepoint2013 anonymous site. i have to show one master page to authenticated user  another master page to anonymous user through code
    Srinivas

    Hi Srinivas,
    According to your description, my understanding is that you want to change the master page and theme dynamically based on the anonymous users or authenticated users.
    Per my knowledge, there is not an OOB way to change the master page and theme dynamically.
    SharePoint is based on Asp.net, as we know Asp.Net request processing is based on pipeline model, so we can delevlop a custom HttpModule to dynamic change the master page based on current logon user profile(using SP Object Model to get).
    Another solution could be to use the SecurityTrimmed control that injects the CSS depending on global user permissions, more information, please refer to
    it.
    Some similar posts for your reference:
    http://social.msdn.microsoft.com/Forums/office/en-US/c2b2d0da-c752-4aea-9c2d-e31a5b1a2988/sharepoint-2010-dynamic-masterpage-based-on-userprofile-property
    http://johanleino.wordpress.com/2011/10/20/using-a-different-master-page-for-authenticated-users-in-sharepoint/
    http://sharepoint.stackexchange.com/questions/21679/how-can-we-use-a-different-masterpage-for-annoymous-and-authenticated-users
    http://sivarajan.me/post/How-to-customize-the-SharePoint-2013-Master-Page-for-Anonymous-Users
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • How to change the full host and domain name on OS X Leopard...

    I recently bought an iMac, and I'm trying to configure it for my network. The question I have is, how can I change the host name and domain name from Skuld.local to skuld.tolharadys.net?
    After mucking around with a few searches on Google, I've gotten the domain name to stick since running domainname returns tolharadys.net. Also I can change the hostname as reported by 'hostname' temporarily by running 'hostname skuld.tolharadys.net' in Terminal.app. However, this isn't persistent after reboots. Ideas are welcome.

    You would need a DNS server on your network configured to answer authoritatively for that particular subdomain.

Maybe you are looking for