Hotfix information
A supported hotfix is available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next software update that contains this hotfix.
If the hotfix is available for download, there is a "Hotfix download available" section at the top of this Knowledge Base article. If this section does not appear, contact Microsoft Customer Service and Support to obtain the hotfix.
Note If additional issues occur or if any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. For a complete list of Microsoft Customer Service and Support telephone numbers or to create a separate service request, visit the following Microsoft Web site:
Note The "Hotfix download available" form displays the languages for which the hotfix is available. If you do not see your language, it is because a hotfix is not available for that language.
Prerequisites
There are no prerequisites for installing this hotfix.
Restart requirement
You do not have to restart the computer after you apply this hotfix.
Hotfix replacement information
This hotfix does not replace a previously released hotfix.
File information
The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the
Time Zone tab in the Date and Time item in Control Panel.
File name | File version | File size | Date | Time | Platform |
---|
W3filter.dll | 4.0.2165.601 | 730,904 | 06-Mar-2006 | 06:28 | x86 |
Wspsrv.exe | 4.0.2165.601 | 940,824 | 06-Mar-2006 | 06:28 | x86 |
Post-hotfix installation information
After you install the hotfix, the default MSDE time-out period for a query is 150 seconds. However, you may change the MSDE time-out period by using a script. To do this, follow these steps:
- Copy the following code, and then paste it into Notepad.
Option Explicit
Dim root
Dim arr
Dim logging
Dim objArgs
Dim WriteMode
WriteMode = false
Set objArgs = WScript.Arguments
If objArgs.Count > 0 Then
WriteMode = true
End If
'Create the root ISA Server object
Set root = CreateObject("FPC.Root")
'Get the arrays collection
Set arr = root.GetContainingArray
Set logging = arr.Logging
WScript.Echo "***************************************"
If WriteMode Then
WScript.Echo "* Set MSDEQueryTimout value (seconds) *"
Else
WScript.Echo "* Get MSDEQueryTimout value (seconds) *"
End If
WScript.Echo "***************************************"
WScript.Echo "Retrieve the current MSDEQueryTimeout value:"
WScript.Echo "Syntax: ""cscript.exe MSDEQueryTimeout.vbs"""
WScript.Echo " "
WScript.Echo "Set the MSDEQueryTimeout value:"
WScript.Echo "Syntax: ""cscript.exe MSDEQueryTimeout.vbs 500"""
WScript.Echo " "
WScript.Echo " "
If WriteMode Then
Logging.MSDEQueryTimeout = CInt(objArgs(0))
logging.Save
WScript.Echo "MSDEQueryTimeout = " & logging.MSDEQueryTimeout
Else
WScript.Echo "MSDEQueryTimeout = " & logging.MSDEQueryTimeout
End If
- Save this Notepad file as MSDEQueryTimeout.vbs.
- Run the following command from the location where you saved the file:
Cscript MSDEQueryTimeout.vbs Time
Note Time is the new MSDE time-out period that you want to specify in seconds. The default MSDE time-out period is 150 seconds.