Viewing 15 posts - 1 through 15 (of 19 total)
What do you mean per slot? Per port yes, but you can get dual ported HBAs which will double that, so 2 dual ported cards give you 2GB/s. And that...
April 8, 2010 at 2:50 am
We use fusionIO for tempdb too, beautiful! But why all the messing around with PCI expansion etc, if you need more space than you can squeeze into a box why...
April 8, 2010 at 2:32 am
Yeah, thats what I figured, I guess I was just hoping there some quick we function I could pop in somehwere that would make the optimiser know it was invalid...
January 11, 2010 at 7:53 am
We have an application where all SQL access is via a standard data access layer. I'm trying to get them to build in a usage of the context_info to set...
February 23, 2009 at 1:58 am
Yeah I did think of that but presumably if I'm happy with the parameters I optimize for will give me a good(ish) plan every time then it is better to...
February 16, 2009 at 1:58 am
This is what I ran to get the plan of the statement as it was running, is this right?
select r.plan_handle,p.query_plan
from sys.dm_exec_requests r
cross apply sys.dm_exec_query_plan(r.plan_handle) p
where session_id = 143
February 13, 2009 at 7:25 am
That's where I got the bad plan in the first place I'm afraid. I was a little surprised to see it was an estimated plan though.
February 13, 2009 at 6:49 am
Ah no chance there. When you profile to get plans I can never get any filter to work that doesn't cripple the system. It only ever happens in prod and...
February 13, 2009 at 6:12 am
Unfortunately I can never actually get the actual execution plan, when I run the query manually it always gives me the good plan. The bad plan was extracted out of...
February 13, 2009 at 5:52 am
Yup can do, I've put the good and the bad plan in there for comparison.
February 13, 2009 at 5:24 am
OK here you go all the gory details, it all looks OK to me. This is view...
ALTER VIEW [dbo].[vwConsolidatedCLT]
AS
SELECT CLT.TransID, CLT.LedgerDate, CON.ClAccountID, CLT.ClAccountID AS subclaccountid,
CLT.LineNumber, CLT.MovementType, CLT.MovementSource, CLT.CCYCode, CLT.Amount,...
February 13, 2009 at 4:35 am
Actually no, but now that I've been forced to think about it in a logical way to explain it here, I might have been making too many assumption about what...
February 12, 2009 at 6:50 am
OK thanks, that surely can't be right though! We have a bit of bad design here and there too but this particular section looks OK and it isn't an unreasonable...
February 12, 2009 at 6:07 am
Sorry should have mentioned , been there done that. It does kind of make a difference but only for a day at most and there isn't enough activity on the...
February 12, 2009 at 4:31 am
Viewing 15 posts - 1 through 15 (of 19 total)