Views [HumanResources].[vJobCandidateEmployment]
Displays the content from each employement history related element in the xml column Resume in the HumanResources.JobCandidate table. The content has been localized into French, Simplified Chinese and Thai. Some data may not display correctly unless supplemental language support is installed.
PropertyValue
CollationSQL_Latin1_General_CP1_CI_AS
ANSI Nulls OnTrue
Quoted Identifier OnTrue
Created13:14:55 14 marca 2012
Last Modified13:14:55 14 marca 2012
NameData TypeMax Length (Bytes)Identity
JobCandidateIDint40 - 0
Emp.StartDatedatetime8
Emp.EndDatedatetime8
Emp.OrgNamenvarchar(100)200
Emp.JobTitlenvarchar(100)200
Emp.Responsibilitynvarchar(max)max
Emp.FunctionCategorynvarchar(max)max
Emp.IndustryCategorynvarchar(max)max
Emp.Loc.CountryRegionnvarchar(max)max
Emp.Loc.Statenvarchar(max)max
Emp.Loc.Citynvarchar(max)max

CREATE VIEW [HumanResources].[vJobCandidateEmployment]
AS
SELECT
   jc.[JobCandidateID]
   ,CONVERT(datetime, REPLACE([Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.StartDate)[1]'
, 'nvarchar(20)') ,'Z', ''), 101) AS [Emp.StartDate]
   ,CONVERT(datetime, REPLACE([Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.EndDate)[1]'
, 'nvarchar(20)') ,'Z', ''), 101) AS [Emp.EndDate]
   ,[Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.OrgName)[1]'
, 'nvarchar(100)') AS [Emp.OrgName]
   ,[Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.JobTitle)[1]'
, 'nvarchar(100)') AS [Emp.JobTitle]
   ,[Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.Responsibility)[1]'
, 'nvarchar(max)') AS [Emp.Responsibility]
   ,[Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.FunctionCategory)[1]'
, 'nvarchar(max)') AS [Emp.FunctionCategory]
   ,[Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.IndustryCategory)[1]'
, 'nvarchar(max)') AS [Emp.IndustryCategory]
   ,[Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.Location/Location/Loc.CountryRegion)[1]'
, 'nvarchar(max)') AS [Emp.Loc.CountryRegion]
   ,[Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.Location/Location/Loc.State)[1]'
, 'nvarchar(max)') AS [Emp.Loc.State]
   ,[Employment].ref.value(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
       (Emp.Location/Location/Loc.City)[1]'
, 'nvarchar(max)') AS [Emp.Loc.City]
FROM [HumanResources].[JobCandidate] jc
CROSS APPLY jc.[Resume].nodes(N'declare default element namespace "http://schemas.microsoft.com/sqlserver/2004/07/adventure-works/Resume";
   /Resume/Employment'
) AS Employment(ref);
GO
EXEC sp_addextendedproperty N'MS_Description', N'Displays the content from each employement history related element in the xml column Resume in the HumanResources.JobCandidate table. The content has been localized into French, Simplified Chinese and Thai. Some data may not display correctly unless supplemental language support is installed.', 'SCHEMA', N'HumanResources', 'VIEW', N'vJobCandidateEmployment', NULL, NULL
GO