zzfive03
Programmer
- Jun 11, 2001
- 267
I have 2 queries I run in my ASP page. They are rather long (6 seconds each). They do not rely on eachother. Is there any way I can send both requests to the SQL server and have them both run at the same time?
Example
'Run this one
SQL1 = "..."
'Run this one on a different request or therad
SQL2 = "..."
'After both return results, continue here...
. /....
Example
'Run this one
SQL1 = "..."
'Run this one on a different request or therad
SQL2 = "..."
'After both return results, continue here...
. /....