The following SQL is a possible solution for you:
Code:
select
a.value('(../../name)[1]','varchar(128)') as [CHILDNAME]
,a.value('artno[1]','varchar(32)') as [ARTICLE_NUMBER]
,a.value('description[1]','varchar(1024)') as [DESCRIPTION]
,a.value('price[1]','money') as [PRICE]
from @x.nodes('//article') X(A)
To discover more about XQuery and XPath,
click here.