DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: Securing Scripts

  1. #1
    Join Date
    May 2001
    Posts
    3
    How do I secure my db scripts from using imbeded passwords without using a fancy LDAP server on UNIX platform?

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    I like to use OS Authentication for my oracle userid. That way, you can login via:
    sqlplus /@yourdatabase

    Then, I grant dba privs to the ops$oracle user so he can run anything system can run...
    Jeff Hunter

  3. #3
    Join Date
    Apr 2001
    Location
    UK
    Posts
    137
    Create a user with the same name as the operating system user:

    create user identified externally;
    grant connect to ;

    You will be able to log into SQLPLUS without a password when you are logged on to UNIX as this user by typing:

    sqlplus /

    If you have problems, check the value of the parameter OS_AUTHENT_PREFIX. It should be blank.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width