Viewing 15 posts - 1,816 through 1,830 (of 2,640 total)
It's difficult which ever way you do it, but the showplan text is the easiest method to post a plan. I normally start with graphical plans as it's easy to...
September 21, 2006 at 5:28 am
I generally don't like to see spools but it's a matter of scale - did you find it because the query runs poorly, in which case you need to make...
September 21, 2006 at 1:01 am
Always go full 64bit if you have that option. I've seen postings that suggest running 32bit SQL on 64bit o/s has a few performance issues ( why you'd want to...
September 20, 2006 at 5:43 am
Welcome to query tuning - you've answered your own question - using a temp table is better so do it that way < grin >
( please don't use select * ...
September 20, 2006 at 5:34 am
I'd love to know where the amazing advice about only having a clustered index on an identity comes from !!! God help us!!
I would hope that each table has a...
September 20, 2006 at 5:28 am
with due respect I think you're missing the point. To use an indexed view to tune a query you don't then add the view in the query - the idea...
September 18, 2006 at 8:16 am
I've been here and the solution may take some time. You can check the procedure cache to see your plan being reused ( or not ) the different SET options...
September 18, 2006 at 8:07 am
Given an ideal situation I prefer to have all my mdf and ldf files on the same ( seperate ) drive arrays, including the system databases, makes things tidy. Tempdb is...
September 18, 2006 at 7:59 am
You can't use order by statements in a view ( not sure if this is part of ANSI standards but I think so ), a bug within sql 2000 allowed...
September 18, 2006 at 6:00 am
Sorry, there's no magic pill, I've been doing this around 14 years now, performance and optimisation is so much a case of "it depends" sadly most of us learn by...
September 6, 2006 at 12:04 pm
when views contain joins and the view becomes part of a join then sometimes things don't work out quite as you might expect. for a simple view there's no difference.
September 6, 2006 at 11:54 am
cool! It's fun extracting all this stuff isn't it???? In profiler you need to choose events, performance, show plan statistics and in the data make sure you include the binary...
September 1, 2006 at 7:19 am
I suspect you may have a serious misunderstanding of some SQL basics. Be aware that linked server queries can exhibit some very unfriendly habits - you're better off executing remote...
September 1, 2006 at 6:48 am
Viewing 15 posts - 1,816 through 1,830 (of 2,640 total)