Viewing 15 posts - 2,401 through 2,415 (of 5,843 total)
GilaMonster (8/31/2013)
Google: tally table (or dates table maybe)
+100
What kills you the way you are doing it is log buffer flushes. Google them too if you are interested. Tally...
August 31, 2013 at 7:33 am
pietlinden (8/30/2013)
Did you read Paul White's articles on the subject?http://www.sqlservercentral.com/articles/APPLY/69953/
and
+100
August 31, 2013 at 7:31 am
It is often appropriate in DW loading processes to DISABLE autostats stuff before load, then manually do stats after the load. you really don't want them firing multiple times...
August 30, 2013 at 1:39 pm
I actually meant to add E) Call Microsoft! It is definitely (past?) time! Best of luck with it. Please post back here if/when you get things figured...
August 29, 2013 at 7:48 pm
Yeah - pretty out of whack there.
A) You sound like you know what you are doing, so have you tried some of the 2005/2008 stuff (such as here: http://blogs.msdn.com/b/psssql/archive/2008/06/16/query-performance-issues-associated-with-a-large-sized-security-cache.aspx)?
B)...
August 29, 2013 at 3:41 pm
deep3.kaur 98681 (8/29/2013)
August 29, 2013 at 2:35 pm
redy007 (8/29/2013)
Thanks Kevin, you've right. It's great that you see a problem just from few rows.
I suspect that if you had been playing around with SQL Server for over 40000...
August 29, 2013 at 2:31 pm
nathan 7372 (8/29/2013)
August 29, 2013 at 2:29 pm
pietlinden (8/28/2013)
Kevin,I'm really good at making T-SQL mistakes. Is the presentation posted somewhere so I can learn from someone else's mistakes instead of just my own?
Thanks!
Pieter
Here you go: ...
August 29, 2013 at 7:52 am
My advice is to set up a test and actually do it to verify (and learn in the process). Partitioning REALLY isn't something you want to learn about from...
August 28, 2013 at 7:51 pm
I don't open excel spreadsheets from the web.
Sorry, I wasn't specific enough in my request. I (and others that might help you) need CREATE TABLE scripts (temporary tables please,...
August 28, 2013 at 1:01 pm
I think -2 is an orphaned distributed transaction. Do some investigations along that line.
Also, I see that you are doing a parallel update (same spid multiple times) and using...
August 28, 2013 at 12:58 pm
I have an example almost identical to this in my Common TSQL Mistakes session I have given about 75 times now. It represents the WORST king of data processing...
August 28, 2013 at 12:53 pm
To my knowledge as long as you try to do something like this:
USE AdventureWorks2012
GO
DECLARE @totalrows int
SELECT *, @totalrows = TotalRows
FROM (
SELECT JobTitle,
...
August 28, 2013 at 12:50 pm
Please provide sample tables, data, and expected output. We can't do much for you without that as a starting point. Also, I don't understand your question about query...
August 28, 2013 at 6:27 am
Viewing 15 posts - 2,401 through 2,415 (of 5,843 total)