I found the solution by trial and error...-- Work the SQL Server 2005 waySELECT T.c.query('emailaddress').value('.[1]', 'nvarchar(max)'), T.c.query('name').value('.[1]', 'varchar(50)'), T.c.query('company').value('.[1]', 'nvarchar(max)'), T.c.query('phone[1]').value('.[1]', 'nvarchar(max)') as p1, T.c.query('phone[2]').value('.[1]', 'nvarchar(max)') as p2FROM @2k5.nodes('/campaignrequest/requestor') AS T(c)What I can't find in Books Online, is the what [x] means when adding to the query('phone part, and when adding it to the .value('.[1] part.And by some more TAE, I got SQL 2000 to work too.WITH ( emailaddress VARCHAR(100) 'emailaddress', name VARCHAR(100) 'name', company VARCHAR(100) 'company', phone1 VARCHAR(100) 'phone[1]', phone2 VARCHAR(100) 'phone[2]' )
E 12°55'05.25"N 56°04'39.16"