Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools

Sample for how to send progress info from long running sps.

Total Hit ( 1839)

Rate this article:     Poor     Excellent 

 Submit Your Question/Comment about this article

Rating


 


Some sample code that shows how to return progress info from long running SPs. This is useful for reporting purposes or to include other mechanisms to control the SP execution.

Click here to copy the following block
--To store the progress details
/*
You can make this as complex as you want by adding more progress details,
mechanism to pause the job etc.
*/

CREATE TABLE ##Progress( Step int , ItTookSoLong int )
GO

CREATE PROC EverRunningProc
AS
DECLARE @step int , @Delay char(10)
SELECT @step = 1
WHILE( 1 = 1)
BEGIN
  IF @step = 1000 BREAK
  INSERT ##Progress VALUES( @Step , 0 )
  -- Do random delay between 1 to 45 seconds
  SELECT @Delay = CONVERT( varchar, DATEADD( ss, CEILING( RAND()* 44 ),
              '1970-01-01') , 8 )
  WAITFOR DELAY @Delay

  UPDATE ##Progress
  SET ItTookSoLong = datepart( ss, convert( datetime , @Delay ) ) ,
    @Step = Step + 1
  WHERE Step = @Step
END
GO

-- In your app, you can do:
-- Calculate percentage based on total number of steps
SELECT MAX( Step ) % 1000.0 AS StepPer
FROM ##Progress


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.