Guest_imported
New member
- Jan 1, 1970
- 0
OK....I have server 1 with database schema A, database schema B, and database schema C
I also have server 2 with database schema AA, database schema BB, and database schema CC.
Server 1 has SID, SID_1
Server 2 has SID, SID_2
I attempted to create a database link with the following, loggied into sqlplus on server 1 in schema A:
create database link SID_2
connect to AA
identified by AA
using SID_2
Now, attempting to use this link, i issue a simple select statement as such: select * from table_agent@SID_2
and i'm getting the following error:
ORA-01017: invalid username/password; logon denied
ORA-02063: preceding line from SID_2
The schema AA, has the username/password AA/AA
What am I doing wrong, do I need to somehow enter the user/passwd for the server 2 ??
I also have server 2 with database schema AA, database schema BB, and database schema CC.
Server 1 has SID, SID_1
Server 2 has SID, SID_2
I attempted to create a database link with the following, loggied into sqlplus on server 1 in schema A:
create database link SID_2
connect to AA
identified by AA
using SID_2
Now, attempting to use this link, i issue a simple select statement as such: select * from table_agent@SID_2
and i'm getting the following error:
ORA-01017: invalid username/password; logon denied
ORA-02063: preceding line from SID_2
The schema AA, has the username/password AA/AA
What am I doing wrong, do I need to somehow enter the user/passwd for the server 2 ??