Click here to Skip to main content
16,011,647 members
Home / Discussions / Database
   

Database

 
GeneralRe: Using DateDiff procedure !! Pin
Pete O'Hanlon7-Mar-08 9:39
mvePete O'Hanlon7-Mar-08 9:39 
GeneralRe: Using DateDiff procedure !! Pin
Ashfield6-Mar-08 21:31
Ashfield6-Mar-08 21:31 
GeneralRe: Using DateDiff procedure !! Pin
Pete O'Hanlon6-Mar-08 21:57
mvePete O'Hanlon6-Mar-08 21:57 
GeneralRe: Using DateDiff procedure !! Pin
Vikrant Badhai6-Mar-08 22:31
Vikrant Badhai6-Mar-08 22:31 
GeneralRe: Using DateDiff procedure !! Pin
Ashfield7-Mar-08 4:13
Ashfield7-Mar-08 4:13 
GeneralRe: Using DateDiff procedure !! Pin
Vikrant Badhai7-Mar-08 18:42
Vikrant Badhai7-Mar-08 18:42 
GeneralPump wait message while accessing data Pin
MAW306-Mar-08 15:12
MAW306-Mar-08 15:12 
GeneralRe: Pump wait message while accessing data Pin
Mike Dimmick7-Mar-08 10:20
Mike Dimmick7-Mar-08 10:20 
The documentation for this can be found at http://msdn2.microsoft.com/en-us/library/ms172233.aspx[^]. It's a Managed Debugging Assistant, which is a component that is invoked by the .NET Framework Common Language Runtime (CLR) when debugging.

It's very unusual to get this message - I've never seen it in debugging .NET applications that work with databases. I believe it indicates that your UI thread was blocked for a long period of time. You should strongly consider moving any long-running queries to other threads.

All calls to COM objects that are marked Apartment thread model have to run on the thread which created them. This includes cleanup code. .NET's garbage collection model pushes anything that needs cleanup after garbage collection onto a finalization queue, which is read by a separate finalization thread. That finalization thread has to cause the thread that created the COM object to run the cleanup code. While it's blocked waiting for the original thread, other objects which require finalization just build up on the queue, because there is only one finalization thread in the process.

You should check that you're using the SqlConnection family of objects throughout and not trying to use OleDbConnection or use the classic ADO objects.


DoEvents: Generating unexpected recursion since 1991

QuestionAdding static column to matix in SSRS.. PLz Help !! [modified] Pin
Payal_e_m6-Mar-08 14:17
Payal_e_m6-Mar-08 14:17 
GeneralRe: Adding static column to matix in SSRS.. PLz Help !! Pin
pmarfleet6-Mar-08 21:05
pmarfleet6-Mar-08 21:05 
QuestionRe: Adding static column to matix in SSRS.. PLz Help !! Pin
Payal_e_m10-Mar-08 10:59
Payal_e_m10-Mar-08 10:59 
GeneralRe: Adding static column to matix in SSRS.. PLz Help !! Pin
Payal_e_m10-Mar-08 17:49
Payal_e_m10-Mar-08 17:49 
QuestionSetting a Grobal Variable from a Stored Procedure in SSIS Pin
ONeil Tomlinson6-Mar-08 1:00
ONeil Tomlinson6-Mar-08 1:00 
GeneralRe: Setting a Grobal Variable from a Stored Procedure in SSIS Pin
SimulationofSai6-Mar-08 1:46
SimulationofSai6-Mar-08 1:46 
GeneralRe: Setting a Grobal Variable from a Stored Procedure in SSIS Pin
ONeil Tomlinson6-Mar-08 2:58
ONeil Tomlinson6-Mar-08 2:58 
GeneralRe: Setting a Grobal Variable from a Stored Procedure in SSIS Pin
SimulationofSai6-Mar-08 3:31
SimulationofSai6-Mar-08 3:31 
GeneralRe: Setting a Grobal Variable from a Stored Procedure in SSIS Pin
ONeil Tomlinson6-Mar-08 3:49
ONeil Tomlinson6-Mar-08 3:49 
GeneralRe: Setting a Grobal Variable from a Stored Procedure in SSIS Pin
ONeil Tomlinson6-Mar-08 5:39
ONeil Tomlinson6-Mar-08 5:39 
GeneralRe: Setting a Grobal Variable from a Stored Procedure in SSIS Pin
SimulationofSai6-Mar-08 6:34
SimulationofSai6-Mar-08 6:34 
GeneralRe: Setting a Grobal Variable from a Stored Procedure in SSIS Pin
ONeil Tomlinson6-Mar-08 9:09
ONeil Tomlinson6-Mar-08 9:09 
GeneralRe: Setting a Grobal Variable from a Stored Procedure in SSIS Pin
SimulationofSai6-Mar-08 9:17
SimulationofSai6-Mar-08 9:17 
QuestionDatabase Independent Application for Bulk Sale/ Distribution Pin
JayKhatri6-Mar-08 0:54
JayKhatri6-Mar-08 0:54 
GeneralRe: Database Independent Application for Bulk Sale/ Distribution Pin
GuyThiebaut6-Mar-08 1:22
professionalGuyThiebaut6-Mar-08 1:22 
GeneralField Expressions in Sql Server Reporting Srevices(SSRS)-2005.. Pin
Aswanth6-Mar-08 0:11
Aswanth6-Mar-08 0:11 
GeneralRe: Field Expressions in Sql Server Reporting Srevices(SSRS)-2005.. Pin
pmarfleet6-Mar-08 2:00
pmarfleet6-Mar-08 2:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.