Topic: User Administration >> WinNT administrators
|
Disclaimer: The purpose of all dbapool forums including OCP and Other Oracle Certification forums is to help each other with specific issues but not to share dump and copyrighted exam content, materials or intellectual property.
You may review the entire Oracle Certification Program Candidate Agreement online Here.
|
|
|
|
| Title: WinNT administrators |
| Anil |
Posted: Apr 25, 2003 02:07:00 AM |
Total Post: 1
Joined: Jan, 2003
|
| It is stated that WinNT administrators are the default administrators to Oracle & no password is required for their login to Oracle but it is not working. even though i have made WinNT administrators as SYSDBA |
|
|
saurav |
| Posted: Apr 25, 2003 04:36:00 PM | |
|
Total Post: 13
Joined: Jan, 2003
|
Here are few quick steps to setup external user on NT. I am assuming you are not using Domain Prefixing.
1.Check your SQLNET.ORA and make sure it has following entry
SQLNET.AUTHENTICATION_SERVICES=(NTS)
2. Configure the clients to login to the Windows NT domain to which that Win NT server belongs to, or a Windows NT domain that trusts the domain.
3. Verify the parameter OS_AUTHENT_PREFIX in v$parameter. Connect as sys or system.
SQL> SELECT value FROM v$parameter WHERE name = 'os_authent_prefix';
VALUE
------------
OPS$
OPS$ is the default value. But it can be changed by setting os_authent_prefix parameter in init.ora file to some thing else. Like "XYZ”. Restart the database if you are changing this value.
If you logon as SCOTT than your OS authentication will be OPS$SCOTT.
Here I am assuming that you have default OPS$ value.
4. Create an external user.
SQL> CONNECT SYSTEM/MANAGER
SQL> CREATE USER <OPS$>USERNAME IDENTIFIED EXTERNALLY
DEFAULT TABLESPACE USER_DATA
TEMPORARY TABLESPACE TEMPORARY_DATA;
5. Grant any privileges or roles to this user account as follows :
SQL> GRANT CONNECT TO <OPS$>USERNAME;
SQL> GRANT RESOURCE TO <OPS$>USERNAME;
6. Connect from SQL*Plus :
CONNECT /
or
CONNECT /@<service name>
where <service name> identifies the database alias in the "tnsnames.ora".
Hope this works for you.
Regards,
Vigyan
|
|
|
|
|
positive |
| Posted: Jun 29, 2008 03:32:22 PM | |
|
Total Post: 361
Joined: Jun, 2008
|
http://neworacledba.blogspot.com/
|
|
|
|
|
| Time Zone: EDT |
Send this thread to your friend |
|
|
|
|
Forum Rules & Description
Who Can Read The Forum? Any registered user or guest
Who Can Post New Topics? Any registered user
Who Can Post Replies? Any registered user
|
| |
Get FREE Magazines
|
Top 10 Forum User
|
| Murtuja Khokhar | 814 |
| Mohammed Taj | 694 |
| Jayanta Sur | 479 |
| Vigyan Kaushik | 386 |
| positive fanatic | 361 |
| Gitesh Trivedi | 322 |
| Gopu Gopi | 239 |
| neeraj sharma | 228 |
| Ramesh Jois | 226 |
| snehalatha p | 169 |
|
|