Sorry Joe, I forgot that only the 2nd column from your SELECT statement is used for the static summary. But this would be a better solution anyway, just concat the fields you actually want to use for the summary, as the 2nd column in the select.
See
http://www.mssqltips.com...o-a-string-with-concat/
Eg. (you can use concat in MSSQL2012)
SELECT
Title,
CONCAT(Title,' ',FirstName,' ',MiddleName,' ',LastName) as MailingName,
FirstName,
MiddleName,
LastName
FROM Person.Person
You will of course need to reindex if you do that.
If reindexing is a problem, then you could try using the default summary type, but set the summary word length to a large number so that all words in the record are used for the summary, which you can then customize as I mentioned before.
-Harry
-Harry