update owner CRS as a different user

Hi all

CRS/ASM 10R2 on HP - UX 11.31 upgrade to grid infrastructure 11 GR 2

I'm under RAC 10 g 2 (10.2.0.4) with CRS, ASM and the database as user 'oracle '.
We intend to move to GR 11, 2 and oracle's best practices recommend to separate the owner of the infrastructure of the network and the database.
We like to use "grid" user for the grid infrastructure and 'oracle' for the RAC database. But it seems that this best practice is for the new installation. According
Oracle® grid infrastructure
Installation Guide
11g Release 2 (11.2) for HP - UX
E17211-03

You must use the same owner who holds the CRS and ASM to do the upgrade and there is no work around.
can someone please advise?
Kind regards

The installation guide instructions seem to be clear enough. Annex F.4 of my grid installation guide Infrastruction he says "with 11g release Oracle Clusterware versions 1 and later, the same user who owned the Clusterware Oracle 10g software must perform the upgrade of the 11g of Oracle Clusterware. I don't see any leeway, so you must continue to use oracle as the owner of cluster and the owner of the RDBMS software.

The only alternative, I think, would be to dismantle the entire cluster and proceed with the installation of the Infrastructure of grid as you would with any new cluster. Personally, I doubt that it is worth. We use IDS separated for the database and cluster where I work, but it is certainly reasonable to combine these functions.

Tags: Database

Similar Questions

  • BlackBerry Z30 error update BBID "this username is already in use. Enter a different user name. "

    I created new BBID using my outlook account. When I tried to update the old BBID by this new device Z30, it shows message "this username is already in use. Enter a different user name. ». While this 'my new ID' has never been used in any device of BB before that. Please guide me on this issue.

    Thank you

    Qayzar

    Ok. The key is what you started with. Your device has been associated with a BBID. You created a new BBID and now want to associate the device with the new BBID. To do this, WIPE the device. But there are contingencies.

    First of all, don't forget that it is actually what you want to do. There is a difference between changing the email address associated with a BBID and change the real BBID. You must be sure that your intention is here. If you change the real BBID, you will lose then all contacts in BBM, BBWorld records of purchases and other things. If instead, you change the e-mail assigned to the BBID existing address, none of this will be lost.

    Continue with this section only if your desire is to change the real BBID bound to the device (and thus lose your BBM contacts, BBWorld purchase recorde, etc.).

    Check the device running OS. Reference:

    If you run any OS in the beach of 10.3.2.xxxx, then it is mandatory that you know the credentials for the BBID that is currently associated with the device... If you do not, then you can not continue what you intend. 10.3.2, the compulsory anti-theft function is in place, and when you start the WIPE on the device (in order to divorce the device from the current BBID), you will need to enter the current BBID credentials in order to move forward. So, if you don't know these credentials, then stop now and say that we will have to give you different instructions.

    But, if you know your BBID identifiers OR you're not on the 10.3.2 branch OS, then you can go ahead with the WIPE on the device and then associate the device with the new BBID as part of the initial installation. Of course, before you start this, you want a good backup link, a manual copy of the memory of your device to your PC and complete documentation of your configuration (identification information of account, adding applications, configurations, etc.). Sometimes, restoring a backup returns unit corruption even, must be eliminated and reconfiguration from scratch can solve that. Indeed, since you will change the associated BBID, backup, you take now (with the old BBID) will probably not usable as a source of restoration, later (with the new BBID) and thus you probably you must manually configure everything anyway. If you used the OTA servers (e.g., Google, Outlook.com, etc.) as the location of data storage 'master' for your contacts and calendar, it shouldn't be a big problem because these data will repopulate the device to these servers when you reconfigure the account. But, if you have used 'local' for these data, the challenge will be much larger.

    Proceed with this section only if your intention was to keep the existing BBID but to change the e-mail address are attributed to him (and NOT lose your BBM, records of purchases BBWorld, contacts etc..).

    If your original intention was not to change really the BBID but rather to simply change the email address associated with the BBID, you never have to have created the new BBID at all... instead, see:

    Since then, however, you have created the new BBID, then you will have to destroy the new BBID first and then make the change of address email documented in the KB. To destroy the new BBID, consult:

    Good luck!

  • Different users accessing the data with different rights

    Hello
    I just started with Oracle and I don't know if
    This is the right way for what I was intending.

    I want to allow access to the data (tables, views,...) to different users with different rights.
    For example a user with select only the rights and another with select and insert rights.

    Database Oracle 10 g Express Edition is.

    Here are the steps I did:

    -This user will be allowed to select only
    create user UserSelectOnly...;

    -This user will have select and insert privileges
    create user UserSelectAndInsert...;

    -This user only contains data
    create user BaseDB...;

    -creation of test in BaseDB data
    create the table tdTest (...);

    -definition of role in BaseDB for right to select
    create the role RoleSelectOnly;

    -granting SELECT privilege for RoleSelectOnly
    Grant select on tdTest to RoleSelectOnly;

    -select grant (role) to the user UserSelectOnly
    grant RoleSelectOnly to UserSelectOnly;

    -definition of role in BaseDB to select and insert privileges
    create the role RoleSelectAndInsert;

    -grant select and insert privilege for RoleSelectAndInsert
    Grant select, insert on tdTest to RoleSelectAndInsert;

    -grant select and insert (role) to the user UserSelectAndInsert
    grant RoleSelectAndInsert to UserSelectAndInsert;

    My problem is that the definition of user (BaseDB) works as a database.
    Are there more effective ways in Oracle 10 g Express?

    Thank you
    Wilfried

    Hello Wilfried and welcome to the forum.

    First of all, it's a property that you have given time to review the security of the database.

    My immediate comments:

    You have 3 users:

    -This user only contains data
    create user BaseDB...;

    Very well, good thing. Use an administrative account/data owner.
    You might consider locking when you do not have administrative tasks in the schema.

    -This user will be allowed to select only
    create user UserSelectOnly...;

    -This user will have select and insert privileges
    create user UserSelectAndInsert...;

    OK, but no need to take account of their privileges in the names. You could simply call their

    SomeUser
    AnotherUser

    You have two roles

    -definition of role in BaseDB for right to select
    create the role RoleSelectOnly;

    -definition of role in BaseDB to select and insert privileges
    create the role RoleSelectAndInsert;

    Seems ok, it's a good thing here for the description of privileges in the role itself.

    Maybe I would call them something like
    RoleSelect or RoleRead or BaseDBSelectRole
    RoleInsert or RoleWrite or BaseDBUpdateRole

    Should be updated (and DELETE), as well?

    Another approach would be to separate between the tables.

    For a group of tables, select, insert, update, delete are granted to a role.

    For another group of tables, different privileges are granted to another role.

    That is, there is no general answer, correct, it depends on your application.

    Often the roles are used for ease of maintenance. In other words, if you have several users who need
    the same set of privilege, these are maintained by a role.

    Maybe you don't want to use roles, but I like them.
    But attention not only

    Select on all tables to a single role
    Insert on every table to another role
    Update on all tables to a third party role.

    Unless, of course, it gives meaning to your scenario.

    My problem is that the definition of user (BaseDB) works as a database.
    Are there more effective ways in Oracle 10 g Express?

    Not sure what you mean. Schema in Oracle and user are often used for the same thing.

    In your case, BaseDB is the owner of (all) the tables, no problem.
    As mentioned, you might choose to block the account.

    The main thing is, no application, or ad-hoc user should log in as BaseDB

    And the users of your system should be exactly the privileges they need to do their jobs
    nothing more, nothing less.

    Concerning
    Peter

  • Different for different users screen resolution

    Hello
    I use 1280 * 1024 and kids (different users) 800 * 600.  If I connect after that my children do some sufring using their user ID, my icons get all dirtied upward and not instead what they used to be in front of my connected children.  The icons apprear on the half top of the screen leaving the bottom of half empty.  Some of the icons move to another location.  It's a really nasty situation like I have to adjust my icons to each time my connection to children.

    All the drivers are OK, I have a monitor de LCD Samsung SyncMaster 920N, loading of all Vista Ultimate updates.

    I can't seem to find a way to ensure that my icons don't get screwed up.  Any suggestions?

    Thank you

    ST

    There is nothing built in Vista that can do what you want.  Here are some possible solutions:

    1. install Windows SteadyState, which can undo changes made to the computer by other users.

    2 install the software screen resolution of CNet Download.com.
    Steve Winograd, MS - MVP (Windows desktop experience)

  • User account now points to a different user account files

    Several users have in our household have accounts on a laptop.  One of the accounts mysteriously began to point to a different user account files.  All other user accounts seem to work normally.

    UAC is not running on the machine.  The user account with the problem and that to which it points now have administrator privileges.  Windows Update is active.  The 2 latest updates prior to the issuance have been updated to Windows defender.

    How to restore this user account to the way it was?

    Hey Super,

    It is possible that the location of each of the user data folder are changed to the other user account.

    First check if the user account folders do not exist in the C:\drive\users and then continue with the steps below.

    You will need to each user account folder redirected to its original location and check if it works.

    1 right click on the folder that you want to restore to its original location, and then click Properties.
    2. click on the location tab, click restore default, and then click OK.

    You will need to do this for each individual user account folder that points to the other user account folders.
    Redirect a folder to a new location
    http://Windows.Microsoft.com/en-us/Windows-Vista/redirect-a-folder-to-a-new-location

    If the previous step fails while the user account may be damaged, you will need to check if the problem persists in a new user account and later to fix a corrupted user account.

    Create a user account
    http://Windows.Microsoft.com/en-us/Windows-Vista/create-a-user-account

    Difficulty of a corrupted user profile
    http://Windows.Microsoft.com/en-us/Windows-Vista/fix-a-corrupted-user-profile

    I hope this helps!

    Halima S - Microsoft technical support.
    Visit our Microsoft answers feedback Forum and let us know what you think.

  • CS6 inDesign crashing on the opening, works on the different user account, help?

    Hello!

    I use InDesign everyday, had my Macbook since September and have had no problems with the opening of the program at all until about 2 weeks ago. It appears with the graphics of opening with all the license information, and 5 seconds later, a window opens saying "InDesign quit unexpectedly", as well as loads of text on the threads, frames and the rest. (A copy of the text is available to InDesign Crash Info - Pastebin.com , in case where anyone can somehow choose something from that!)

    I tried to reset all my preferences and reinstall all of the CS6. I also had a problem with the fonts in the past, so I have deleted all my additional fonts and just now the default fonts library. The only way I could make it work is by setting up a different user account, and now it opens properly, but only when using this account. It's just a pain the * having to keep switching between user accounts all the time! I didn't know if there would be a quick solution to this, rather than having to transfer all my files, preferences etc. from one account to another and basically a new account from scratch.

    Any help would be great appreciated.

    Thank you

    According to the accident report, you must always update InDesign to the latest patch (8.0.2 for a perpetual license, 8.1 for the subscription).

    If that alone is not enough, delete or rename the files of two preference from your old account (see replace your preferences for where to find them) and copy the same folders on the new account.

  • I want to share address books between different users on the same PC

    Hello
    We have a PC with two different users, but there is only one email address shared between them. We have a copy installed Thunderbird one of each user and a user has multiple accounts for privacy reasons. It would be really useful to have a shared common address book to access addresses of. Is this possible?

    Cheers, Marcus

    Marcus,
    It's really simple comes to mind, but here are two ideas to consider, depending on how often Exchange address book:
    (1) if the shared e-mail address is gmail, each user can then install the add-on gContactSync and let Google have the master copy. That would give each of you frequent clocks to the same address book.
    (2) easy, but not automatic approach would be for a user to be responsible for changes and periodically (daily, weekly,...) export the address book to a ldif file. The other user could then import the address book on behalf of TB.

    - duggabe
    
  • How to get bookmarks on Aurora to be the same for different users on the same computer?

    When different users on my macbook login, I wan tehm all see the same configuration and saved bookmarks for Aurora. How can I do that. Trying to export from one setupproperly seemed to be the right thing to do. But when importing, there was too much here. the stuff of front and the news trying to be imported. He also made records duplicated with the same names. Is t he a profile simple file for bookmarks that can be exported and imported into the new area people.

    The profile is a file that store your personal information in a safe place

    https://support.Mozilla.com/en-us/KB/recovering%20important%20data%20from%20an%20old%20Profile

  • WE HAVE AN EXPANION UNIT. WE CANNOT TURN FIREFOX ON IT AND HOST OF THE COMPUTER AT THE SAME TIME. I CHECKED THE BOX THAT ALLOWS HIM TO RUN AS DIFFERENT USERS, BUT STILL DOES NOT WORK ON BOTH. DO WE NEED TO BE CONNECTED TO EACH COMPUTER WITH A DIFFERENT NA

    We use Windows XP and have not had a problem with Internet Explorer.

    I suggest you try as different users.

    If my answer has solved your problem, please click 'Solved It' next to this response when logged in on the forum.

  • With XP, with is three different user accounts, possible to download Firefox 4 for a single user and keep Firefox 3 on the other, for a period of learning?

    We are running XP and have 3 different user desktop accounts. We are very excited about the features of Firefox4, but one user a lot less comfortable with changes and does not want to lose the comfort of navigation in 3 until it had a chance to get used to using 4. May take a while...

    Is it possible to download Firefox 4, perhaps to a new location. Or a new user account. And use that as a "teaching tool" while maintaining the 3?

    Or can we move on 4, re-download a version 3 and import previous bookmarks for this user to new 3 download, until we him uncomfortable.

    The answer is probably not. But if there is a creative way to do that, without another available computer, that would be great. Otherwise, improve us and deal with the frustration and whining here... 4 is too good to pass up.

    Ideas?
    Linda

    When you install Firefox 4, choose the custom installation option and change the install location of Firefox. You'll then 2 versions of Firefox are installed.

    As you have different user accounts, each user will have its own Firefox profile (location where are stored bookmarks, passwords, etc.). You should not pass between the different versions of Firefox with the same user profile. For those who want to use Firefox 4, make sure that you use a Firefox shortcut that opens Firefox 4, even for one who wants to stay with Firefox 3, just keep their shortened origin of Firefox and it should open the old version.

  • How do I sync and import/export bookmarks between different users on the same computer and two using the Firefox browser?

    All the help instructions are to import and export bookmarks bookmarks between different brands of browsers.

    Assuming that each of these different users use a different profile of Firefox. You can use the built in Fx4 Sync feature. Click on Setup Sync in the menu selections, create an account and then have each user created their profile to use this new account synchronization. It syncs more bookmarks; things like history, passwords, etc. So if it's only the bookmarks you are concerned with that, use customize only synchronize bookmarks when you set up each user. Good luck and have fun in sync.

  • 2 different users and accounts on the iMac even iCloud

    On Chromebooks, when you connect to your account only the data that is associated to your ID Google are shown (bookmarks, mail, etc.).  Can I do something like this in OS X? Setting up different user accounts is quite simple and I know that I can add the iCloud secondary accounts but I don't want that data to show/co mingle. Can I have separate iCloud and iTunes data for each user? If so, how?

    Yes. Read OS X El Capitan: set up on your Mac, users.

    OS X User accounts are separate from the other and nothing will be confused, unless you decide that it is.

  • How to: same excel file, same computer, different user accounts.

    I'm trying to access a single Excel file from the accounts of different users on the same computer.  I tried to share the Excel file, no luck.  I studied with a group residential, but which seems to be for different computers on a network home.  It comes from the same computer, the same Excel file with multiple user access.  Help

    Thanks for your help.  I tried to implement your suggestion, and most of the time, it worked.

    I followed the path OS (C> users > Public > Public Documents and was able to copy the document it.)

    I have it pinned to the taskbar and managed to get it back and make & save changes.

    When I copied it initially the path mentioned previously it had an identical copy in the following path: > libraries > Documents > Public Documents.

    Unfortunately, when I used the button "Save" it would save the file to the location of a second, but the pinned file would go to the original OS (C... way, then recover the original unedited version.)  It took me a while to understand this.

    If I do something wrong and you have any other advice, I'd appreciate it.  But, for now, this issue has been resolved and I will so indicate.

    Thank you once again

    BG

  • "The specified network folder is currently mapped using a different user name and password", trying to connect to a remote drive.

    Original title: the specified network folder is currently mapped using a different user name and password.__To to connect using a different user name and password, first disconnect any existing mappings to this network share.

    I am trying to connect to a remote drive. I clicked to map the drive, entered the name of the drive, came the name of login/password for the computer turns on and then it give me this error message: the specified network folder is currently mapped using a different user name and password. To connect using a different user name and password, first disconnect any existing mappings to this network share.

    In Windows 7 Enterprise, I would like to point out that, if you map \\server1\share1 as drive letter X using "user1" and "password1", then try to map \\server1\share2 (a different share) as drive letter Y using the same ID "User1" and "password1" and you select 'connect using different credentials' in the dialog box connect a network drive and specify the id "User1" and "password1". you will get this error MESSAGE INCORRECT that says 'the specified network folder is currently mapped using a different user name and password'.

    The message is bad because:

    1. the specified network (action2 in my example) folder is not mapped at all, and

    2. the server (in my example, "server1") is already mapped (to a different and different drive letter share) using the SAME user name and password.

    The error message is wrong in two respects.

    This let me puzzled for a while until I realized that once you have mapped to 'Server1' using the credentials, you can map to different actions on the same server without re - specify the credentials.  It is NOT CLEARLY the 'Map network drives' dialog box, which leads to users (like me, and I'm a programmer by trade) trying to enter credentials again and this incorrect error message.

    David Walker

  • When I turn on my laptop, a different user name and the image appears

    When I turn on my laptop, a different user name and photo will appear if I then select "change user", my own newspaper on the account and the image appears beside, which I can then access my PC. However, the account of the 'foreign' does not appear in the UAC - so I can't remove it from there. Any ideas please?

    Hello dhhuang,

    Sorry, seem to take your time on this.

    allI see in USERSare two folders;

    (1) Paul

    (2) public

    "" II I click on ' Paul ' and then capital letters to users in there I still don't see anything that resembles that.

    PS NTdata - what do Ido?

    Concerning

    Silverfox

Maybe you are looking for

  • Do not let me order photo prints

    When I try to order prints, it will allow me to change the amount, and then I receive an unexpected error message?

  • Need satellite 1800-514-pilot display for Win XP

    Hello I'm looking for a driver for xp for Toshiba Satellite 1800-514 grafikcard Can someone tell me, which grafikcard have this laptop? Why the S series is not listed in the socket driver?

  • Dvd - RW drive satellite p20

    My player plays most CDs and DVDs.How can I solve this problem?It is a software issue or a hardware issue?I tried to buy the product in stores of but all seems who has not.can someone help me please?

  • Drawn 2 data 2 the value axis on the chart of waveform

    is it possible to put 2 y-axis on a waveform graph? 1 left and the other more appropriate? as I have 2 data sets, A and B. I would like that my data is plotted using the left side of the y-axis which is 0.5 to 5 B data on the right side of the axis y

  • 7.2 ASA5520 - filters VPN traffic

    Hi all, I would like to know how can I filter out VPN traffic with a list of access, by using the source address and port of destination as filters. I tried with "no sysopt permit vpn connection" but it is to filter the traffic through the VPN tunnel