Viewing 15 posts - 4,906 through 4,920 (of 18,926 total)
Jim Murphy (7/13/2011)
Ninja's_RGR'us (7/13/2011)
Jim Murphy (7/13/2011)
SQLRNNR (7/13/2011)
And whack my thoroughly informative answer?
I'm afraid so. Although you answer was great, and fully answered the question, I've tried to google both...
July 13, 2011 at 1:51 pm
Quite possible. That section was added like 10 years after the original site.
July 13, 2011 at 1:46 pm
Here's a sample concat script. I can't adapt it for you needs without table structure and sample data.
SELECT
T.name,
STUFF((
...
July 13, 2011 at 1:45 pm
What do you mean by separate?
July 13, 2011 at 1:42 pm
That explains why I never had that warning and why it's not fixing itself.!!
Time check for fragmentation, run update_stats on all tables with fullscan if you have a big enough...
July 13, 2011 at 1:37 pm
Can you create a sample data set (select with union alls) and post what you have in a rdl file? I'm not too sure I understand what you need...
July 13, 2011 at 1:32 pm
Jim Murphy (7/13/2011)
SQLRNNR (7/13/2011)
And whack my thoroughly informative answer?
I'm afraid so. Although you answer was great, and fully answered the question, I've tried to google both the OP question...
July 13, 2011 at 12:58 pm
...Still waiting on (at the very least) the actual execution plan and index ddl.
July 13, 2011 at 12:55 pm
ejoell 66477 (7/13/2011)
July 13, 2011 at 12:50 pm
What do this return for this DB?
SELECT
is_auto_create_stats_on
, is_auto_update_stats_on
, is_auto_update_stats_async_on
, *
FROM sys.databases
Stats should pretty much take care of themselves!
July 13, 2011 at 12:48 pm
TheSQLGuru (7/13/2011)
similar to that
Care to share (even if only in private)?
July 13, 2011 at 12:27 pm
I didn't say useless index, I said useless lookup after the index seek. Whenever you have an index seek and then a bookmark lookup to fetch only 1 more...
July 13, 2011 at 12:22 pm
There's still loads wrong with this.
You still have a missing stats warning.
The plan optimisation times out rather than complete
On the Score table the server estimates 1K rows but finds 65K,...
July 13, 2011 at 10:30 am
rgtft (7/13/2011)
July 13, 2011 at 9:47 am
Ninja's_RGR'us (7/13/2011)
I remember doing testing in the past with conclusive results but further tests show very little improvement on another...
July 13, 2011 at 9:46 am
Viewing 15 posts - 4,906 through 4,920 (of 18,926 total)