This topic is locked

Help! Pages Timing Out! Too many Records?

12/12/2008 2:36:16 PM
ASPRunnerPro General questions
E
evileyez3 author

Hey all, I'm hoping someone can help me out here. I've created a intranet recordings site to listen to recorded phone calls for quality purposes. Here's the problem I'm having, once the QA team members log in to the site and then do an advanced search, the page times out. There are indexes on the MS SQL tables as well as script timeouts have been increased for IIS as well as on some of the asp pages. The MS SQL table is huge with over 4 million records. What would be best practices to speed things up? I'm at a loss... My MS SQL statement is as follows:

select

ABCId,

RefNum,

StartDateTime,

FinishDateTime,

PhoneNumber,

Agent,

Recording

FROM dbo.ABCCallLog

WHERE isnull(Recording, '') <> ' ' AND Archive = 0

ORDER BY StartDateTime DESC


As you can see I'm pulling data but I don't want Recording to be blank and the record cannot be Archived.
Once I log into the site and the above SQL statement runs I have about 700,000+ records that meet the above criteria. Again, I'm at a loss and any help would be GREAT! Thanks for your time.

J
Jane 12/15/2008

Add the following command in the beginning of the file that times out

<%

Server.ScriptTimeout = 3600

%>

Alberto 12/23/2008

I am always having these issues and need to change the source pages emanually verytime I reinstall the ASPRunner to keep it current.
Can you set this like in the misselaneos step with same default you ahve hardcoded, so we can change this number when needed (by page or all at once)? this would be a great improvement as this is one of the resons for us NOT to update/upgrade our current versions of ASPRunner.
If you can make ASPRunner more parametric then it is easier to update/upgrade the software.
Hope it helps you to see what see from this side

Thanks a lot and keep improving it <img src='https://asprunner.com/forums/file.php?topicimage=1&fieldname=reply&id=36245&image=1&table=forumreplies' class='bbc_emoticon' alt=':rolleyes:' />

J
Jane 12/24/2008

Hi,
thank you for sharing your idea.

We'll add it to our suggestion list.