Viewing 15 posts - 106 through 120 (of 1,517 total)
I have been bitten badly by this bug.:-)
I was recently trying to copy db mail settings from one server to another and somehow managed to mess up the "good" profile...
April 27, 2012 at 4:33 pm
Thanks both; yes, I did not consider the obvious option of adding the OPTIMIZE FOR hint directly in the code:
SELECT ...
...
OPTION (OPTIMIZE FOR (@UserId = 4))
I will try that now.
If...
April 26, 2012 at 6:10 am
The weirdest thing; the SQL stmt is actually enclosed inside a "SELECT * INTO #tempTable FROM ..." statement.
As soon as I included that as well, it worked:
EXEC sp_create_plan_guide
@name = N'guide__procName',
@stmt...
April 25, 2012 at 2:44 pm
I'm not familiar with this particular error, but I have seen appdomain errors in the past as being caused by the SQL buffer pool taking up all available memory on...
April 17, 2012 at 4:02 am
Thanks all!
Since my post three and a half years ago, I have had the chance to use IGNITE extensively and am now a devoted fan. This tool has become an...
April 1, 2012 at 6:30 am
opc.three (3/27/2012)
March 27, 2012 at 5:44 pm
Thanks both for your suggestions.
I'm also looking into some large indexes that over the last couple of months have hardly been used for seeks/scans/lookups (<10) but have undergone millions of...
March 23, 2012 at 3:48 am
Christoph D (1/12/2011)
March 22, 2012 at 6:25 am
Thanks, I'll need all the luck I can get. 🙂
February 18, 2012 at 6:07 am
Revenant (2/17/2012)
Jeffrey Williams 3188 (2/17/2012)
I am thinking that you won't find much in the way of usage of the transaction log. ...
February 17, 2012 at 4:53 pm
I would agree on this one. I would just go the route of altering the column; this statement is supposedly best optimized to handle this sort of change.
Related it to...
February 17, 2012 at 8:14 am
After reading through this article - http://www.sommarskog.se/grantperm.html#certcrossdb - I think I will go with certificates, specifically a certificate shared in common by the 2 databases that I need to work...
February 4, 2012 at 4:25 pm
Thank you all for your replies.
Anyone else? I would be interested in a few more replies, just to get a better feel of what people are doing out there.
January 26, 2012 at 1:56 pm
Thank you all for the suggestions, we are considering all these options.
January 26, 2012 at 4:00 am
Jeff Moden (1/23/2012)
SQLKnowItAll (1/23/2012)
Is EXECUTE AS not an option?It might not be an option if you've written a nice, high performance, inline Table Valued Function.
Sorry, I don't follow, can you...
January 24, 2012 at 5:46 am
Viewing 15 posts - 106 through 120 (of 1,517 total)