Re: Database Progress Bar

Tech-Archive recommends: Fix windows errors by optimizing your registry

From: Nicholas Paldino [.NET/C# MVP] (mvp_at_spam.guard.caspershouse.com)
Date: 10/13/04


Date: Wed, 13 Oct 2004 11:59:31 -0400

NuBBeR,

    Unfortunately, there really isn't a way to do this (for most DBs, SQL
Server being one of them).

    If you have multiple queries executing, then you can give a progress
indicator for the overall operation (over the multiple queries), but not for
the progress of the individual query.

    You can still provide something to indicate that the application is
alive. For example, take the search progress bar in windows (it bounces
back and forth, just to indicate it is doing something).

    Hope this helps.

-- 
               - Nicholas Paldino [.NET/C# MVP]
               - mvp@spam.guard.caspershouse.com
"NuBBeR" <bennyandlinds@hotmail.com> wrote in message 
news:eCmnixTsEHA.2784@TK2MSFTNGP09.phx.gbl...
> Does anyone have a good idea of how to display a rather accurate progress 
> bar to show how far along a query is?  I am executing multiple queries and 
> would like to have something graphical for the user to see that the 
> program is still working.  Thanks in advance!
>