Identified externally

hi
my OS is windows 2000 professional addition
Oracle server version is 9.0.1
i created an operating system user "guest"
then set OS_AUTHENT_PREFIX=""
then i restarted the satabase
then i created a user as follows
"CREATE USER GUEST IDENTIFIED EXTERNALLY
QUOTA 10M ON UESRS"
then i assigned him previleges
now i logged on to system as "guest"
and run sqlplus as follows
sqlplus /
and it returned me error "ORA-01004"
kindly tell me did i follow the right steps???
if yes then why isnt it working
Regards

Possible Causes and Remedies:
Operating system authentication has not been enabled for the system.
Check ‘{ORACLE_HOME} \ NET80 \ ADMIN \ SQLNET.ORA’ on both client and server. To enable operating system authentication it should contain the line:
SQLNET.AUTHENTICATION_SERVICES = (NTS)
If the registry key ‘HKEY_LOCAL_MACHINE \ SOFTWARE \ ORACLE \ OSAUTH_ENFORCE_STRICT’ is set (true) then verify that the user is a member of one of the following NT groups: ORA_<SID>USER, ORA<SID>DBA, ORA<SID>OPER, ORAUSER, ORA_DBA or ORA_OPER.
If the Oracle database is in a different domain from the logon domain then a trust relationship must be set-up between the two domains for operating system authentication to work.
The system does not support operating system authentication. The error may in this case be accompanied by the error ‘ORA-01988: remote os login is not allowed’. Log on supplying password and username.

Similar Messages

  • SSO and Form 10g, Setting RAD of OID for DB users identified externally

    Please Help!
    Current environment:
    - All users were created with identified externally in Database (OPS$)
    - SSO was setup correctly according to OID admin guide Ch 43 and SSO admin guide ch 8 for App10g. (user login orasso without seeing basic auth/sso login form)
    - DB parameters:
    remote_os_authent=TRUE
    os_authent_prefix=' '
    issues:
    - set ssoDynamicResourceCreate = true
    When user hit the form link, i.e. http://host:port/forms90/f90servlet?config=test&form=appwelcome
    it redirects to http://host:7777/oiddas/ui/oracle/ldap/das/mypage/AppCreateResourceInfo?...
    where it shows Resource Name TEST and prompts username/password/database
    when user inputs window logon /password/database value (same as in form6i)
    it returns ORA-01017: invalid username/password; logon denied.
    - set ssoDynamicResourceCreate = false
    manually set RAD for the end user (I am not sure if I am doing this correctly):
    Name = test
    TYPE = oracledb
    username = (blank)
    password = (blank)
    datebase = prod
    When enduser hits the form link, it returns ORA-01017.... same errors.
    Any ideas how to trouble shoot and configure RAD for users with OPS$ auth?
    thank you in advance!
    Kan

    Thank you for your input!
    This is how our current production is setup that users use os authent (OPS$) to access forms/reports 6i. I'm just trying to migrate it to app10g environment.
    I did configure SSO with WNA, it works fine. Any users can access NON-DB connected forms/reports. Only when forms/reports require DB conn, users who
    have db password can access them with one click. But users identified externally will keep seeing Oracle Logon and Ora-01017 after authent into MidTier.
    Setup RAI with one real db user account is not ideal since there are 1000+ OS authent users who have different database roles. Turn off the OPS$ and setup dummy password for 1000+ users may be the last solution.
    v/r
    Kan

  • DATABASE_LINK with CURRENT_USER for user identified externally

    Hi,
    My database is in standard edition 10.2.0.5 on windows.
    I have a user OPS$xxx identified externally.
    the connection with this user "sqlplus /@service_name" is ok.
    A database link has been created with these options :
    select * from dba_db_links;
    OWNER DB_LINK USERNAME HOST CREATED
    OPS$xxx TEST_DB CURRENT_USER SERVICE_NAME 19/10/11
    This database link references the same database
    ( it is an external application which has created it).
    if we test with sqlplus, we have :
    sqlplus /@service_nameSQL*Plus: Release 10.2.0.5.0 Production on Fri. Oct. 21 09:58:40 201
    Copyright (c) 1982, 2010, Oracle. All rights reserved.
    Connected to :
    SQLPLUS> select count(*) from user_tables@TEST_DB;
    ORA-1017: invalid username/password; logon denied
    So is it possible to use this type of database link ? And if it is, how can you do that ?
    Or only "user identified globally " can use database links with current_user...
    Thank you in advance for your help.
    Best regards
    Marie

    A connected user link should work per the reference:
    The ability to use a connected user database link depends on several factors, chief among them whether the
    user is authenticated by the database using a password, or externally authenticated by the operating system or
    a network authentication  service. If the user is externally  authenticated, then the ability to use a connected user link
    also depends on whether the remote database accepts remote authentication of users, which is set by the
    REMOTE_OS_AUTHENT initialization parameter.HTH -- Mark D Powell --
    insert line breaks to try to limit width
    Edited by: Mark D Powell on Oct 21, 2011 9:17 AM
    Edited by: Mark D Powell on Oct 21, 2011 9:18 AM

  • Schema owner identified externally

    I have an oracle 11g, apex 3, OHS implement. The schema assigned to my workspace has owner, identified externally. I can find no workspace/schema relation administering Oracle-XE. Looks like the database username that logs in to the Administration Home is the schema to be parsed. My trouble is that I cannot login to the Administration Home with the user identified externally.
    Please advise.

    I've upgraded the version of Apex that was installed with Oracle-XE. I matched Apex version with that of the Oracle 11g environment; that is, version 3.1.2. So, now I can create developers and workspaces that reference schemas of the developers' choosing, than the one developer (database user) owning the schema it references.

  • How to access OS User created with "identified externally"

    I am able to
    SQL> create user ops$deskuser identified externally;
    while deskuser is one of my OS user.
    I believe it is a very easy question, however I just do not know how to access this user from sqlplus., please help
    Thanks in advance

    oracle@mini:~> sqlplus system
    SQL*Plus: Release 10.1.0.3.0 - Production on Sun Nov 13 21:11:47 2005
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Enter password:
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> create user ops$pops identified externally;
    User created.
    SQL> grant connect to pops;
    Grant succeeded.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    oracle@mini:~> su - pops
    \Password:
    Illinois isn't exactly the land that God forgot -- it's more like the
    land He's trying to ignore.
    pops@mini:~> . oraenv
    ORACLE_SID = [pops] ? orcl
    pops@mini:~> sqlplus /
    SQL*Plus: Release 10.1.0.3.0 - Production on Sun Nov 13 21:16:59 2005
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL>

  • Question on IDENTIFIED EXTERNALLY clause

    Oracle Version      : 11.2.0.2
    Platform : Solaris 5.10
    Just going throug the basics of IDENTIFIED EXTERNALLY clause. If i create a user named app_user as shown below, how does this user connect to the DB and create a table in this schema. Do i have to create Unix user account for this DB user?
    create user app_user identified externally;
    grant create session to app_user;
    grant create table to app_user;
    SQL> show parameter authent
    NAME                                 TYPE        VALUE
    os_authent_prefix                    string      EXT$

    Hi;
    Pelase see usage of IDENTIFIED EXTERNALLY from below link wiht examples
    http://download.oracle.com/docs/cd/B28359_01/server.111/b28286/statements_8003.htm
    Regard
    Helios

  • User identified externally

    I downloaded and installed Oracle Ex on Windows XP Professional SP 2 taking all of the defaults and all when swimmingly. Then I used sqlplus to create an externally identified user. The user was created. However if I enter "sqlplus /" to connect as the user I get
    ORA-01017: invalid username/password; logon denied
    This same procedure works under Linux. How do I get it to work under Windows?
    Thanks,
    john

    Creating External users in Oracle
    For example, consider the following user definition:
    CREATE USER OPS$SCOTT IDENTIFIED BY TIGER;
    Assuming that Scott has logged onto the operating system, Scott could enter SQL*Plus with or without a password:
    sqlplus /
    sqlplus scott/tiger
    You can also create the user with the "identified externally" clause:
    CREATE USER OPS$SCOTT IDENTIFIED EXTERNALLY;
    Create Oracle External users in Windows
    External users are easy to create in Linux because you need only create the user in /etc/passwd. It's a bit trickier in Windows:
    1. Create the Windows user:
    start --> settings --> control panel --> administrative tools --> computer management --> user
    2. Add the new user to the Oracle group:
    start --> settings --> control panel --> administrative tools --> computer management --> groups
    3. Add user to OS Database Administrator:
    start --> programs --> oracle home --> configuration and migration tools --> administration for windows NT --> OS database administrator
    4. Add user to OS Database Operators:
    start --> programs --> oracle home --> configuration and migration tools --> administration for windows NT --> OS database operators
    5. Add user to OS Administrator:
    start --> programs --> oracle home --> configuration and migration tools --> administration for windows NT --> OS administrator
    6. Add user to OS Operators:
    start --> programs --> oracle home --> configuration and migration tools --> administration for windows NT --> OS operators
    7. Add os_authent_prefix=OPS$ to your initialization parameters (pfile or spfile) and bounce Oracle database, if necessary.
    Ref: http://www.dba-oracle.com/t_windows_external_user_authentication.htm

  • Connecting with java2 1.4 & user identified externally

    Hi,
    I try to connect to the Oracle DB 8.1.7. in my java-program (url : <
    jdbc:oracle:oci8:@ >) with a user that is identified externally (OS-unix
    SUN) . The version of java2 is 1.4
    My java-connection work correctly with the Oracle jdbc-driver
    "classes12.zip" in my CLASSPATH.
    But is NOT work with the last jdbc driver of Oracle "ojdbc14.jar" in my
    CLASSPATH. I assume that I have to install also the OCI shared
    libraries. But which version of the OCI libraries : 9.2.0.1 or 9.0.1 or
    8.1.7 ? Can I use the OCI libraries 9.* for a connection to Oracle
    Database 8.1.7?
    Other question: is it possible to connect with a user identified
    externally with the thin driver?
    Kind regards,
    Kristoffel DE GEEST

    Ralph_CC wrote:
    If I want to connect to a user of this sort, can anyone tell me what I put in the
    setPassword( passwd ); method for OracleDataSource getConnection please.
    I cannot see any clue in the java API doc. (Using 11g & Java 1.6.30)You connect as a user,
    you provide the password for the user using setPassword(),
    as in this example;
    http://www.rgagnon.com/javadetails/java-0545.html
    which connects as user 'scott' using password 'tiger'.

  • Cannot Identify External Hard Drive

    hi,
    my imac has an usb 2.0 linked external hard drive. i used the diskutility to format the hdd and stored files on it.
    but sometimes when i boot into mac, a pop-up message says that the "hardware cannot be identified"
    so i have to unplug the hard drive and reboot, then in mac, plug the external hard drive.
    so what went wrong?
    thanks.

    So a hint as to which external hard drive you have please. Have you contacted the manufacturer? Have you checked the usb cable? Have you checked the power source for the hard drive? Why are you posting a hardware problem in the "Mac OS X v10.5 Leopard > Using Mac OS X Leopard"
    discussion forum area?

  • How do I get PowerBook G4 with Tiger to identify external Numeric Keypad?

    I just bought a Travel Solutions Portable Numeric Keypad Model 60-320, which says on the packaging System Requirements: Windows 98, 2000, Me,XP or Mac OS.
    The Installation instructions say:
    Connect the USB cable of the Numeric Keypad to the USB port on your computer. Your computer will automatically read the keypad. You are now ready to use.
    I have Mac OS X 10.4.7
    When I plug the Keypad in the Keyboard Setup Assistant opens, with Introduction: Your keyboard cannot be identified and will not be usable until it is identified. To identify this keyboard click Continue.
    On clicking Continue, one is required to press the key immediately to the right of the Shift key on the left side of the external keyboard.
    It apparently did not occur to whoever wrote this Setup Assistant that people are more likely to want to plug in numeric keypads rather than full keyboards, and that numeric keypads do not have Shift keys!
    How do I get the computer to identify the Keypad?
    PowerBook G4   Mac OS X (10.4.7)   15"

    Welcome to the Discussions!
    I cannot answer your question, but maybe you can return the keypad you bought and get the Kensington keypad/calculator <http://www.amazon.com/gp/product/B00009L1XO/102-7465461-6085726?v=glance&n=172 282>, which works fine with my PB G4.
    bd

  • Identifying external hard drive in applications

    I have just purchased an external WD My Cloud drive because my HD on my iMac is full.  I copied all of my iMovie products to the hard drive, but iMovie does not recognize the drive in the application.  Any suggestions?

    See iMovie (2013): Work with multiple libraries and iMovie '11: Copy or move video from your Event Library to an external hard disk
    27" i7 iMac (Mid 2011) refurb, OS X Yo (10.10.1), Mavs, ML & SL, G4 450 MP w/10.5 & 9.2.2

  • [SOLVED] Identifying external backup drive

    What I am trying to do is mount an external drive in a predictable way in order to script the backup.
    So I put this line in fstab.
    UUID="ab61c599-e8ca-4578-9ebb-f607de9d3693" /mnt/backup ext3 defaults 0 1
    The problem is that if the drive gets mounted in KDE it gets mounted under /media/{Dirve UUID}.
    Is there any way to tell KDE to use the mount point in fstab when mounting the drive?
    I suppose the other option is having the backup script just figure out where the drive is mounted. How do others deal with external drives used for backups?
    Being fairly new to arch backup is one of the things I'd like to get going since I'm pretty sure at some point I'll mess something up.
    Last edited by MikeW (2011-11-19 00:20:34)

    Thanks for the link, I am reading it over and I'm pretty sure this will do the job.
    What I am after is to mount in a consistent location whether mounted using the mount command in a script or automounted.
    I believe this should do it, I'm just working out which of the the various rules options is going to do the trick. I'll take a bit of time to absorb all this and will return to mark this solved once I have it running properly.

  • Cannot edit views when logged with user identified externally (OPS$...)

    Hi,
    In our organization we have enabled the OS authentication and even having the DBA role is not possible edit views using SQL Developer.
    Anybody knows if is there any workarround to enable this feature ?
    Thanks in advance.
    Edited by: user12099033 on Jul 15, 2010 9:44 PM
    Edited by: user12099033 on Jul 15, 2010 9:45 PM

    Thanks for getting back to me so quick!
    You were correct to assume that I was referring to a View. All of our users have been added to a standard user role that providers that basic functionalities that they need. This particular user's access is exactly the same as the other users in his department,
    yet he is the only one who has experienced this problem. All of the user roles that we have added this user to contain at least 10 other users who have not reported any issue like this.
    I am wodering how this problem could only apply to this one user even after changing devices. I should also mention that with each of the devices that this user has worked on, there was a period of time when he was able to work in SCSM without
    any issues. What could have changed that caused this error to arrise on two separate occasions for just one user? 
    The biggest issue is the fact that he is unable to edit activities. Am I correct to assume that these two issues are connected?
    I hope this message helps to clarify the problem we are experiencing.
    Thanks,
    Nick

  • My computer will not identify my external hard drive, help.

    I have hard drive from windows 98 connected to my windows 2000 with usb 2.0 to ide adapter. my windows 2000 will not identify external drive.

    Let me know who is your Internet Service Provider ... so that i can tell you few manual steps to confiogure the router. ...

  • Connect as user identified globally/externally?

    Greetings! :)
    I have an old app where fat SWING client app connects to the DB with Oracle DB user/pass. I would like to change this. I believe "user identified globally/externally" is the right choice. Is there any (Java) example of login as global/external user? I have read that for global/external users tokens are acquired, but I don't know how to acquire tokens?
    Example: I have Java fat client which shows a dialog asking user for its user/pass. Then I send this user/pass to another Java web app, which check user/pass and asks DB (how?) for token. Then I send this token from my web app to the fat Java client app and it connects (how?) with DB.
    So:
    1. How to get token for external/global user?
    2. Where to put token in DB connection string when connecting with DB (instead of password?)?
    I have already asked this question in Oralce DB security and Java security forums without any results.
    P.S. Is there any other way for app to connect to DB without giving password? I would'n like to use Kerberos or LDAP or some tools. I would like to make my own solution with JDBC.
    Thank you in advance :)

    >
    Is there any other way for app to connect to DB without giving password?
    >
    Maybe this doc has the info you are looking for.
    See chapter 3 Configuring Authentication in the Database Security doc
    http://oracle.su/docs/11g/network.112/e10574/authentication.htm#i1006269
    Configuring Global User Authentication and Authorization and Configuring an External Service to Authenticate Users and Passwords
    have the information.
    You can also see the 'Proxy from Users Identified Externally' and 'Establish a Proxy Session' references in this link
    http://books.google.com/books?id=BaRbj93G1XMC&pg=PA159&lpg=PA159&dq=oracle+java+identified+globally/externally+proxy&source=bl&ots=m75SfHNGe-&sig=LRhANCaoxVJ2Ovd8G8at3rp4wqI&hl=en&sa=X&ei=6y9zT6nCEaiYiAKN15yuCw&sqi=2&ved=0CDUQ6AEwAw#v=onepage&q=oracle%20java%20identified%20globally%2Fexternally%20proxy&f=false
    And this AskTom link has an approach - see Followup September 24, 2004 - 9am Central time zone:
    http://asktom.oracle.com/pls/apex/f?p=100:11:0::::P11_QUESTION_ID:21575905259251

Maybe you are looking for

  • Error in import/export of functions - for the apex team

    After exporting functions, the import gives an error. Reason : the export generates a script with function \ function importing this script gives an error because only the first function is imported. or the functions seems to be togheter one function

  • Mozilla Thunderbird 3.1.7 started crashing on startup

    Hello! It started a couple of days ago. Mozilla Thunderbird started crashing unexpectedly when I tried to launch it one day. I tried to run Disk Utility (verify/repair permissions + verify disk) - did not help. I tried to delete PLIST file but it did

  • How to use INVOKE function with INT parameter types

    Can you tell me how to use invoke function with int parameter type ?

  • Error Creating Reports Server Components when installing 11.1.1.2

    Hi There I'm trying to install a A WLS(11.3.2) and Forms/Report 11g (11.1.1.2 bundle) on a Linux RedHat 5.5. But when the configuration tools of Forms/Reports is trying to create the reports server I got the following error: Executing Task: Creating

  • Not able to connect to sqql developer

    hi am running oracle Oracle Database 10g Express Edition Release 10.2.0.1.0 - Product PL/SQL Release 10.2.0.1.0 - Production CORE 10.2.0.1.0 Production TNS for 32-bit Windows: Version 10.2.0.1.0 - Production NLSRTL Version 10.2.0.1.0 - Production am