I set up oracle 10g on a linux box which seems to be working.I am trying to access it from as asp page with iis(windows 2000)/odbc. From what I have researched I need Instant Client 10g installed on the iis box. I have done this and created a TNSNAMES.ORA file in my TNS_ADMIN folder:
and set up an odbc entry using the mirosoft driver for oeracle. On the asp page I get this error:
What am i doing wrong? Am I installing the correct software? do i need to set up mode ora files on the iis box?
thanks
Code:
orcl=
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = 10.0.0.201)(PORT = 1521))
)
(CONNECT_DATA =
(SERVICE_NAME = orcl)
)
)
Code:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC driver for Oracle][Oracle]ORA-12514: TNS:listener does not currently know of service requested in connect descriptor
/aaa.asp, line 3
What am i doing wrong? Am I installing the correct software? do i need to set up mode ora files on the iis box?
thanks