SQL fails on newly created user

I just downloaded Oracle XE, installed and managed to go through all the steps in the Getting Started manual, i.e. creating a simple application and tried simple SELECT statements on EMPLOYEES and JOBS tables using the user account, "HR". I have tried to create two new user accounts with same settings as "HR". But when I log in as any of these two new users and just try on the SQL window with the same SELECT statements, I would get an ORA-00942 - form or view not exist. What else should I have to do? Do I have to grant certain access rights to the new accounts? I checked also the video tutorial and couldn't see any thing.

When you create a table, it is by default created in user's schema, which is same as username. In fact, if you create table table_name as user hr, you create table hr.table_name. That's not an issue if you try to access this table as the creator. But it is a problem if you want to access this table using different user accounts.
If you log in as e.g. usera, you can use query like this:
SELECT * FROM hr.table_name

Similar Messages

  • Permission to view content of table of SYS schema to newly created user

    Hi,
    I am facing issue giving permission to view contents of table p_users of SYS schema to newly created user.
    Regards,
    Phani Ram

    Hi Phani,
    Could you please check if you have an a authorization to give a permission to other users for particular schema.
    I mean check for privileges, user and roles.
    Warm Regards,
    Earesh kumar

  • Authorization newly created user

    hi experts,
    can any body explain, what infotype/authorization will be required for newly created user of HCM.
    Thanks,
    Waqas
    You should first go through the
    [SAP Help|http://help.sap.com/saphelp_erp60_sp/helpdata/EN/48/efa441d54eae5fe10000000a1550b0/frameset.htm]
    & then seek help for specific issues. Please do not post vague questions.
    Edited by: Suresh Datti on Aug 13, 2009 5:10 AM

    Hi Waq,
    Infotype access can be given based on client requirement. What ever infotype they will be using for their requirement you can add under role. Role can be created via Tcode PFCG. There are 2 objects named P_ORGIN & P_ORGXX can be used for giving infotype access under firld INFTY.
    Then creaed role can be assigned to user via Tcode SU01.
    If you want to give Tocde access, then authorization object P_Tocde & S_Tcode can be used.
    Regards,
    Purnima

  • 11g upgrade script gen_inst.sql fails to export all users

    I'm trying to upgrade a database from 10g XE to 11g XE; however, the upgrade script gen_inst.sql that's included with the installation media fails to include all of the database users in the sql file it generates. Out of 33 users, only 3 are included in the ws.sql file that is created. I can't seem to find any difference between the users that are included and those that are missed, all have the same roles and default tablespaces, but I'm new to Oracle XE so I might be missing something. Does anyone know why the script might miss certain users?

    The homepage says its Application Express 2.1.0.00.39.
    If I'm understanding this correctly there should still be more than 3 schema owners, for example when I run the query "select distinct owner from dba_tables" I see the rest of the users that I was expecting.
    When I imported the data onto the 11g server (using impdp) I can see in the logs that it's importing the other schemas (e.g. imported "MP_DOC"."TEXT" ... in this case MP_DOC does not show up in the list of workspaces or users after running the install.sql script, but MP_DOUG does, and from what I can see they both should be there).
    My apologies if I'm not being clear or understanding this right.

  • Need to automatically add newly created user account in an existing active directory group.

    Hi All ,
    In my  environment we are having window server 2012 active directory environment.We need to have the newly created active directory user account to get added automatically to the existing active directory group after that new user account creation.
    Please tell us the possible ways to achieve this scenario.
    Regards
    S.Nithyanandham
    Thanks S.Nithyanandham

    Hi,
    Can you please confirm your requirement,
    When you create a new user account in AD, based on the user's property like Department, Job or Location, the user need to be added to your specific AD groups?
    Regards,
    Gopi
    JiJi
    Technologies

  • Newly created user accounts can't log in??

    I've got a 5 year old who is starting to use my computer for game playing, typing notes, and simple web stuff.
    I want to set up a user account for him with parental controls so he can't randomly rename, delete, or change things.
    I've followed the directions, set up a user account, given it a password... logged off my admin account ...
    and when I click on his login picture, it brings up the password window, and when I input the password, it just gives a little shake, clears the password line, and lets me try again.
    I've deleted that account and created a new one without parental controls. I've tried having NO password in the password line. I've tried making sure the short names for the accounts I'm creating are exactly 8 characters. I've turned off Norton antivirus. Nothing works - I cannot log in with any newly created account??
    What else can I try?

    Sara
    Well you probably don't need to be told the NetInfo database is in a bit of a mess, but the significant thing is the "No such file or directory" from the last two commands. Basically this is where passwords are stored (encrypted) since the system changed to "Shadow Hash" passwords in 10.3.
    Your account seems to be OK since it predates this change, and when you installed new system versions you chose the "Upgrade" option which left your settings alone. This is why your primary group is 'staff', or 20, whereas for Will it is creating a group 'will', or 502. That bit appears to be working, just not the passwords. Your password still works because it is in the old 'passwd' file (in encrypted form).
    By far the best thing, at this stage, would be to do an Erase and Install, but this depends on you having a complete and up to date backup of all your files. See Mac OS X 10.4: About installation options. Alternatively you might try an Archive & Install, see Mac OS X : About the Archive and Install Feature, probably not choosing the "Preserve Users and Network Settings" option. But note this requires you to backup a lot of your data, and then re-enter settings and so on.
    If you have a backup, the Migration Assistant can help you get your files back in place.
    If it were my machine of course, I would probably carry on a bit longer trying to fix things, but the appearance of "#NoValue#" twice in the NetInfo output suggests some serious inconsistency which would be difficult to fix.
    Let us know how you get on, and Good Luck!

  • Grant execute to newly created user upon user creation

    Hi
    I have a procedure test in schema of user1.
    I have to grant exec on this procedure to the new user upon creation of the new user.
    like upon
    create user USER1 identified by ....
    then USER1 should be able to execute user1.test after that
    in short every user created should have grant to execute this procedure.
    Please suggest.
    Thanks in Advance

    Hello, if you have a procedure in the schema of user1 then the user is user1, i.e., you cannot be creating a new user if user1 if user1 owns the test procedure.
    To grant execute for a user on a procedure, just run:
    GRANT EXECUTE ON user1.TEST TO <new_user>;If you want to allow every user to execute this procedure then run something like:
    BEGIN
      FOR cur_rec IN (SELECT username FROM ALL_USERS WHERE username NOT IN ('SYS','SYSTEM'))
        LOOP
          EXECUTE IMMEDIATE 'GRANT EXECUTE ON user1.test TO ' || cur_rec.username;
        END LOOP;
    END;
    /And that will grant execute on the procedure for all users.

  • Can't log in with newly created user on new install of Arch [solved]

    Hi all,
    Yesterday I installed Arch anew (because I had a hardware failure that took out my hard drive), but now I'm encountering an issue with logging in.
    After following the installation guide, and creating a new user, I find that I'm unable to log in as said user.
    It complains about wrong password, but it's the exact same password that I entered mere moments before that, when creating the new user.
    I can "log in" as said user by first logging in as root (which does work) and doing "su - <username>" (though then it doesn't ask for a password).
    Can someone point me in the right direction to fix this problem?
    Last edited by madjo (2013-07-03 20:19:43)

    I think cfr meant to say you shouldn't "fix" bash path - as some users did. Unfortunately there's a bit confusion wrt which paths should be used - see this ML thread.
    Some say we should keep /bin/foo for compatibility, others say that we should boldly move to /usr/bin/foo.

  • Password denied on newly created user accounts

    I have an admin account on my Mac with no problems. However if I add additional accounts, no matter the name/password, it denies the password when I try to log in with those new accounts. Yet the original admin account is fine. I've tried changing the password, deleting and recreating the accounts, as well as setting the new accounts as an admin. I had thought about keychain firstaid, but it does little good if it won't accept the password to begin with. Any ideas? I couldn't find anyone else with this problem.

    ..."I was unable to get any response from terminal."...
    Nothing at all? That's unusual. There should be some sort of ouput if the user exists, and an error message if it doesn't. An invalid command would put out usage notes. I'm not sure what would cause a '-read' to fail silently.
    Using a different approach, try launching "/Applications" > "Utilities" > "NetInfo Manager.app", and navigate through "/" > "Users" in the top panel, and look in the right-most column for the name of the new user. Compare what is displayed in the bottom panel when the new user is selected, to what is displayed when a working user is selected. Some values will obviously be different, but look to see if there are any missing properties or values.

  • Unable to view obiee 11.1.1.5  dashboards for newly created user

    Hi ,
    Im working in obiee 11.1.1.5.0.I created a new user and tried to view a dashboard which I have created in the weblogic user.But it dispalyed the following error.
    Error Codes: YQCO4T56:OPR4ONWY:U9IM8TAC:OI2DL65P
    Odbc driver returned an error (SQLExecDirectW).
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 43113] Message returned from OBIS. [nQSError: 27005] Unresolved column: "PEO_DIM"."ENTERPRISE_DESCRIPTION".Please have your System Administrator look at the log for more details on this error. (HY000)
    In my understanding,when a new user is created,even if it is not assigned to any role it will have rights to see all the dashboards.Then what will be the reason for this error?Can anyone provide me a solution?
    Eagerly waiting for a reply
    Fathima farsatha

    This is due to access restrictions in RPD, even though user able to see all dbs user suppose to have access privileges for subject areas.

  • OS X Server 10.6.4 - newly created user cannot login to server

    As title.
    Just turn on the mac mini server (mid-2010) and do some initial setup. It can access the internet. However, all users that I have created cannot log into the server! Only the one (admin account) that created during the 1st time server setup can login to the server. Anyone know why and what I have not setup properly?
    New user during login take a while and no error message popup. The login window just acts like it can login but within a second, the login window "shaking" and prompt for me to login again. Watch below youtube video for more detail.
    http://www.youtube.com/watch?v=K7wV3rVJK9c
    Here are some information hope can help...
    1. My mac mini server connect behind a router.
    2. No special setting for the DNS / Open directory. Just use the system default.
    3. When open "Server Admin", it shown "mac.local" at the upper left hand side.
    Message was edited by: rayzine2

    rayzine2
    After the Server Setup Assistant has finished and by default the Service Access Control Lists (SACLs) denies access to everyone apart from the default admin account. It does this when SSH is enabled. It's one of the options at the bottom of the dialog box you used to create the default administrator account. To turn this off launch Server Admin, select the Server name in the sidebar > Access.
    You should be configuring client workstations to allow network users to log in to rather than the server. Read the documentation:
    http://support.apple.com/manuals/#serversandenterprisesoftware
    Tony

  • Newly created users are not able to log in through WEBGUI in SRM system

    Hi All,
    I have created new roles in the SRM system with  the BP tanscation codes Like( BBPSC01
    BBPSC02
    BBPSC03
    BBPSC04)
    after that I have created new users and I have assigned these roles to users. Users are able to login throgh SAP GUI but Users are not able to log in WEB GUI..  Once they providing user id and password in web gui. they are facing issue.
    For web login do we need to maintain any special settings in SRM system?
    Please suggest me.
    Thanks in advance.
    Regards,
    Siva

    Hi,
    Here is the error when user is giving user id and pwd.
    Note
    The following error text was processed in the system DN0 : Error message occurred.
    The error occurred on the application server dm2serv_DN0_01 and in the work process 0 .
    The termination type was: RABAX_STATE
    The ABAP call stack was:
    SYSTEM-EXIT of program SAPMSYST
    Regards,
    Siva

  • Mb5b time_out with newly created user

    Dear expert,
    I have created new sap id and provided requested authorization however if we run mb5b it gets time_out even for one day but if we run it using any old SAP id it works fine.

    take a performance trace in ST05 to see where the transaction spends all the time.
    take an authorization trace in ST01 to see if the authorization affects the transaction.
    make sure you execute with the very same selection parameters (except for the display variant, which may be user specific), the old user might have some defaults from user parameters which might not be available for the new user, compare the user parameters.
    MB5B is in general slow and must not be used for mass data (see 1005901 - MB5B: Performance problems)

  • EMail Notification for the Newly Created users using UME API

    Hi ,
    In my application ,the user creation is handled by custom Admin module which uses the UME APIs. Upon creating the user, we need to send a notification mail to the user's email id which he provided in the Add new user form.
    <b>Is there any direct APIs available to notify the user via email. I hope the Standard user creatin module in User Administration also uses the same UME APIs.</b>
    Please let me know the possibilities.
    Appreciate your help.
    <b><b>Sample Code:</b>
         <b>IUserFactory mUserFact = UMFactory.getUserFactory();
         IUserMaint mUserMaint = mUserMaint = mUserFact.newUser(aUser.getLogin());
         IUserAccountFactory mAccountFact =UMFactory.getUserAccountFactory();
         IUserAccount portalAccount = null;
         mUserMaint.setDisplayName(aUser.getLogin());
         mUserMaint.setXXX();
         mUserMaint.save();
         mUserMaint.commit();
         portalAccount = mAccountFact.newUserAccount(aUser.getLogin(), mUserMaint.getUniqueID());
         mAccount.setPassword("XXXXXX");
         aUser.setPassword(mPassword);
         mAccount.save();
         mAccount.commit();</b></b>
    Thanks and Regards,
    Sekar

    Hi,
    I have used the Java Mail API directly send the notification upon new user creation.
    Thanks and Regards,
    Sekar

  • How do I access iTunes library in newly-created user accounts???

    I have created some new user accounts for my kids. When I log into one of their accounts and open iTunes, there is no music in the library. I'm sure there is a way to access the iTunes music library for my kid's user accounts, but I can't figure it out. Any help is greatly appreciated.

    iTunes has no multi-user library so you have to find some other way.
    There are two methods to make your music accessible for other users.
    I think the safest way is to share your music (library or selected playlists) with your kid's accounts. They can listen to it, but not mess around with your library.
    Enable fast user switching:
    http://docs.info.apple.com/article.html?path=Mac/10.4/en/mh1787.html
    In your account enable sharing your iTunes Library:
    http://docs.info.apple.com/article.html?artnum=165212
    (It's for iTunes 4.7, but still valid for higher versions)
    In your kid's accounts tick the checkbox 'Look for shared music' in Preferences>Sharing in iTunes.
    The drawback of the described setup is, that your account has to be activated and iTunes must be running. Some items can't be shared.
    The advantage is, that other users can't mess things up.
    The other method is by moving your music to a public folder. The advantage is, that all users can access the library at any time.
    The greatest disadvange is, that every user can mess things up.
    This method is described here:
    http://docs.info.apple.com/article.html?artnum=93195
    The second paragraph in this article contains the links I gave above.
    Hope this helps.
    M

Maybe you are looking for

  • Can't open document on iPhone from Pages via iCloud

    Trying to open a document on iPhone via iCloud only to get the following error messages from within Pages (iOS version): "Opening this document requires an internet connection".  Am connected to internet using WiFi and the Documents and Data field is

  • How to move the objects from Infoarea to another?

    Hi, How to move the objects from Infoarea to another? Thanx in advance, Ravi.

  • TOC treeing in sync with hyperlink navigation

    A requirment for the project I'm working on is to create a process map (check) that links to procedure documents (check, using hyperlink mapping).  All good, but the TOC in the left pane needs to open/tree out to the document that has been jumped to

  • HT1766 Can I change the location of my back up formy I phone

    Hi I have not got enough on my laptop to back up my iPhone on the c drive, I would like to change the back up to save on my external drive I have but am unsure of the exact way to do it Thanks

  • OLAP Universe and drill through with Essbase

    Hi all Has anyone created an OLAP universe on top of Essbase that allows the user to drill through back to an Oracle database? If anyone has can you please let me know how you did this. Thank you and kind regards, Dean