CÓMO

Crear un usuario de autenticación externa de Oracle

Last Published: November 1, 2024

Descripción

Las instrucciones proporcionadas describen cómo crear un usuario de autenticación externa de Oracle para realizar conexiones de autenticación del sistema operativo. Para obtener más información, consulte el artículo de la base de conocimientos: Cómo: Configurar Oracle Instant Client para realizar conexiones de autenticación de base de datos y autenticación de sistema operativo mediante ArcGIS Desktop.

Solución o solución alternativa

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;

Si el parámetro de inicialización "os_authent_prefix" tiene un valor de NULL en la instancia de Oracle, cree el usuario sin el prefijo "OPS$".

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;

Id. de artículo: 000012028

Obtenga soporte con IA

Resuelva su problema rápidamente con el chatbot de inteligencia artificial de soporte de Esri.

Empieza a chatear ahora

Obtener ayuda de expertos en ArcGIS

Contactar con el soporte técnico

Empieza a chatear ahora

Ir a opciones de descarga