Re: Password is not case sensity and uncrypted

2002-10-04 Thread Rachel Carmichael

the password is not case-sensitive

which table shows the password unencrypted? Not DBA_USERS, it's
definitely encrypted in there, unless you created the account with
quotes around the password, then it shows in plain text and the user
won't be able to login in in any case.


--- Nguyen, David M [EMAIL PROTECTED] wrote:
 Is password case-sensity in oracle database?  And how do I encrypt it
 as it
 shows unencrypted in password field?
 
 Thanks,
 David
 -- 
 Please see the official ORACLE-L FAQ: http://www.orafaq.com
 -- 
 Author: Nguyen, David M
   INET: [EMAIL PROTECTED]
 
 Fat City Network Services-- 858-538-5051 http://www.fatcity.com
 San Diego, California-- Mailing list and web hosting services
 -
 To REMOVE yourself from this mailing list, send an E-Mail message
 to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
 the message BODY, include a line containing: UNSUB ORACLE-L
 (or the name of mailing list you want to be removed from).  You may
 also send the HELP command for other information (like subscribing).


__
Do you Yahoo!?
New DSL Internet Access from SBC  Yahoo!
http://sbc.yahoo.com
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Rachel Carmichael
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).



RE: Password is not case sensity and uncrypted

2002-10-04 Thread Jamadagni, Rajendra
Title: RE: Password is not case sensity and uncrypted





AFAIK password is NOT case sensitive unless of course you enclose in double-quotes. Also dba_users shows encrypted password. What table are we taking here that shows plain text passwords? Is it an application table?

Raj
__
Rajendra Jamadagni  MIS, ESPN Inc.
Rajendra dot Jamadagni at ESPN dot com
Any opinion expressed here is personal and doesn't reflect that of ESPN Inc. 
QOTD: Any clod can have facts, but having an opinion is an art!



-Original Message-
From: Nguyen, David M [mailto:[EMAIL PROTECTED]]
Sent: Friday, October 04, 2002 1:48 PM
To: Multiple recipients of list ORACLE-L
Subject: Password is not case sensity and uncrypted



Is password case-sensity in oracle database? And how do I encrypt it as it
shows unencrypted in password field?


Thanks,
David
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Nguyen, David M
 INET: [EMAIL PROTECTED]


Fat City Network Services -- 858-538-5051 http://www.fatcity.com
San Diego, California -- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from). You may
also send the HELP command for other information (like subscribing).




*This e-mail 
message is confidential, intended only for the named recipient(s) above and may 
contain information that is privileged, attorney work product or exempt from 
disclosure under applicable law. If you have received this message in error, or are 
not the named recipient(s), please immediately notify corporate MIS at (860) 766-2000 
and delete this e-mail message from your computer, Thank 
you.*1



RE: Password is not case sensity and uncrypted

2002-10-04 Thread Donahue, Adam

There are certain rules Oracle uses for its names, one of which is that names are case 
insensitive.  Password falls under these rules.

That said, you can override these rules by enclosing the password in quotation marks 
(just as you could do the same for a table).

So

SQL alter user myuser identified by CaseSenSitIve 

will store the password in a case-sensitive manner.

But then you must use quotation marks when connecting as well, e.g., 

$ sqlplus myuser/CaseSenSitIve

And I'm not sure this will work across platforms.  A Metalink note (61424.999) on this 
topic indicates that UNIX seems to support case-sensitive passwords, while Windows 
does not.

About encryption, typically Oracle stores passwords in an encrypted format by default.

Adam

-Original Message-
Sent: Friday, October 04, 2002 1:48 PM
To: Multiple recipients of list ORACLE-L


Is password case-sensity in oracle database?  And how do I encrypt it as it
shows unencrypted in password field?

Thanks,
David
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Nguyen, David M
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Donahue, Adam
  INET: [EMAIL PROTECTED]

Fat City Network Services-- 858-538-5051 http://www.fatcity.com
San Diego, California-- Mailing list and web hosting services
-
To REMOVE yourself from this mailing list, send an E-Mail message
to: [EMAIL PROTECTED] (note EXACT spelling of 'ListGuru') and in
the message BODY, include a line containing: UNSUB ORACLE-L
(or the name of mailing list you want to be removed from).  You may
also send the HELP command for other information (like subscribing).