Viewing 15 posts - 106 through 120 (of 267 total)
Excellent article. You did a great job of explaining why table variables often perform poorly when they have many rows and are joined, especially in complex T-SQL. I did run...
April 12, 2010 at 7:07 am
I assume you created a login, and then created a user account mapped to that login for at least one user database. do they have this database defined as their...
April 8, 2010 at 12:05 pm
You will have to either get the source code from the contractor or decrypt the trigger yourself. I attached code you can use to decrypt objects, but you will have...
April 6, 2010 at 12:03 pm
What do you get if you execute sp_helptext [triggerName]?
April 5, 2010 at 11:43 am
One option would be to spread tempdb over more spindles. Another alternative would be to install an additional instance on the server and place the tempdb for that instance on...
April 5, 2010 at 9:44 am
Did I misunderstand you?
Yes. My understanding is that he is already recompiling the procedure each time and that hasn't solved the problem.
1. If I keep the recompile code, is...
April 2, 2010 at 9:19 am
It could be parameter sniffing, but recompiling the whole procedure shouldn't have a positive effect if it is.
Why do you say that?[/quote]
Parameter sniffing is the process whereby the optimizer uses...
April 2, 2010 at 8:28 am
Can you send the xml of the actual execution plan.
April 1, 2010 at 1:01 pm
One possibility is to use the option (optimize for (@var = value)) query hint. This might work if the distribution/frequency of the parameter you are using is in fact average...
April 1, 2010 at 12:55 pm
You could apply the additional hotfixes, but I wouldn't do that, I would just leave it alone.
April 1, 2010 at 9:14 am
I use several methods for doing this including SSIS, OPENROWSET, C#, and replication. I'll discuss the factors that lead me in one direction or another briefly.
If the source table...
April 1, 2010 at 9:10 am
These are just different cumulative update packs for service pack 3. Check out Steve Jones post:
http://www.sqlservercentral.com/articles/Administration/2960/
As long as they are all on Service pack 3 you should be good. The...
April 1, 2010 at 8:56 am
Couple things to check. Go to configuration Manager and check the protocols. Make sure Named pipes and TCP/IP are enabled under SQL Server Network Configuration and under SQL Native Client...
April 1, 2010 at 8:50 am
While user connections do take up a small amount of memory in SQL Server instance, it is for the most part insignificant. A better way to calculate how much memory...
April 1, 2010 at 8:42 am
You got me! I was starting to get into the groove of my day and after several jokes I had temporarily forgotten what day it is. . . Your article...
April 1, 2010 at 8:19 am
Viewing 15 posts - 106 through 120 (of 267 total)