Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a SQL script I could run, or some other action I could take, that would create an alias for an entire DB User? I'm running in to an issue where the User name text is too long for a particular program, and I want to create an alias or nickname for that UserId.

Edits:

Rather than logging in with UserId: , Password , I want to log in with UserId: , Password.

The program is not under my control beyond chaning the oracle User ID / Password login credentials.

share|improve this question
Do you mean that you want to alias all user objects so you won't have to use: <longUserName>.<objectName> ? – A.B.Cade Feb 21 '12 at 16:59
I want to log in with a differnet UserId entirely, if that is possible. I added specifics in post. – Stealth Rabbi Feb 21 '12 at 17:01

2 Answers

up vote 2 down vote accepted

You can't create an alias for a database user, no.

Perhaps you don't need to, though. If A (the user with the long name) owns a number of objects, you can create a new database user B with a short name, grant B privileges on the objects in A, and then change the current_schema when B logs in so that references to objects are resolved using A's schema

ALTER SESSION
  SET current_schema = A;

That should accomplish most of what the alias would provide.

share|improve this answer
That's a good idea. Unfortunately, the application managing the oracle connections is limited to me changing the userid / password, so it won't work in my particular case. This is a good answer though. – Stealth Rabbi Feb 21 '12 at 17:04
1  
@StealthRabbi - You can always create a login trigger in schema B that runs the ALTER SESSION to set the current_schema to A. – Justin Cave Feb 21 '12 at 17:05

Perhaps you can use a proxy user that can connect to the DB on behalf of the longNamed user:
http://asktom.oracle.com/pls/asktom/f?p=100:11:0::::p11_question_id:21575905259251

Actually, if it's only for login purpose then maybe you can use Secure External Password Store and avoid putting any username/password

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.