|
Re: ORA - 01017 invalid username/password while creating a shared public database link [message #664866 is a reply to message #664864] |
Wed, 09 August 2017 07:30 |
John Watson
Messages: 8960 Registered: January 2010 Location: Global Village
|
Senior Member |
|
|
Your GUI (whatever it is) does not seem to prompt you for enough information. Shared links require an authentication clause. For example,orclz>
orclz> create shared public database link spdl connect to scott identified by tiger
2 authenticated by system identified by oracle
3 using 'orclz';
Database link created.
orclz> select * from global_name@spdl;
GLOBAL_NAME
--------------------------------------------------------------------------------------------------------------
ORCLZ
orclz>
|
|
|
|