i am trying to retrieve specific data from XML file to Database table through query but i am not able to Specify the particlular data in Query .. plz can help ?
sample Query
SELECT *
FROM OPENROWSET (BULK
'E:\EWX00000000003186\data.xml', SINGLE_BLOB) AS TEMP
but i want only one column data not all
example
SELECT A1
FROM OPENROWSET (BULK
'E:\EWX00000000003186\data.xml', SINGLE_BLOB) AS TEMP
Thanks in Advance