Re: VB6 and Oracle errors
Thread moved to Database Development forum (the "VB6" forum is meant for questions which don't fit in more specific forums)
Re: VB6 and Oracle errors
Re: VB6 and Oracle errors
Your typical tns entry may look like this:
Code:
TNSNAME =
(DESCRIPTION=
(ADDRESS_LIST=
(ADDRESS=
(PROTOCOL=TCP)
(HOST=YOURHOST)
(PORT=1111)
)
)
(CONNECT_DATA=(SID=SOMESID)
)
)
Open command prompt and try to ping YOURHOST (it could be allias say DBPROD or actual IP Address).
If it's not pingable then that's your problem - ask your DBA or guys from your infrastructure to help you with that.
Re: VB6 and Oracle errors
Is the server up? Is the database running? Is the listener on the db server running and listening on the right port?