About the JobCandidate.Resume xml Column

Resumes of job candidates are stored as XML in the Resume column in the JobCandidate table.

This is a typed xml column. The schemas used for this column can be viewed at this Microsoft Web site. This column uses the Resume XML schema.

Run this query to retrieve XML instances:

USE AdventureWorks2008R2;
GO
SELECT Resume
FROM   HumanResources.JobCandidate;

See Also

Concepts