sqlsql-serversql-server-openxml

The multi-part identifier could not be bound.[4104]


I'm updating a table through XML file but when I execute the sql code it throw this error :-

enter image description here

And here is my code

IF(@PreppedUpdateModelXml is NULL OR @PreppedUpdateModelXml.exist('*') = 0)
            BEGIN
                --Create an internal representation of the XML document.
                EXEC sp_xml_preparedocument @PID OUTPUT,@PreppedUpdateModelXml

                UPDATE EquipmentModel
                SET [Category] = em.[Category]
                SELECT * FROM OPENXML (@PID, '/Root/NewDataSet',2)
                WITH ([Category] VARCHAR(50), [ModelID] INT) AS em
                WHERE EquipmentModel.ModelID = em.ModelID
            END

Solution

  • Thats not the right syntax to update table with Openxml result, try this way

    UPDATE e
    SET    [Category] = em.[Category]
    FROM   EquipmentModel e
           JOIN OPENXML (@PID, '/Root/NewDataSet', 2)
                   WITH ([Category] VARCHAR(50),
                         [ModelID]  INT) em
             ON e.ModelID = em.ModelID