Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Intermittent Catastrophic Failure at conn.open on Prod Server

Status
Not open for further replies.

AnandMishra

Programmer
Jul 12, 2000
39
US
I am getting intermittent "catastrophic failure" error (1x/day) at line# 1710. Prod WebServer has Win2K Adv Server with SP4. It has MDAC 2.71 RTM applied. Connection string has "Provider=oraoledb.oracle; bla bla" for Oracle 9i DB.

This custom ORADAC.dll registered outside COM+.

Any help will be great.


1660 'Open ADO Connection based on connection string from registry
1670 Set adoConnection = New ADODB.Connection
1680 Set registry = New TOMS2DAC.registryAccess
1690 'Detect alternate connection string from source attribute
1700 If Len(strConnString) = 0 Then
1710 adoConnection.Open registry.GetStringKeyValue("Database\TOMS2", "ConnectionString")
1720 Else
1730 adoConnection.Open registry.GetStringKeyValue("Database\TOMS2", strConnString)
1740 End If

Anand
anandm@entcomm.com

 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top