This topic provides instructions for creating users and granting connection rights when using Oracle OS authentication. Prior to performing these steps, consider the following:
You must be a member of the ORA_DBA group and have SYSDBA privileges.
Users must be created in such a way that Oracle knows they are authenticated via a DOMAIN controller.
Use SQL*Plus or SQL*Plus Worksheet to create users. If you are not familiar with SQL*Plus, consult your Oracle documentation.
Users must be created within a Windows NT domain and added to the ORA_DBA group. Refer to your Microsoft Windows documentation for more information about using a Windows domain.
When setting up users for Silk Test Workbench in Oracle, create a schema to house the actual tables in addition to the remotely authenticated users. The schema is not domain authenticated, but is password authenticated.
CREATE USER "NT-DOMAIN\JEFF" IDENTIFIED EXTERNALLY; GRANT SELECT ANY SEQUENCE TO "NT-DOMAIN\JEFF"; GRANT UNLIMITED TABLESPACE TO "NT-DOMAIN\JEFF"; GRANT "CONNECT" TO "NT-DOMAIN\JEFF"; GRANT "RESOURCE" TO "NT-DOMAIN\JEFF"; GRANT "SELECT_CATALOG_ROLE" TO "NT-DOMAIN\JEFF";