call sqlplus UNAME/PASSWD@DBNAME@\\FILELOCATION\SQLFILENAME.sql
ERROR:
ORA-01017: invalid username/password; logon denied
CALL sqlplus UNAME@DBNAME/PASSWD@\\FILELOCATION\SQLFILENAME.sql
ERROR:
ORA-12154: TNS:could not resolve the connect identifier specified
Call
? issqlplus
a batch file? if it isn't, remove theCall
statement and try again! – Composqlplus
was a batch file, and your answer wasyes
; So you are sending a username, password and.sql
file as arguments to a batch script namedsqlplus.bat
orsqlplus.cmd
! – CompoCall
command, or possibly replacing it with theStart
command. As for your arguments, you should use quotes to protect them and any potentially problematic characters, or escape the characters before you use them. – Compo