HowTo:  Create an Oracle External Authentication user

相关信息
Article ID: 42398
Software:
ArcSDE 10.1, 10.2
ArcGIS for Desktop Advanced 10.1, 10.2, 10.2.1
ArcGIS for Desktop Standard 10.1, 10.2, 10.2.1
ArcGIS for Desktop Basic 10.1, 10.2, 10.2.1
Platforms: N/A

问题描述
Instructions provided describe how to create an Oracle External Authentication user for making operating system authentication connections. See
Knowledge Base article 42269 for more information.
已邀请:

EsriSupport

赞同来自:

解决方案

SQL> show user
USER is "SYSTEM"

SQL> show parameter os_authent_prefix

NAME TYPE VALUE
------------------- ----------- ---------
os_authent_prefix string OPS$


SQL> create user "OPS$yourDOMAINNAME\yourUSERNAME" identified externally default tablespace USERS temporary tablespace TEMP account unlock;

SQL> grant connect, resource, create view, unlimited tablespace to "OPS$yourDOMAINNAME\yourUSERNAME";

SQL> commit;


If the 'os_authent_prefix' initialization parameter has a value of NULL in the Oracle instance, create the user without the 'OPS$' prefix.



SQL> show user
USER is "SYSTEM"

SQL> show parameter os_authent_prefix

NAME TYPE VALUE
------------------- ----------- ---------
os_authent_prefix string


SQL> create user "yourDOMAINNAME\yourUSERNAME" identified externally default tablespace USERS temporary tablespace TEMP account unlock;

SQL> grant connect, resource, create view, unlimited tablespace to "yourDOMAINNAME\yourUSERNAME";

SQL> commit;



其它相关参考
  1. Make Oracle database authentication connections using EZCONNECT syntax
  2. How to make Oracle database authentication connections using a Net Service Name
  3. How to make Oracle external authentication connections (OSA for Oracle) using EZCONNECT syntax
  4. How to make Oracle external authentication connections (OSA for Oracle) using a Net Service Name


创建及修改时间
Created: 4/7/2014

Last Modified: 4/18/2014
原文链接
http://support.esri.com/en/kno ... 42398

要回复问题请先登录注册