Forum Replies Created

Viewing 15 posts - 511 through 525 (of 1,219 total)

  • RE: Running out of workers

    dwilliscp (10/17/2013)


    FROM sys.dm_exec_requests er

    INNER JOIN sys.sysprocesses sp ON er.session_id = sp.spid

    Here is a potential problem. This join is good in most cases, but not if you use MARS (Multiple Active...

  • RE: Running out of workers

    ELLEN-610393 (10/17/2013)I have wondered if maybe there is a bad join in one of the queries. If you have time and are willing, I could post the two queries...

  • RE: Running out of workers

    Erland Sommarskog (10/15/2013)


    You ceartinly have a parallel query - all those execution context is a sure sign of that. I am surprised that there are so many workers per execution...

  • RE: Running out of workers

    dwilliscp (10/16/2013)


    So if you have one SPID, but 700 rows, that means the server is trying to do parallel processing? They all show CXPacket.. So how do I track down...

  • RE: SSIS, bulk import with ODBC

    Truncating the table and reloading is not defensible in the long run. Your best option is to investigate time with the Progress application to find out how you can find...

  • RE: SSIS, bulk import with ODBC

    If imports are taking that long, maybe you should consider incremental loads, rather than truncating and reloading? This may require logic to detect change, and it may require changes in...

  • RE: Running out of workers

    Jeff Moden (10/15/2013)Perhaps I'm using the wrong words but I have to disagree. I don't have many examples but if you have a connection leak, for example, when using...

  • RE: Running out of workers

    ELLEN-610393 (10/15/2013)


    What I am seeing is thousands of threads for the same spid/session id [not an app that spun up thousands of spids]. Also what is showing is that while...

  • RE: Running out of workers

    ELLEN-610393 (10/3/2013)


    I see that you said that the default 0 for worker threads should be good. What is the impact of having a process spin up several thousand worker...

  • RE: Failure Restoring Differential Backup

    So that is the problem: you are using the UI, instead of using T-SQL commands directly. At very least if you use the UI, and things don't work out, you...

  • RE: Failure Restoring Differential Backup

    I am travelling, and don't have the time to research this further. Anyone else who can step in?

  • RE: Trigger Issue...

    PiMané (9/23/2013)


    I'll do a CHECKPOINT and DBCC DROPCLEANBUFFERS to free the data but keep the execution plans and compiled SP and triggers, since that's what will happen.

    Again, since you are...

  • RE: 108,000,000 row table - check for matches

    A small addiiton in case it was not clear: add that colimn as a computed column to the able and index it. That saves some space over adding it as...

  • RE: screenshot on view

    Jeff Moden (9/22/2013)


    Erland Sommarskog (9/22/2013)


    I know you can probably do such rCTEs in your sleep 😉

    Actually, I had to test it, and that was a good thing, because I had...

  • RE: sql server 2012 licensing question

    Jpotucek (9/22/2013)I guess my question was a little confusing. What I am unclear about is when you install SSAS and SSRS on a separate servers (separate from where your...

Viewing 15 posts - 511 through 525 (of 1,219 total)