Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a small adodb recordset I am trying to filter. This one is 6 records for our test customer. For some reason the filter is taking 2 seconds to complete, and I am doing this around 30 times on my asp page. Thus, making my page really slow to load. The other recordset filters on this page are running fast.

I have tried setting different CursorLocations and CursorTypes..

Can anyone help me determine why this filter is so slow?

rsAvgPrice.Filter = "CommodityID = 13 AND CropYear = '12'"
share|improve this question
Is this in a loop (outside of being called 30 times)? Have you tested your database latency to see if it's high in general? – RonaldBarzell Dec 4 '12 at 20:18
Correct, this is in a loop that is looping through another recordset. The weird thing is that there are 2 other recordsets being filtered by the same exact filter strings before and after this line, and those have no issues.. – Brandon Tull Dec 4 '12 at 20:25

2 Answers

Probably the whole query is executed again and only then the filter is being applied.

I would have one single loop over all the items, store the required data in local variables then have my own filter. Best efficiency, much better control.

For example, if you want the data filtered by those two fields, I would use Dictionary like this:

Dim oCommodity_CropYear_Data, curKey
Dim curCommodityID, curCropYear, curData
Set oCommodity_CropYear_Data = Server.CreateObject("Scripting.Dictionary")
Do Until rsAvgPrice.EOF
    curCommodityID = rsAvgPrice("CommodityID")
    curCropYear = rsAvgPrice("CropYear")
    curKey = curCommodityID & "_" & curCropYear
    curData = "field1: " &  rsAvgPrice("somefield") & ", field 2: " & rsAvgPrice("other_field") & "<br />"
    oCommodity_CropYear_Data(curKey) = oCommodity_CropYear_Data(curKey) & curData
    rsAvgPrice.MoveNext
Loop
rsAvgPrice.Close

Then to extract the data in a loop:

For x=1 To 30
    For y=1 To 12
        curKey = x & "_" y
        If oCommodity_CropYear_Data.Exists(curKey) Then
            Response.Write("Data for Commodity " & x & " and CropYear " & y & ":<br />" & oCommodity_CropYear_Data(curKey)
        End If
    Next
Next

This is the general idea, hope you can use it for your actual needs.

share|improve this answer
I tried this and it did work, but it was a little harder to use and messy since my filter was inside of a recordset loop and I needed to use multiple fields from the rsAvgPrice recordset on different html elements. Thank you for your suggestion! – Brandon Tull Dec 5 '12 at 17:33
If you can find a way to have the filter applied without re-running the whole query it would be better but otherwise, fear this is the only way. – Shadow Wizard Dec 5 '12 at 21:23
1  
I think the cursorlocation adUseServer was the ultimate issue here. Manually declaring my recordset so I could use an adUseClient cursor location fixed my problem. This prevented unwanted trips to the server on each filter. – Brandon Tull Dec 5 '12 at 22:03

I have resolved this issue.

The issue was when I declare a record set the following way, the cursor type gets set as adOpenForwardOnly and the cursor location to adUseServer. These settings cannot be changed if you fill your recordset using command.Execute.

Set cmd = Server.CreateObject("ADODB.Command")

cmd.CommandType = adCmdText

cmd.CommandText = mySQL

cmd.CommandTimeout = 3000

cmd.ActiveConnection = cn

Set rs = Server.CreateObject("ADODB.Recordset")

Set rs = cmd.Execute

Set cmd = Nothing

The way I resolved this was manually declaring a permanent recordset with its fields. Then I filled a temporary recordset using the command.execute. I then manually populated my declared recordset with the temporary recordset record by record. This allowed me to set the cursorlocation to adUseClient. Thus speeding up the filter by leaps and bounds.

share|improve this answer
you could set the cursorlocation of the connection object – SearchAndResQ Dec 6 '12 at 8:36
I did not know that. Thank you. – Brandon Tull Dec 6 '12 at 14:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.