Yes!Excellent. Thank you Harsh!DECLARE @XML VARCHAR(8000)SET @XML = '<InternationalAddress><IntAddressLine>10</IntAddressLine> <IntAddressLine>Red Street</IntAddressLine> <IntAddressLine>Middlesbrough</IntAddressLine> <IntAddressLine>Cleveland</IntAddressLine> <Test type="123">Peso</Test> <Test type="456">Peso2</Test> <Country>Test</Country> <InternationalPostCode>Test</InternationalPostCode> </InternationalAddress>'DECLARE @docHandle INTEXEC sp_xml_preparedocument @docHandle OUTPUT, @XMLSELECT *FROM OPENXML(@docHandle, '/InternationalAddress', 2) WITH ( IntAddressLine1 VARCHAR(200) 'IntAddressLine[1]', IntAddressLine2 VARCHAR(200) 'IntAddressLine[2]', IntAddressLine3 VARCHAR(200) 'IntAddressLine[3]', IntAddressLine4 VARCHAR(200) 'IntAddressLine[4]', Type1 Varchar(34) 'Test[1]', TestType1 Varchar(34) 'Test[1]/@type', Type2 Varchar(34) 'Test[2]', TestType2 Varchar(34) 'Test[2]/@type' ) EXEC sp_xml_removedocument @docHandle
E 12°55'05.25"N 56°04'39.16"