Change the hostname after Database move to new server in Windows

We are moving database from one server to new server on Windows running 9.2.0.6. Temporarily the new server is named as XYZ after the database is moved. We want to change the servername to ABC , what changes is required ??
I think only tnsnames and listener.ora is required to be changed. Is anything else need to be changed for Intellligent Agent to work properly ??? Nothing in Registry I believe ???
Thanks
Atul

nothing to change in registry.Just stop the database and services and restart after renaming and rebooting.
change the client tnsnames too if host name is specified.

Similar Messages

  • How can I change the hostname after Oracle Database XE is installed?

    I currently have XE installed and working on my ubuntu machine.
    When I change the hostname of my machine, oracle database no longer connects and says "ORA-12505, TNS:listener does not currently know of SID given in connect descriptor".
    Can anyone tell me how I can change the hostname of my machine and keep oracle database working correctly?
    Thanks

    Stopping, reconfig, starting the instance is one way, although that is somewhat like using petrol to kill ants.
    The database instance pretty much does not care about the hostname setting. But the listener does- the installer finds the hostname and uses that in the setup bits.
    As posted somewhere here, when using the 1521 default listener port, the listener.ora config file can just be moved out of the way. Another potential fix is setting the HOST=0.0.0.0 for the IPv4 "any IP" address setting, or setting it to the correct hostname. Or HOST= can be set to IPv4 address. For IPv6, have to use HOST=<hostname> and it must resolve, can't HOST=... an IPv6 address.
    To move the listener file, stop the listener first. To change a HOST=... setting, also stop the listener first.
      lsnrctl stop
      mv $ORACLE_HOME/network/admin/listener.ora $ORACLE_HOME/network/admin/listener.bk0
      # or
      vi $ORACLE_HOME/network/admin/listener.ora
      # change HOST=<whatever> to the correct value, or 0.0.0.0
      lsnrctl start
      sqlplus /nolog
      conn system
      ... password ... Connected.
      alter system register;
      exit
      # start the lsnr
      lsnrctl start
      # check the status, services
      lsnrctl stat
      lsnrctl serv
    If the host has a wireless (or another NIC) that one does not want to offer up remote connections on, the 0.0.0.0 is not a good way to go either
    Message was edited by: clcarter
    typos

  • Duplicate Items in Outlook After Mailbox Move to New Server

    We are performing a server migration and after moving a group of pilot users from Exchange 2003 to Exchange 2007, they are reporting duplicate items (emails, calendar, contacts, etc.) in Outlook.  What could be causing this to happen and how do we prevent
    it?  What's the best way to fix the existing duplicates?  The duplicates have sync'd to the server as they show up in Outlook Webmail as well.
    Thank you

    Hi,
    How do your move these mailboxes from Exchange 2003 to Exchange 2007? Using move request in Exchange 2007 or exporting/importing a PST file?
    Since the duplicate items don't shown in Outlook Web App, please create a new Outlook profile in Outlook to have a try:
    http://support.microsoft.com/kb/829918
    Additionally, here is a reference about how to move mailboxes from Exchange 2003 to Exchange 2007:
    http://exchangeserverpro.com/moving-mailboxes-from-exchange-2003-to-exchange-server-2007/
    Note: Microsoft is providing this information as a convenience to you. The sites are not controlled by Microsoft. Microsoft cannot make any representations regarding the quality, safety, or suitability of any software or information found there. Please
    make sure that you completely understand the risk before retrieving any suggestions from the above link.
    Thanks,
    Winnie Liang
    TechNet Community Support

  • After change the hostname oracle is not available

    i changed the hostname of the server.after restarting the server.i try to login as sysdba but i recived the message oracle not available.It is an oracle 8i database.I anybody aware of this problem.please replay as early as possible
    Regards
    Senthil

    Try to start the related oracle service and feedback the output.
    When changing the hostname database itself shouldn't be affected by this change, but connectivity files are, so verify the listener status and make sure you have changed hostname references too at the listener.ora file.
    ~ Madrid
    http://hrivera99.blogspot.com/

  • HT4157 I have a cellular data account on my iPad. Almost immediately after I signed up, my e-mail was hacked and had to be cancelled. I cannot get into my AT&T cellular data account now to change the billing and account to my new e-mail. Please help.

    I have a cellular data account on my iPad. Almost immediately after I signed up, my e-mail was hacked and had to be cancelled. I cannot get into my AT&amp;T cellular data account now to change the billing and account to my new e-mail. Please help.

    According to the AT&T Wireless web site, you can manage your iPad data plan either from the iPad, or by using a web browser:
    From the website
    Log in to your account at att.com/iPadlanding using the email address and password you used during activation.
    Your account information will display. Select the desired account change option then tap Next.
    Read the Terms of Service, and then tap Accept.
    Review the Payment Summary to ensure the details are correct. Use the Back button if changes are required, otherwise tap Submit.
    Read the Confirmation message then tap OK.

  • How can I move the distribution database to a new server?

    I need to migrate an old distribution database to a new VM. My understanding is that you can detach/attach the distribution DB to make this easier. What are the 'gotchas' in this process? Do I need the detach/attach the system databases as well? The distributor
    is facilitating data from Oracle to SQL Server.
    Another question.. what are some good benchmarks for figuring out how much horsepower I should have set up in my VM that running distribution?
    Thanks,
    phil

    Hi philliptackett77,
    As your description, you want to migrate the distribution database to a new server. Based on my research, you need to remove the replication,  create the distribution on the new server, and recreate publication and subscription according to Satish's post.
    So you don’t need to detach or attach the distribution database or system databases.
    To make this process simple, you could use SQL Server Management Studio (SSMS) to generate scripts and run the scripts to recreate publications and subscriptions or drop publications and subscriptions as the screenshot below. Checking ‘To create or enable the
    components’ generates the script for creating the publications and subscriptions, and Checking ‘To drop or disable the components’ generates the script for dropping the publications and subscriptions.
    Firstly, please use SSMS to generate the script which is used to create publications and subscriptions.
    1.Connect to Publisher, or Subscriber in SSMS, and then expand the server node.
    2.Right-click the Replication folder, and then click Generate Scripts.
    3.In the Generate SQL Script dialog box, check ‘To create or enable the components’.
    4.Click Script to File.
    5.Enter a file name in the Script File Location dialog box, and then click Save. A status message is displayed.
    6.Click OK, and then click Close. For more information about the process, please refer to the article:
    http://msdn.microsoft.com/en-us/library/ms152483.aspx
    Secondly, follow the steps above, check ‘To drop or disable the components’ to generate the script used to drop publications and subscriptions. Then run the sript to drop publications and subscriptions.
    Thirdly, please disable distribution using Transact-SQL or SSMS following the steps in the article:
    http://technet.microsoft.com/en-us/library/ms152757(v=sql.105).aspx.
    Fourthly, please create the distribution at the new server using Transact-SQL or SSMS following the steps in the article:
    http://msdn.microsoft.com/en-us/library/ms151192.aspx#TsqlProcedure.
    Last, please run the script generated in the first step to recreate publications and subscriptions.
    Regards,
    Michelle Li

  • Having arranged some scanned pictures in an album in I-Photo how can I keep them in the order I have chosen when I move the album. They all have the scan date and not the taken date and move to new positions if I move them from one album to another.

    Having arranged some scanned pictures in an album in I-Photo how can I keep them in the order I have chosen when I move the album. They all have the scan date and not the taken date and move to new positions if I move them from one album to another.
    Is there any way to re-number them in the order I have chosen so that they can then be sorted by number? The scans are all from pre-digital images that I wish to move to a photobook and I don't want to have to organise them twice!
    Thanks for any suggestions.

    I was a bit short, Chris, sorry. It is limited, what can be posted, when typing on an iPad.
    Now I am back on my Mac. I meant the following:  Batch Change the date for a large range of photos, that should have a date stepped in increments.
    Select all Photos at once and use the command "Photos > Batch Change".
    Then set the date for the first photo and select an increment, e.g. one minute.
    Now all photos will get a new date assigned, incremented by one minute, in the sequence you have selected. So you will be able to sort them by date.  This way it will be unnecessary to change the titles or filenames.

  • ITunes 11 - how can I change the genre of a movie now?

    So I've had iTunes 11 for about 3 hours now and so far it *****.  One of my main problems is I can't find how I can change the genre of a movie anymore.  I used to do this from Get Info so I could organise all my movies in to my own genres that make sense to me which helps me find what I want to watch when using Apple TV.
    It will still let me do that for movies I bought before I "upgraded" to 11 but for the movies I bought this evening, after upgrading, the genre drop down is locked down.
    Am I just looking in the wrong place?  Or have Apple somehow got the idea that pointlessly preventing your customers from organising their content in their own way is somehow an improvement and I'm stuck with their nonsensical genre classifications?
    Same thing goes for movie titles now I think of it - I've edited movie titles after purchase (e.g. I've put HP1 in front of the title of Harry Potter and the Philosopher's Stone and HP2 in front of Chamber of Secrets) so that series list in watching order, rather than alphabetical order, on my Apple TV.  It's not letting me do that from Get Info either
    Please someone tell me I'm just doing it wrong - I don't think I've the patience to jump through the hoops necessary to get 10.7 back!

    I had the same bug in songs. It was directly related to tracks purchased in the iTunes store, they wouldn't allow any changes, it was all grayed out.
    Here's how I got around it. When I selected more than one item and any other item was not from the iTunes store it would allow me to Get Info and change everything with no problems.
    My suggestion is that if you need to, add in a movie from your hard drive (anything at all, it will be a dummy placeholder) that you can you use to select along with the one you need to change. Use command click to select non-contiguous files (even works in different genres), then get info (or command i) and then change your info. You can keep using the same dummy file for as long as you need to to fix the files with incorrect info, then delete it when done.

  • SBO2007A can no longer change the Price after Discount on marketing docs

    In SBO2005A (subjecting to Document Settings), you could change the Price after Discount.  Thisis no longer available in SBO2007A (unless you upgrade from SBO2005A with the appropiate settings.
    I have not found a customer who thinks this is good idea.
    Good to reinstate the functionality.
    Regards
    Jeff

    Hi,
    The field "Price after discount" can become editable if you unmark the checkbox "Calculate the row Total using the Unit Price" (Document Settings->General Tab). As default this checkbox is disabled for new installations.
    Also, please check the following link as well :
    Re: Net price calculation
    Regards,
    Jitin
    SAP Business One Forum Team

  • If changing the hostname of the Audit Vault Server version 12.1.2 please wait until the system reboots automatically.

    Hi everyone
    when changing the hostname of an AV Server in the newly released version 12.1.2, it can take up to 10 minutes from the time a user click ok on the pop-up message "Are you sure you want to reboot the Audit Vault Server for the changes to take affect" to the system actually shutting down for the reboot. The machine must not be manually rebooted as this will cause errors.
    Some background information was provided by one of Oracle's developers for this product:
    AVDF 12.1.2.0.0 uses Oracle Grid in Restart Configuration. This is needed to leverage the ASM infrastructure to create diskgroups etc. So, when a hostname of a system is changed, the entire Grid stack needs to be re-configured to work under the new hostname. This re-configuration is needed because Grid creates a lot of directories with the hostname in them and when the hostname is changed, it tries to look for critical configuration files under this new "hostname" and of course, they would not be present. Hence, when we change the hostname, an entire re-configuration of the Clusterware is attempted, at which point a new set of directories with the new hostname will be created by the Grid software.
    This reconfiguration operation may take a few minutes to several minutes depending on the hardware/resource specs. This is because re-configuration of the Clusterware stack is a heavy-weight operation and takes time (It needs to shutdown all the CRS services and re-configure them and bring them back up). Hence, the long duration it takes before re-boot. You *MUST NOT* reboot it manually before the system automatically reboots -- otherwise the re-configuration operation will only be half-done. The chances of this re-configuration operation failing is very, very minimal (based on our tests). So, given enough time it _WILL_ complete eventually and the system _WILL_ automatically reboot. You just need to wait for it to happen.
    Hope this will avoid any issues,
    greetings,
    Harm ten Napel

    I may add it was my personal impatience that lead to this discovery: I was re-imaging my virtualbox install with the new 12.1.2 version (for testing purposes) and I want my AV server to be called 'auditvault', when it appeared nothing was happening (but there was) I rebooted the system manually with said results...

  • I am not able to change the object after upgrade(SPAU Activity).

    HI All,
    I am not able to change the object after upgrade(SPAU Activity). Please any one can tell what is the reason with below details.
    You are not authorized to make changes
    Message no. 37202
    Diagnosis
    You have no authorization for the authorization object 'S_DEVELOP', which would allow you to change the screen concerned.
    There is also a second possibility:
    You want to edit a modified SAP screen in a customer system after an upgrate (SAP transport). The screen remains locked for editing until the new SAP version and the customer version have been aligned (Transaction SPAU).
    System Response
    Authorizations are assigned to users in profiles. Profiles are stored in the user master record.
    Procedure
    Comsult your system administrator.
    Thanks in Advance,
    Mahesh Devershetty

    Hi,
    Does the user who would like to change the screen have the authorisation
    for S_DEVELOP in his profile? Please run transaction /NSU53 after the
    failed authorisation. You will get an information which authorisation
    is missing.
    Additional please check if you have open entries in transaction SPAU for
    that object.
    If you couldn´t solve the issue I need an user to analyse it in your
    development system.
    That user needs all authorisation for development and has to be
    registrated as developer.
    The system uses the authorization object S_DEVELOP for Workbench objects
    can you please check your user master record whether it contains the
    required autorization or not.
    Please also ensure that modification adjustment is turned on as per note:
    197600  Switching the Modification Assistant off and on
    Aidan

  • Can't change the duration of my move animation in Keynote

    For some reason, when I change the duration of a move animation in a slide, nothing changes. It always animates at the same speed. Anybody has this problem?
    I'm using Keynote 6.1

    you will have countless other problems with this rubbish update,
    What specific issues are you having and someone might be able to help you?
    Keynote 6.1 is stable and works perfectly well for new presentations, continuing to use Keynote 5  for existing projects is a well accepted workflow.

  • How do I change the hostname used when Mac Mail sends EHLO

    Hi All,
    I work for a tech support group and one of our clients is experiencing some trouble sending emails. When they connect to their outbound mail server Mac Mail sends the EHLO command with a hostname like 01:23:45:67:89:ab.home
    Another Mac on the network sends a hostname like 00:A0:C9:14:C8:29.home2
    So they appear to be the a Mac address for the computers NIC followed by a generic location in this case .home, not sure if thats a generic Mac thing or something they chose to configure but because the hostname is not an ip address and contains ".(dot)home" the outbound mail server our client uses believes it to be a domain so then rejects it as an invalid domain when a lookup on it fails.
    I've changed the hostname of one of the Macs using the command "cutil –-set HostName new_hostname"
    This has changed the hostname when checking it by the hostname command in a Terminal but Mac Mail still persists in using the old hostname. We've tried rebooting the machine and rebooting the machine with the left shift key held down as I believe this does some kind of rebuild of configuration files, but still the old hostname is send when Mac Mail sends EHLO.
    How can I force Mac Mail to pick up the new hostname or is there something else I need to do to change it?
    thanks for any assistance you can provide,
    Martin

    Replying to myself:
    You can sign out from the account in iBooks and then sign in to another one.
    From the menu bar, choose:  Store->Sign Out
    Then sign in again with the desired ID: Store->Sign In

  • HT204053 I used one Apple ID to set up iCloud after iOS 6 was downloaded to my iPhone, now I want to change the Apple ID for iCloud on my iPhone but I'm unable to. How do you change the ID after it's been set up?

    I used one Apple ID to set up iCloud after iOS 6 was downloaded to my iPhone, now I want to change the Apple ID for iCloud on my iPhone but I'm unable to. How do you change the ID after it's been set up?

    See https://discussions.apple.com/message/19218571#19218571.

  • I changed my Apple ID two weeks ago and I Accidently forgot to sign out of my iCloud on my iPhone 5C. now it wont let me change the iCloud ID to match my new Apple ID. How do I change my iCloud ID even though it is asking for the old ID?

    I changed my Apple ID two weeks ago and I accidently forgot to sign out of my iCloud on my iPhone 5C. Now it wont let me change the iCloud ID to match my new Apple ID. How do I change my iCloud ID even though it is asking for the old ID?

    If the old ID is an earlier version of your current ID, temporarily recreate the old ID by going to https://appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Click edit next to the primary email account, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone, even though it prompts you for the password for your old account ID. Then save any photo stream photos that you wish to keep to your camera roll.  When finished go to Settings>iCloud, tap Delete Account and choose Delete from My iPhone when prompted (your iCloud data will still be in iCloud).  Next, go back to https://appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

Maybe you are looking for

  • HP PhotoSmart Premium C310 - Windows 8 and Office 2013 - Where have the page sizes gone

    I have just upgraded to Office 2013 on my windows 8 PC. Now when I goto print, and click "printer properties" evert drop down is blank, and all the titles are in Chinese. HELP please. Also the page size options have now lost useful things like A4, Le

  • How to switch off the loudspeaker during the video...

    Hi everybody! That is an old problem, and I found lots of topics and messages, but still no solution. How long could it take, and how many programmers and designers should work till we can get the button for switching on and off the loudspeaker?

  • How do I access all my music on authorized devices?

    I am having trouble accessing my music from all of my devices. My account shows that I have 3 devices that have access, but any music I have purchased on my laptop does not show up in my library on my iMac desktop computer. Help!

  • Link to a folder in XML form

    Hi Guys! I was faced with a strange problem. I want to add link to some folder to an XML form. Like with link to 'Read more' document in SAP's example. But... If I select folder in a moment of creation of XML form via standard browser controll, there

  • Mapping complete - process flow busy

    Hi all, I've a problem with a process flow I've imported from another server. If I run this process flow in the testing server it runs and complete without problems. Now, I've imported this process flow in the production server but it doesn't complet