Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Oracle command causing inetinfo to hang
I am writing a utility to change an Oracle password via an Active Server Page.
The process works only once; that is to say, if I try the page a subsequent time the browser hangs.
Here is the command:
objConn.Execute "ALTER USER " & strUserId & " IDENTIFIED BY " & strNewPass
This command causes the oracle session to remain active even thought the browser is close.
If I run
net stop iisadmin
kill inetinfo
commands I can resume the browser..
Any suggestion would be greatly appreciated
here is the rest of the code:
Set objConn = Server.CreateObject("ADODB.Connection")
objConn.CommandTimeout = 31 objConn.ConnectionTimeout = 16 objConn.Open strDSNa
'----------------------------------
'----------------------------------
'----------------------------------
'----------------------------------
![]() |
![]() |