Click here to Skip to main content
15,881,709 members
Articles / Programming Languages / VBScript
Article

Access Oracle without tnsnames.ora

Rate me:
Please Sign up or sign in to vote.
4.90/5 (15 votes)
4 Nov 20052 min read 228.4K   1.6K   34   17
How to access Oracle without tnsnames.ora.

DOS box

Introduction

Have you ever tried to access an Oracle instance from VBScript? It is not too complicated, but normally you need an additional file called tnsnames.ora in the Oracle installation directory. This article describes an easy way to access an Oracle instance without this file. All you have to do is use a different connection string.

Using the code

You can use this kind of connection strings from VBScript, VBA and Visual Basic. I also tested it with Perl, it worked. Using a connection string without the need to have a correct tnsname.ora on your computer is especially useful for ad hoc scripting on many different database instances, or when you are not sure if the user has a correct tnsnames.ora on his computer.

First take a look at the standard connection string for Oracle, used in a VBScript file:

VBScript
Dim strCon
strCon = "Driver={Microsoft ODBC for Oracle}; " & _
         "CONNECTSTRING=MYDB; uid=read;pwd=read;"

You see in the first section the driver name (Microsoft ODBC for Oracle), followed by the alias for the instance, and last the Oracle username and password. The alias name MYDB also needs a corresponding entry in the file tnsnames.ora. Mostly you will find this file in the following directory: <Oracle-Home>\network\admin. In this file you need a definition of the alias:

MYDB.WORLD =
  (DESCRIPTION =
    (ADDRESS_LIST =
      (ADDRESS = (PROTOCOL = TCP)(HOST = mysrv)(PORT = 7001))
    )
    (CONNECT_DATA =
      (SERVICE_NAME = MYDB)
    )
  )

Oracle uses this definition to determine which physical database instance is associated with the given alias MYDB. This is why we need the file tnsnames.ora when we access an Oracle instance. But is this necessary? No, not really! All you have to change: include the physical connection data (like host and port) in your connection string. Here is the modified connection string in VBScript:

VBScript
Dim strCon
strCon = "Driver={Microsoft ODBC for Oracle}; " & _
         "CONNECTSTRING=(DESCRIPTION=" & _
         "(ADDRESS=(PROTOCOL=TCP)" & _
         "(HOST=mysrv)(PORT=7001))" & _
         "(CONNECT_DATA=(SERVICE_NAME=MYDB))); uid=read;pwd=read;"

Now you will be able to access every Oracle instance, without the need to have a correct tnsnames.ora on your client machine. Finally here is the complete source code that selects some rows and writes them to STDOUT:

VBScript
Dim strCon
strCon = "Driver={Microsoft ODBC for Oracle}; " & _
         "CONNECTSTRING=(DESCRIPTION=" & _
         "(ADDRESS=(PROTOCOL=TCP)" & _
         "(HOST=mysrv)(PORT=7001))" & _
         "(CONNECT_DATA=(SERVICE_NAME=MYDB))); uid=read;pwd=read;"

Dim oCon: Set oCon = WScript.CreateObject("ADODB.Connection")
Dim oRs: Set oRs = WScript.CreateObject("ADODB.Recordset")
oCon.Open strCon
Set oRs = oCon.Execute("SELECT myfield FROM mytable)
While Not oRs.EOF
    WSCript.Echo oRs.Fields(0).Value
    oRs.MoveNext
Wend
oCon.Close
Set oRs = Nothing
Set oCon = Nothing

I hope that you find this article useful. For me this kind of a connection string is useful, when I cannot be sure if the end-user had a correct tnsnames.ora on his computer.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Germany Germany
Florian works as consultant for change- and configuration management for about 7 years. In this environment he is often forced to work with unix, perl and shell scripts.

For more information about change- and configuration management (espacially Serena Dimensions) visit: www.venco.de

For video tutorials about asp.net, ajax, gridviews, ... (in german) visit: www.siore.com

Comments and Discussions

 
GeneralRetrieve / Insert XML (or txt) file in Oracle Pin
2Shaar26-Feb-09 6:25
2Shaar26-Feb-09 6:25 
GeneralCheck whether Oracle Client is installed Pin
swanand_rk21-Nov-07 3:06
swanand_rk21-Nov-07 3:06 
QuestionOracle Connection Manager Pin
trberube12-Apr-07 6:01
trberube12-Apr-07 6:01 
GeneralOracle Connectivity from VBscript Pin
binimol3-Apr-07 19:46
binimol3-Apr-07 19:46 
GeneralRe: Oracle Connectivity from VBscript Pin
fstrahberger3-Apr-07 23:49
fstrahberger3-Apr-07 23:49 
GeneralRe: Oracle Connectivity from VBscript Pin
bsatishus4-Apr-07 3:04
bsatishus4-Apr-07 3:04 
GeneralRe: Oracle Connectivity from VBscript Pin
fstrahberger4-Apr-07 4:16
fstrahberger4-Apr-07 4:16 
GeneralRe: Oracle Connectivity from VBscript Pin
bsatishus4-Apr-07 10:27
bsatishus4-Apr-07 10:27 
GeneralRe: Oracle Connectivity from VBscript Pin
Lonestar.org1-Oct-10 21:01
Lonestar.org1-Oct-10 21:01 
GeneralORA-12154 Pin
PasNad17-Oct-06 1:32
PasNad17-Oct-06 1:32 
GeneralRe: ORA-12154 Pin
fstrahberger17-Oct-06 1:54
fstrahberger17-Oct-06 1:54 
GeneralRe: ORA-12154 Pin
PasNad17-Oct-06 16:14
PasNad17-Oct-06 16:14 
GeneralRe: ORA-12154 Pin
fstrahberger17-Oct-06 19:30
fstrahberger17-Oct-06 19:30 
QuestionOther providers Pin
YoniP21-Nov-05 0:24
YoniP21-Nov-05 0:24 
QuestionWhy? Pin
Patrice Borne4-Nov-05 12:20
Patrice Borne4-Nov-05 12:20 
AnswerRe: Why? Pin
fstrahberger5-Nov-05 12:39
fstrahberger5-Nov-05 12:39 
GeneralRe: Why? Pin
CastorTiu12-Nov-05 22:08
CastorTiu12-Nov-05 22:08 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.