is there a way to create a combinational index with regular field in the table and an element in the XML?
For ex:
CREATE TABLE Employee (EmpId INT, EmpXml XML)
INSERT INTO Employee(EmpId, EmpXml) VALUES
(1,'<Employee><FirstName>John</FirstName><LastName>Doe</LastName></Employee>')
Is there a way to index EmpId, FirstName and LastName?
thanks