Viewing 15 posts - 241 through 255 (of 901 total)
If the links above dont help, Can you give more details where you find the install confusing as that will help people answer your questions a lot quicker.
June 11, 2013 at 2:05 am
Andre,
I may help, however there was an article here on SSC (I think it was written by DwainC) on this subject showing the performance of PIVOT/UNPIVOT vs a CROSS TAB,...
June 11, 2013 at 1:27 am
Be careful with CTE's they arnt always the best way to go, but try them to see what happens.
You might also get an improved performance by switching the CTE's so...
June 11, 2013 at 1:21 am
THe problem you may have is with all the Nested Derived tables.
How many records are being populated into the TEMP tabe as im not sure you need the compound...
June 10, 2013 at 9:50 am
As far as im aware a BULK insert causes and Triggers to be ignored, Further Reading: http://msdn.microsoft.com/en-us/library/ms187640(v=sql.105).aspx
June 10, 2013 at 9:34 am
I have to say the Unique Key with a database table is usually SCHEMA, TABLE, and COLUMN, as it is possible to have two tables named the same in different...
June 10, 2013 at 7:36 am
Kingston Dhasian (6/7/2013)
Do you really want to update all the 63 million rows?Check if you can put some filter to reduce the number of rows that will be affected.
I agree...
June 10, 2013 at 2:25 am
Surely this is because the Outer apply cointains a filter based on the outer table which will cause a rBAR operation as each row has to be evaluated.
The Left...
June 6, 2013 at 9:39 am
It looks like table 3 (#C) might be better placed as a TUPLE table where by you have two columns one referencing Table A, the other Table B.
You would then...
June 6, 2013 at 8:55 am
David.Lester (6/6/2013)
However, I did just start here. I dragged the last place I was in from paper systems to nearly 2010. (It was 2012 when I got them to 2010,...
June 6, 2013 at 6:58 am
You might hit an issue with Merge on a large record set.
This is a handy article http://technet.microsoft.com/en-us/library/cc879317.aspx and gives some advice on indexes, and stats to look at when tuning...
April 30, 2013 at 8:54 am
I completely Agree about the indexes being the real issue I've been looking at this script to see what the Engine says it needs, then looking at creating covering indexes...
April 24, 2013 at 5:32 am
I know, and this isn't the worst query, one of them had a 1.2 million Sub-tree cost at the root.
This particular query is used in a view...
April 24, 2013 at 5:19 am
Thanks Chris,
I was looking at an NC index on SectionId, with an includes of the InceptionDate, but the benefit is minimal (based on an Index benefit analysis).
a little bit...
April 24, 2013 at 4:35 am
Another good article is this one https://www.simple-talk.com/sql/database-administration/gail-shaws-sql-server-howlers/ by Gail Shaw.
If you are considering doing this simply to try and increase the performance of queries you need to have a rethink,...
April 17, 2013 at 5:47 am
Viewing 15 posts - 241 through 255 (of 901 total)