DECLARE @art AS XML(ArticleNotificationSchema) SET @art = ' Hi Jacob, Please note that your article XML Workshop VII - Validating values with SCHEMA is scheduled for publication on 2007-01-01Z. ' /* Read the entire text from the "ArticleNotification" element. */ SELECT x.a.value('(data(/))[1]', 'varchar(max)') AS Summary FROM @art.nodes('/ArticleNotification') x(a) /* OUTPUT: Summary --------------------------------------------------- Hi Jacob, Please note that your article XML Workshop VII - Validating values with SCHEMA is scheduled for publication on 2007-01-01Z. (1 row(s) affected) */