//  home   //  advanced search   //  news   //  categories   //  sql build chart   //  downloads   //  statistics
 ASP FAQ 
Home
ASP FAQ Tutorials

   8000XXXX Errors
   Alerts
   ASP.NET 2.0
   Classic ASP 1.0
   Databases
      Access DB & ADO
      General SQL Server & Access Articles
      MySQL
      Other Articles
      Schema Tutorials
      Sql Server 2000
      Sql Server 2005
   General Concepts
   Search Engine Optimization (SEO)

Contact Us
Site Map

Search

Web
aspfaq.com
tutorials.aspfaq.com
databases.aspfaq.com

ASP FAQ Tutorials :: Databases :: Other Articles :: How do I prevent my ASP pages from waiting for backend activity?


How do I prevent my ASP pages from waiting for backend activity?

If you are trying to run an executable or other backend process, see Adrian Forbes' article: 
 
    Executing long-running tasks from ASP 
 
If you are trying to run long-running database tasks, then the following is designed for a very specific scenario. Your ASP page should: 
  1. initiate a long-running command that may cause a browser to time out; and,
  2. not need to show a user results from the command.
This means it should trigger an event (most likely, executing a stored procedure) that does NOT return a resultset. The following example will use SQL Server, though some methods 
 
So, let's say we have a database, called scratch: 
 
CREATE DATABASE scratch 
GO
 
And we have a table, called TimeRecord: 
 
CREATE TABLE dbo.timeRecord 

    dt DATETIME 

GO
 
And a stored procedure that inserts, after an odd five-second delay, the current timestamp. 
 
CREATE PROCEDURE dbo.insertTimeRecord 
AS 
BEGIN 
 
    SET NOCOUNT ON 
 
    WAITFOR DELAY '00:00:05' 
 
    INSERT dbo.timeRecord(dt) 
        VALUES(CURRENT_TIMESTAMP) 
 
END 
GO
 
Now, traditionally, in ASP we would call this procedure as follows: 
 
<% 
    Set conn = CreateObject("ADODB.Connection") 
     
    conn.open "<connection string>" 
 
    x = timer 
 
    conn.Execute "EXEC insertTimeRecord" 
    ' or, as Bob likes, conn.insertTimeRecord 
     
    Response.Write "<p>Done" & fmtSec(timer, x) 
 
    conn.Close: Set conn = Nothing 
     
    function fmtSec(y, x) 
        fmtSec = " (" & formatnumber(y - x, 3) & " seconds)" 
    end function 
%>
 
And sure enough, we would see that it takes more than five seconds for the browser to process the results. 
 

 
One approach would be to use the asynchronous flag (adAsyncExecute — &H00000010, or 16): 
 
<% 
    Set conn = CreateObject("ADODB.Connection") 
     
    conn.open "<connection string>" 
 
    x = timer 
 
    conn.Execute "EXEC insertTimeRecord", , 16 
 
    Response.Write "Done" & fmtSec(timer, x) 
 
    function fmtSec(y, x) 
        fmtSec = " (" & formatnumber(y - x, 3) & " seconds)" 
    end function 
%>
 
This approach can be used in both Access and SQL Server, though we have not tested it extensively in Access. 
 
Note that, in this case, you must not close the connection object or set it to nothing, or else you receive this error: 
 
ADODB.Connection error '800a0e7f'  
Operation cannot be performed while executing asynchronously.
 

 
Another approach might be to create a job in SQL Server (for obvious reasons, this approach is not valid for Access). Note that this technique requires elevated privileges... 
 
Here is the code for the job: 
 
USE MASTER 
GO 
 
DECLARE @dbname SYSNAME 
SET @dbname = N'scratch' -- use an existing DB if you like 
 
BEGIN TRANSACTION  
    DECLARE @JobID BINARY(16), @ReturnCode INT  
    SELECT @ReturnCode = 0 
    IF NOT EXISTS (SELECT 1 
        FROM msdb.dbo.syscategories 
        WHERE name = N'aspfaq') 
    BEGIN 
        EXECUTE msdb.dbo.sp_add_category 
            @name = N'aspfaq' 
    END 
 
    -- Delete the job with the same name 
    SELECT @JobID = job_id  
        FROM msdb.dbo.sysjobs  
        WHERE (name = N'insertTimeRecord')  
        IF (@JobID IS NOT NULL)  
        BEGIN  
            -- Delete the [local] job  
            EXECUTE msdb.dbo.sp_delete_job 
                @job_name = N'insertTimeRecord'  
            SELECT @JobID = NULL 
        END  
 
    -- Add the job 
    EXECUTE @ReturnCode = msdb.dbo.sp_add_job 
        @job_id = @JobID OUTPUT, 
        @job_name = N'insertTimeRecord', 
        @owner_login_name = N'sa', 
        @category_name = N'aspfaq' 
 
    IF (@@ERROR <> 0 OR @ReturnCode <> 0) 
        GOTO QuitWithRollback  
 
    -- Add the job steps 
    EXECUTE @ReturnCode = msdb.dbo.sp_add_jobstep 
        @job_id = @JobID, 
        @step_id = 1, 
        @step_name = N'Step 1', 
        @command = N'EXEC insertTimeRecord', 
        @database_name = @dbname, 
        @server = N'', 
        @database_user_name = N'', 
        @output_file_name = N'' 
 
    IF (@@ERROR <> 0 OR @ReturnCode <> 0) 
        GOTO QuitWithRollback  
 
    EXECUTE @ReturnCode = msdb.dbo.sp_update_job 
        @job_id = @JobID, 
        @start_step_id = 1  
 
    IF (@@ERROR <> 0 OR @ReturnCode <> 0) 
        GOTO QuitWithRollback  
 
    -- Add the Target Servers 
    EXECUTE @ReturnCode = msdb.dbo.sp_add_jobserver 
        @job_id = @JobID, 
        @server_name = N'(local)'  
 
    IF (@@ERROR <> 0 OR @ReturnCode <> 0) 
        GOTO QuitWithRollback  
 
COMMIT TRANSACTION 
 
GOTO EndSave  
 
QuitWithRollback: 
    IF (@@TRANCOUNT > 0) ROLLBACK TRANSACTION  
 
EndSave: 
    PRINT 'Success.'
 
Now, you can have a stored procedure that calls this job (this will cause the call to operate asynchronously): 
 
CREATE PROCEDURE start_job_manually 
    @jobName SYSNAME, 
    @jobID UNIQUEIDENTIFIER = NULL 
AS 
BEGIN 
    SET NOCOUNT ON 
 
    DECLARE @rc INT 
 
    SELECT @jobID = job_id 
        FROM msdb..sysjobs 
        WHERE name = @jobname 
 
    IF @jobID IS NULL 
    BEGIN 
        SELECT 1 
        RETURN 
    END 
 
    CREATE TABLE #foo 
    ( 
        a UNIQUEIDENTIFIER, b INT, c INT, 
        d INT, e INT, f INT, g INT, h INT, 
        i SYSNAME NULL, running INT, k INT, 
        l INT, m INT 
    ) 
    INSERT #foo 
        EXEC master.dbo.xp_sqlagent_enum_jobs 
        1, N'sa', @jobID 
 
    -- make sure the job isn't already running! 
    IF EXISTS (SELECT 1 FROM #foo WHERE running = 1) 
        SET @rc = 1 
    ELSE 
        EXEC @rc = msdb.dbo.sp_Start_Job 
            @Job_name = @jobname 
 
    DROP TABLE #foo 
 
    SELECT rc = @rc 
END 
GO
 
The procedure is a little longer than it should be, because we first check that the job isn't already running, in order to avoid an ugly error (we'll handle this in ASP below). 
 
<% 
    Set conn = CreateObject("ADODB.Connection") 
     
    conn.open "<connection string>" 
 
    x = timer 
 
    set rs = conn.Execute("EXEC start_job_manually 'insertTimeRecord'") 
 
    if clng(rs(0)) = 0 then 
        msg = "Job was started successfully." 
    else 
        msg = "Job is already running, or there was an error." 
    end if 
 
    response.write "<p>" & msg & fmtSec(timer, x) 
     
    rs.close: set rs = nothing 
     
    conn.Close: Set conn = Nothing 
     
    function fmtSec(y, x) 
        fmtSec = " (" & formatnumber(y - x, 3) & " seconds)" 
    end function 
%>
 
One word of warning: errors get swallowed up by the provider when using asynchronous methods, so you'll want to employ this method carefully.

Related Articles

How do I build a query with optional parameters?
How do I calculate the median in a table?
How do I create a store locator feature?
How do I deal with MEMO, TEXT, HYPERLINK, and CURRENCY columns?
How do I deal with multiple resultsets from a stored procedure?
How do I debug my SQL statements?
How do I determine if a column exists in a given table?
How do I enable or disable connection pooling?
How do I enumerate through the DSNs on a machine?
How do I find a stored procedure containing <text>?
How do I get a list of Access tables and their row counts?
How do I get the latest version of the JET OLEDB drivers?
How do I handle alphabetic paging?
How do I handle BIT / BOOLEAN columns?
How do I handle error checking in a stored procedure?
How do I ignore common words in a search?
How do I page through a recordset?
How do I present one-to-many relationships in my ASP page?
How do I prevent duplicates in a table?
How do I prevent NULLs in my database from mucking up my HTML?
How do I protect my Access database (MDB file)?
How do I protect my stored procedure code?
How do I protect myself against the W32.Slammer worm?
How do I remove duplicates from a table?
How do I rename a column?
How do I retrieve a random record?
How do I return row numbers with my query?
How do I send a database query to a text file?
How do I simulate an array inside a stored procedure?
How do I solve 'Could not find installable ISAM' errors?
How do I solve 'Operation must use an updateable query' errors?
How do I temporarily disable a trigger?
How do I use a SELECT list alias in the WHERE or GROUP BY clause?
How do I use a variable in an ORDER BY clause?
Should I index my database table(s), and if so, how?
Should I store images in the database or the filesystem?
Should I use a #temp table or a @table variable?
Should I use a view, a stored procedure, or a user-defined function?
Should I use recordset iteration, or GetRows(), or GetString()?
What are all these dt_ stored procedures, and can I remove them?
What are the limitations of MS Access?
What are the limitations of MSDE?
What are the valid styles for converting datetime to string?
What datatype should I use for my character-based database columns?
What datatype should I use for numeric columns?
What does "ambiguous column name" mean?
What is this 'Multiple-step OLE DB' error?
What is wrong with 'SELECT *'?
What naming convention should I use in my database?
What should I choose for my primary key?
What should my connection string look like?
When should I use CreateObject to create my recordset objects?
Where can I get this 'Books Online' documentation?
Where do I get MSDE?
Which database platform should I use for my ASP application?
Which tool should I use: Enterprise Manager or Query Analyzer?
Why are there gaps in my IDENTITY / AUTOINCREMENT column?
Why can I not 'open a database created with a previous version...'?
Why can't I access a database or text file on another server?
Why can't I use the TOP keyword?
Why do I get 'Argument data type text is invalid for argument [...]'?
Why do I get 'Not enough space on temporary disk' errors?
Why does ASP give me ActiveX errors when connecting to a database?
Should I use COALESCE() or ISNULL()?
Where can I get basic info about using stored procedures?

 

 


Created: 5/24/2001 | Last Updated: 3/24/2005 | broken links | helpful | not helpful | statistics
© Copyright 2006, UBR, Inc. All Rights Reserved. (93)

 

Copyright 1999-2006, All rights reserved.
Finding content
Finding content.  An error has occured...