vote up 0 vote down star

Hi,

I want to call my test.sql script from the sql session with all user,Password and databse information.

I have given the below command:

sqlplus -s BANKREC/password@nxgdev.ch.hibm.hsbc/D1PRO@/export/home/43279636/test.sql

However, it is giving me the error "TNS can't resolve the path".
What's the problem in above code?

Please guide me.
Your early response is highly appreciated.

thnx in advance!!!

flag

Try posting the question in a readable format. – shahkalpesh Jun 5 at 7:47

3 Answers

vote up 1 vote down check

Here's an example, assuming the hostname is "nxgdev.ch.hibm.hsbc", the SID is D1PRO, and the listener is on default port 1521:

    sqlplus -s BANKREC/password@"(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=nxgdev.ch.hibm.hsbc)(PORT=1521))(CONNECT_DATA=(SID=D1PRO)))" @/export/home/43279636/test.sql 

This example assumes you are establishing a connection using TCP/IP, and you are not wanting to use Oracle names resolution.


Additional notes:

I've not addressed Oracle name resolution here. But for starters, you'd be looking for a sqlnet.ora file $ORACLE_HOME/network/admin, and if NAMES.DIRECTORY_PATH refers to TNSNAMES, you'd be looking for a tnsnames.ora file in the same directory. (The TNS_ADMIN environment variable overrides the default directory, but I've already gotten too deep...)

For increased security, I'd recommend you not provide the username and password on the command line, since that would be visible to other users e.g. from the output of "ps -ef".

    sqlplus -s /NOLOG <<EOD!
    connect BANKREC/password@"(DESCRIPTION=(ADDRESS=(PROTOCOL=TCP)(HOST=nxgdev.ch.hibm.hsbc)(PORT=1521))(CONNECT_DATA=(SID=D1PRO)))"
    @/export/home/43279636/test.sql
    exit
    EOD!

link|flag
vote up 1 vote down

What is the D1PRO bit?

Looks to me like....

sqlplus -s BANKREC/password@nxgdev.ch.hibm.hsbc @/export/home/43279636/test.sql

....would work... what are you trying to do with /D1PRO?

link|flag
thnks for ur quick response...D1PRO is a database name and "nxgdev.ch.hibm.hsbc" is a servername – kunj raman singh Jun 5 at 13:52
I have to give the database name as there are several database resides on the server. – kunj raman singh Jun 5 at 13:56
vote up 2 vote down

I think there is a space missing before the second @.

link|flag
yes it is working now...thnx aton!!! – kunj raman singh Jun 9 at 14:51

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.