Click here to Skip to main content
15,892,965 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
progress bar showing the percentage of completing sql executing query,
and the label should show which employee executing is in process.
Posted
Comments
[no name] 17-Aug-12 12:53pm    
http://www.codeproject.com/Articles/64628/Code-Project-Quick-Answers-FAQ paying particular attention to #4
Philip Stuyck 17-Aug-12 12:57pm    
Do you mean to show the progress of your query being executed on the server or do you mean to show the progress as you iterate the result of the query by going through a reader ? The latter only is possible.

Without a lot of work, this is not possible. It would be real nice if you could get feedback like this when running a simple query. Of course do not want to process one record at a time, unless you are willing to do this, not really practical. You could write code that would get the count of records, and then read 1% at a time using a stored proceedure that has a skip and take argument. This will slow down the process.
 
Share this answer
 
have a look at this for first part..I didn't get the second part of question..
http://stackoverflow.com/questions/9470634/how-to-indicate-the-current-progress-of-querying-a-large-dataset[^]
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900