Creating multiple runtime access users in OWB

Hi,
Can anyone tell me how to create multiple runtime access users in OWB. Using Runtime Repository Assistant everytime i may have to create Runtime Repository schema for creating Runtime Access user.
Regards,
Kunal

We have 1 runtime repository and many runtime access users.
Please change the repository user and rauser
CREATE USER PMIRA
IDENTIFIED BY 'PASSWORD'
DEFAULT TABLESPACE TOOLS
TEMPORARY TABLESPACE TEMP
PROFILE DEFAULT
ACCOUNT UNLOCK;
GRANT CONNECT TO PMIRA;
GRANT WB_A_OWB101RR TO PMIRA;
GRANT WB_D_OWB101RR TO PMIRA;
GRANT WB_R_OWB101RR TO PMIRA;
GRANT WB_U_OWB101RR TO PMIRA;
ALTER USER PMIRA DEFAULT ROLE CONNECT;
ALTER USER PMIRA
QUOTA UNLIMITED ON TD10_WHS_SMALL_I01
QUOTA UNLIMITED ON TD10_WHS_SMALL_D01
QUOTA UNLIMITED ON TD10_ODS_SMALL_I01
QUOTA UNLIMITED ON TD10_ODS_SMALL_D01
QUOTA UNLIMITED ON TD10_STG_SMALL
QUOTA UNLIMITED ON CONVERSIE;

Similar Messages

  • How to create a new runtime access user - URGENT !!!!

    Hi,
    I already have an existing runtime repository and target schemas. I need to create a NEW runtime access user, as my old runtime access user was not available. could anyone please help me on this
    Kishan

    Hi,
    what OWB version? 10g R1?
    CREATE USER <user_name>
    IDENTIFIED BY <Enter User Password Here>
    GRANT CONNECT TO <user_name>
    GRANT WB_A_<RT_REP_name> TO <user_name>
    GRANT WB_D_<RT_REP_name> TO <user_name>
    GRANT WB_R_<RT_REP_name> TO <user_name>
    GRANT WB_U_<RT_REP_name> TO <user_name>
    Regards
    Detlef

  • Runtime access user...??

    hi ..
    I am quite new to OWB... right now using 10g r2..
    ..Is it possible to for a single runtime access user to operate on multiple target schema...???
    or is it possible for two target schema to have same user....??
    if yes ...let me know the process....
    regards,
    DichanZ

    Hi DichanZ,
    OWB uses runtime access user to connect to the runtime repository. It is independant of the number of target schemas.
    Cheers,
    Swagata

  • How do I create multiple itunes accounts/users on a single computer?

    My husband and I had two separate computers and we each had our own itunes accounts. Now that we are down to one computer, I want to create my own itunes account on his computer and back up my iphone. I was afraid to sync my iphone for fear of loosing all my contacts, apps etc. and having it replaced with all of his stuff. I'm sure we aren't the only household to have multiple iphones and only one computer. Help. Thanks.

    There are several different ways to use two or more iPhones/iPods with one computer. iTunes will recognise each device that you add and they will have each their own individual settings. Have a look at this help page for suggestions and choose the method that suits you best: How to use multiple devices with one computer

  • Multiple runtime users for the same runtime

    Hi,
    Is there any GUI method to create multiple runtime users to access the same runtime repository ? Currently, we are running this script:
    =============
    grant WB_U_UII_OWB_REP9204 to &&rep_user;
    grant WB_R_UII_OWB_REP9204 to &&rep_user;
    grant WB_D_UII_OWB_REP9204 to &&rep_user;
    grant WB_A_UII_OWB_REP9204 to &&rep_user;
    ==============
    Is this the correct way of doing it ?
    Thanks and regards,
    Biswa.

    Biswa,
    No way to do this in UI other than the first time the runtime repository is created by the Runtime Assistant. However, as you correctly point out, granting the following 4 roles to any user is all it takes: WB_RT_X, where RT is the name of your Runtime Repository and X is A, D, R or U:
    - The User role (U) gives select access to the public views in the runtime repository.
    - The Developer role (D) gives execute access to the PL/SQL packages in the runtime repository required to perform deployment operations.
    - The Runtime role (R) gives execute access to the PL/SQL packages in the runtime repository required to perform execution operations.
    - The Admin role (A) gives execute access to the PL/SQL packages in the runtime repository required to perform administrative operations.
    So you actually have some flexibility as to what exactly you want to allow the user to do.
    Nikolai Rochnik

  • Runtime Access with Oracle 9.2

    I hava a problem when I access to de Deployment Manager with OWB 9.2 to execute the mappings:
    "RTC-5260 Fallo al conectar a la plataforma de Runtime. COmprobar host, usuario contraseña y nombre de servicio correcto"
    "RTC-5324: Runtime access user is not associated with the specified Runtime Repositori. Please use the runtime Assitant to resolve this problem"
    I use the runtime assistant but it is error. I can't connect, what permis its not ok?
    Thanks,
    Gema

    Gema,
    When the Runtime Access User is created but the Assistant, you are prompted to enter the Runtime Repository Owner login. If you've just created the Runtime Repository Owner in the same Assistant session, the login will be pre-populated for you. That's how Runtime Access User gets associated with Runtime Repository Owner. The end result of it is that Runtime Access User is granted roles WB_A_X, WB_D_X, WB_R_X, WB_U_X where X is your Runtime Repository Owner. You can check to see if your Runtime Access User has these roles.
    Nikolai Rochnik

  • How do I create multiple objects during runtime?

    I don't know how to create multiple objects during runtime, here's my problem:
    I get a String as input. Then I create an object called newobject. I put the object in a hashtable with the above string as key.
    Then comes the problem, in order to create a new object, I have to rerun the same class, which uses the same name (newobject) to create a 2nd object. Now my hashtable doesn't reference to my 1st object anymore...
    Is there anyway I can fill up the hashtable with different objects, and make each key point to each object it was supposed to?
    For those who want to see a bit of the program:
    public class PlayBalloon{
    public Hashtable ht = new Hashtable();
    for(){
    Balloon pB = newBalloon;
    newBalloon=new Balloon(pB);
    ht.put("Some input from user", newBalloon);
    for(){
    ht.get(s).draw;<= s=string, draw=own meth. in Balloon
    }

    I think i can see the problem that you are having. You have, in effect, duplicate keys in your hashtable - ie, two strings used as keys with the same name.
    The way that a hashtable works is as follows...
    When you ask for a value that is mapped to a key it will go through the table and return the first occurence it finds of the key you asked for. It does this by using the equals() method of whatever object the key is (in your case it is a String).
    If you cant use different Strings for your keys in your hashtable then i would consider writing an ObjectNameKey class which contains the String value that you are trying to put in the hashtable and an occurrence number/index or something to make it unique. Remember to override the equals method in your ObjectNameKey object or else the hash lookup will not work. For example
    class ObjectNameKey {
        private String name;
        private int occurence;
        public ObjectNameKey(String name, int occ) {
            this.name = name;
            this.occurence = occ;
        public String getName() {
            return name;
        public String getOccur() {
            return occurence;
        public boolean equals(Object o) {
            if (!(o instanceof ObjectNameKey)) {
                return false;
            ObjectNameKey onk = (ObjectNameKey)o;
            if (onk.getName().equals(name) && onk.getOccur() == occurence) return true;
            return false;

  • How to create a ms-access database at runtime using java

    hi, this is ravi kiran,
    i have a situation where i need to create a new ms-access database with one table in it at runtime(when user clicks on some button).
    i have been searching many sites to know how to do this in java, but i didnot find any thing useful.
    plz tell me how to do this in java.
    plz help me, its urgent
    thanx in advance.

    Here's how I did it. Research does help, but sometimes looking at others code does too... You do have to have a dummy file that you made with access though. You can't just make a file file.mdb (it will be corrupt)
         public void createDatabase(String database) throws SQLException{
              try{
                   // This file needs to have been created with MS Access
                   File dbfile = new File(this.dataBaseDir + "dummy.mdb");
                   // This is the new database file being made
                   File newFile = new File(this.dataBaseDir + database + ".mdb");
                   // Copy all bytes from dummy file to new DB file.
                   FileInputStream instream = new FileInputStream(dbfile);
                   FileOutputStream ostream = new FileOutputStream(newFile);
                   int numBytes = instream.available();
                   byte inBytes[] = new byte[numBytes];
                   instream.read(inBytes, 0, numBytes);
                   ostream.write(inBytes, 0, numBytes);
              catch(FileNotFoundException e) { e.printStackTrace();}
              catch(IOException e) { e.printStackTrace();}
              if(DEBUG) System.out.println("creating the " + database + " database");
         }

  • How i can create multiple users at a time (User Administration) in EP

    Hi
    I need to create multiple users at a time. How can i do that through User Administration in EP.
    Please also tell me about import option in User Administration

    Hi,
    1.  First of all create a master user based on which you can create multiple users.
    2.  when you are done with it  export (by selecting the option at user creation) it.
    3.  you can see some text in a window copy it create  a txt file with it, and add as many users as you want
         by cpoy pasting the text multiple times and making necessary change as per the names etc...
    4. save the txt file.
    5. goto import option you were talking about and import the text file and update it.
    6. As it gets updated you are done with the creation of multiples users.
    If you  get stuck somewhere  feel free to  let me know.
    if  this answer satisfies your need, award points and close the thread.
    Edited by: ali alia on Feb 10, 2009 6:21 AM

  • Is there any way to create multiple users in a single shot in oracle db

    Can Any one tell me, is there any way to create multiple users in a single shot in oracle database.

    Hello Nunhum,
    I guess this was not my question.. This is not what I m asking.. I know there is not a single sql statement in oracle ,which could create multiusers alike UNIX/LINUX(OS LEVEL), Whatever you have written..is simple creating them one by one.
    What I am expecting is to have PL/SQL statement which could help us in this regard.

  • Is there any other way to achieve per user call forward restriction other than to create multiple voice policies?

    Hello,
    We mentioned the environment details below:
    Environment
    In our PBX environment, currently a user can forward calls to any local (within a region) internal extension. But for external PSTN call forwarding, a user needs to send a request and be approved by their manager. And the forwarding restriction
    is applied such that user is only allowed to forward to that particular PSTN number - to prevent toll fraud.
    Moving forward to Lync, using voice policy's call forwarding and simultaneous ring PSTN usages, I can set it to allow forward and simultaneous ring to custom PSTN usage and a custom route that will only send calls to these pre-approved
    external numbers.
    Outcome
    But in such a scenario,
     sSince all the custom external allowed numbers will have to be put into a single Route match table, User A will be able to successfully
    set up call forward to User B's number. (if they come to know about it somehow, that is)
    rü 
    Route matching list will be very long due to the number of users per hubsite that has call forwarding enabled.
    Questions
    Is there any other way to achieve per user call forward restriction other than to create multiple voice policies ? MSPL may be ?  
    2. Is there a limit in the number of entries you can have on the Route pattern matching regex expression ?
    Please advise. MANY THANKS.

    1) I think multiple policies may be your best bet, though it's not a fun one to manage, I agree.  MSPL could do it, but it would be more complex to maintain in the end.  Even gateways have limitations on routes.
    2) I'm not aware of a limit, though I'm not saying there's isn't one.  But if you hit it, you could move to a second usage/route combo.
    I'd suggest building out some PowerShell usage/route creation/organization script for this so it's not something that would need to be maintained within the GUI.
    Please remember, if you see a post that helped you please click "Vote As Helpful" and if it answered your question please click "Mark As Answer".
    SWC Unified Communications
    This forum post is based upon my personal experience and does not necessarily reflect the opinion or view of Microsoft, its employees, or other MVPs.

  • How to create multiple users in solaris using script

    hi
    how i can create multiple users (2000 users) using shell script with a common password .
    useradd is creating one user at a time.
    thanks

    I m new to solaris and scripting also.
    how i can write a script for this .

  • OS creating multiple user/library folders - need help

    My computer has decided on it's own to revert back to it's original default settings causing me to lose all the changes that I have made, as well as forcing me to redo the set-up procedures for Mail, Safari and other browsers and applications. This is happening every day after I log off. In looking around for answers I found that Home/User is creating multiple libraries as I keep resetting the computer. I now have 8 library folders all with different contents. I'm sure this is why the computer is reverting to default. Do I delete the extra folders? How do I know which is the one to keep? The one with the most items? I was poking around the apps and other sections, but I don't remember moving or changing anything. I will have to start over again tomorrow and I will then have 9 folders. I would really appreciate someone to help me out of this dilemma.
    iMac Intel   Mac OS X (10.4.9)   I have DSL and had a phone line repair shortly before the problem started

    It's the same with me. Just discovered, I have 15 additional users created. I'm most eager to learn why this is happening because I have not been able to 'auto login' using my own account.

  • Create multiple users

    Hi,
    I would like to create multiple users from my Table Users (Username & Passwords) instead to pass by the express Application Users from apex. I have like 100 users, it will take so long to create with apex.
    Is anyone know the sql code to create that with sql workshop ?
    Thanks

    this is pretty basic but should do it... I haven't tested or anything but should work (or at least with the smallest of tweaks will work). The only problem I can see you encountering will be if the user already exists as I haven't handled this yet but a simple exception handler around the apex_util.create_user call will handle this. You may want to change the password to something else but this at least shows the basics.
    declare
    cursor my_users is
    select user_id user_id, user_id user_name, user_id password
    from users;
    begin
    for u in my_users loop
    apex_util.create_user(
    p_user_id => u.user_id,
    p_user_name => u.user_name
    p_web_password => u.password);
    end loop;
    commit; --can't remember if this needs a commit but shouldn't hurt
    end;

  • Create multiple user accounts

    How could I create multiple user accounts?...
    We have about 2000 students register every year and each of them will be given a user account

    I managed to create many users using the command
    imadmin -D serviceadmin n xxx.com -w password -i <inputfile>....
    the content of the input file
    l KA1000
    F new
    L user1
    W secret
    l KA1001
    F new
    L user2
    W secret
    so I have created 2 user accounts [email protected] and [email protected]....
    I have one more question to ask..how can I create new accounts which have different login id and email address using the input file....for examples for login id KA1000 the email address would be [email protected].
    I've tried this using ldapadd and it worked, so I would like to know wether imadmin command will work the same.....

Maybe you are looking for

  • How do i check what comuter are authorized?

    when i tried moving some of the music i bought on itunes to another of my computers it stated that i have 5 computers authorized. I dont own 5 computers. Thanks

  • HP 750 all in one

    I have been given a HP 750 all in one printer which has not been used for some time.  I have fitted two new HP cartridges and whilst the black is fine I am only getting the cyan from the colour.  I have tried the cleaning process several times to no

  • ITunes 10 - Syncing Issues

    I've updated to iTunes 10, and can no longer sync successfully. All diagnostics indicate proper connection etc. I've tried re-set on the iPod Touch; tried reinstalling iTunes; tried re-starting the computer; (can't deactivate virus protection, as I'm

  • How do you delete only certain pictures from the photo library on the iphone 5?

    I just purchased an iphone 5. I would like to know how you delete only certain pictures from the photo library. You can delete from camera roll, but not photo library!! There are duplicate pics and ones that I don't even want on my phone.

  • Non-OEM dock for 3GS?

    Anyone have experience with non-OEM docks for the 3G or 3GS like [this one|http://cgi.ebay.com/iPhone-3G-3GS-Dock-Cradle-Charger-Original-USB-CableW0QQitemZ260436522076QQcmdZViewItemQQptZPDA_Accessories?hash=item3ca339f45c&_trk sid=p3286.c0.m14&_trkp