====== pears.TempMatchCandidate ======
Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.
===== Description =====
Temporary table used in skill / availability matching
===== Columns =====
^ Column ^ Type ^ Null ^ Default ^ Comment ^
| **TempMatchCandidateID** | char(20) | NOT NULL | | |
| VacancyID | char(20) | NOT NULL | | |
| PersonID | char(20) | NOT NULL | | |
| MatchScore | float | NOT NULL | | Possible availability scores 1, General 1.01, Explicit 1.02 |
| Highlight | smallint | NULL | | |
===== Primary Key =====
* TempMatchCandidateID
===== Foreign Keys =====
* No outgoing foreign keys found.
===== Referenced By =====
* No incoming foreign keys found.
===== Indexes =====
^ Name ^ Type ^ Columns ^ Detail ^
| TempMatchCand_Vac | Index | VacancyID | |
===== Triggers =====
* No triggers found.
===== Original SQL =====
-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."TempMatchCandidate"
-- Table comment: Temporary table used in skill / availability matching
-- Statement count: 4
CREATE GLOBAL TEMPORARY TABLE "pears"."TempMatchCandidate" (
"TempMatchCandidateID" char(20) NOT NULL
,"VacancyID" char(20) NOT NULL
,"PersonID" char(20) NOT NULL
,"MatchScore" float NOT NULL
,"Highlight" smallint NULL
,PRIMARY KEY ("TempMatchCandidateID" ASC)
) NOT TRANSACTIONAL
go
COMMENT ON COLUMN "pears"."TempMatchCandidate"."MatchScore" IS
'Possible availability scores 1, General 1.01, Explicit 1.02'
go
COMMENT ON TABLE "pears"."TempMatchCandidate" IS
'Temporary table used in skill / availability matching'
go
CREATE INDEX "TempMatchCand_Vac" ON "pears"."TempMatchCandidate"
( "VacancyID" )
go