I'm trying to create a database link form an Oracle server to another. The command I'm using is:
create public database link mylink connect to myuser identified by 0000 authenticated by myuser identified by 0000 using 'myTNSNameRemoteServer';
sqlplus give me this error:
ERROR at line 1:
ORA-00933: SQL command not properly ended
Putting the '*' under the first character of the password in its first instance.
Have I to escape it in someway?
Thanks