Viewing 15 posts - 1,756 through 1,770 (of 9,641 total)
The most expensive operation by far is the sort before the aggregation. I'd like to see what happens if you force a HASH MATCH for the aggregation. Can...
February 10, 2012 at 10:18 am
Rod at work (2/10/2012)
So, I got into it on the report server. On...
February 10, 2012 at 9:47 am
Can you post the execution plan for the group by?
February 10, 2012 at 8:47 am
Are you developing on the same machine as the report server is on?
Are you connecting to a remote SQL Server or one on your local machine?
Can you connect to the...
February 10, 2012 at 8:29 am
What do you see when you go into Report Server Configuration on the report server? That should tell you what the URL's are setup as and if you have...
February 10, 2012 at 8:20 am
erikpoker (2/10/2012)
As for your suggestions on the outer joins, you are right, a bit of a mixup there, but not affecting things much performance wise.
Yeah it's not a performance issue,...
February 10, 2012 at 8:18 am
I haven't used TDE or really any encryption in SQL Server. I prefer to have column level encryption done at the application level. I like the fact that...
February 10, 2012 at 8:16 am
sherifffruitfly (2/10/2012)
February 10, 2012 at 8:02 am
Yes you can use the script I just provided to load the data into a table, but you can do all the analysis you need without using a table by...
February 10, 2012 at 7:59 am
You should leave the XACT_STATE in but change it to XACT_STATE() <> 0. It is a best practice to check to make sure the transaction is available to be ROLLED...
February 10, 2012 at 7:57 am
erikpoker (2/10/2012)
Ok. I let the query run for an hour, no result. Seems like the actual executionplan is impossible to get.Anyways, here is the estimated one, if that helps..
I don't...
February 10, 2012 at 7:56 am
Daniel Bowlin (2/10/2012)
The first 4 missing indexes were for the same table. Take...
February 10, 2012 at 7:41 am
Good article. I would only mention that in order to fix ordering issues you don't necessarily need to change the clustered index. ALL indexes are sorted, so a...
February 10, 2012 at 7:35 am
Seeing your query I don' think your main problem is the CASE statement included in the GROUP BY, I think it more likely related to your CROSS JOIN's to the...
February 10, 2012 at 7:22 am
kent_secher (2/10/2012)
I'm not sure I understand the logic behind the "IF (XACT_STATE()) = 1" part in the catch statement. Do you really want to commit just because you can? 🙂
Good...
February 10, 2012 at 6:53 am
Viewing 15 posts - 1,756 through 1,770 (of 9,641 total)