Viewing 15 posts - 511 through 525 (of 1,219 total)
dwilliscp (10/17/2013)
FROM sys.dm_exec_requests erINNER 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...
October 18, 2013 at 7:20 am
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...
October 17, 2013 at 2:46 pm
Erland Sommarskog (10/15/2013)
October 16, 2013 at 4:09 pm
dwilliscp (10/16/2013)
October 16, 2013 at 4:05 pm
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...
October 16, 2013 at 5:45 am
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...
October 15, 2013 at 1:09 pm
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...
October 15, 2013 at 12:19 pm
ELLEN-610393 (10/15/2013)
October 15, 2013 at 12:14 pm
ELLEN-610393 (10/3/2013)
October 15, 2013 at 7:53 am
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...
September 29, 2013 at 4:15 pm
I am travelling, and don't have the time to research this further. Anyone else who can step in?
September 25, 2013 at 5:55 am
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...
September 24, 2013 at 6:01 am
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...
September 24, 2013 at 5:59 am
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...
September 24, 2013 at 5:49 am
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...
September 22, 2013 at 3:30 pm
Viewing 15 posts - 511 through 525 (of 1,219 total)