HumanResources.JobCandidate Table
Information
| Name | JobCandidate |
| Schema | HumanResources |
| Row Count | 0 |
| Data Size | |
| Index Size | |
| Reserved Size | |
| Unused Size | |
| Created | 29.3.2010. 21:58:18 |
| Modified | 29.3.2010. 21:58:54 |
Extended Properties
| Name | Type | Property Name | Value |
| JobCandidate | TABLE | MS_Description | Résumés submitted to Human Resources by job applicants. |
Columns
| PK | Key | Identity | Name | Data Type | Allow Nulls | Collation | References | Default | Computed | Compute Expression |
|   |   |   | JobCandidateID | int |   | | | |   | |
| |   |   | EmployeeID | int |   | | HumanResources.Employee.EmployeeID | |   | |
| |   |   | Resume | xml |   | | | |   | |
| |   |   | ModifiedDate | datetime |   | | | (getdate()) |   | |
Indexes
Foreign Key Constraints
SQL Script
CREATE TABLE [HumanResources].[JobCandidate] (
[JobCandidateID] int NOT NULL IDENTITY,
[EmployeeID] int NULL,
[Resume] xml NULL,
[ModifiedDate] datetime NOT NULL DEFAULT (getdate())
);
CREATE INDEX [IX_JobCandidate_EmployeeID] on [HumanResources].[JobCandidate]([EmployeeID]);