Extract XML data with SQL Server

I had FHIR resource (https://www.hl7.org/fhir/) saved as XML in a SQL server database. After bit of a struggle found the way to extract data from XML, eg Given below to extract the FHIR resource status,

;WITH XMLNAMESPACES ('http://hl7.org/fhir' as X) select XMLDataColumn.value('(/X:FHIR_RESOURCE/X:status/@value)[1]', 'nvarchar(max)') as FHIR_Resource_Status
from FHIR_Resource_Table

Advertisement

About buminda

buminda.com
This entry was posted in FHIR, Uncategorized, xmlns. Bookmark the permalink.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s