====== pears.TTBroadbean ====== Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. ===== Description ===== Temporary table. Used to assemble Vacancy details when posting of Vacancies to Broadbean ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | **Instance** | char(20) | NOT NULL | | | | JobTitle | char(65) | NULL | | | | Industry | char(100) | NULL | | | | JobType | char(9) | NULL | | | | VacancyID | char(20) | NULL | | | | BroadbeanLocationID | integer | NULL | | | | JobRef | char(20) | NULL | | | | Duration | char(20) | NULL | | | | StartDate | char(20) | NULL | | | | Salary_From | integer | NULL | | | | Salary_To | integer | NULL | | | | Salary_per | char(5) | NULL | | | | Salary_Benefits | char(50) | NULL | | | | Skills | char(65) | NULL | | | | Description | char(6000) | NULL | | | | Continent | integer | NULL | | | | Region | integer | NULL | | | | Country | integer | NULL | | | | Place | integer | NULL | | | | SubPlace | integer | NULL | | | | SubSubPlace | integer | NULL | | | | SubSubSubPlace | integer | NULL | | | | Office | char(50) | NULL | | | | consultant | char(50) | NULL | | | | Team | char(50) | NULL | | | | createtime | timestamp | NULL | | | | summary | char(600) | NULL | | | | clientdetails | char(100) | NULL | | | | Profile | char(100) | NULL | | | | closetime | timestamp | NULL | | | | JobOffer | char(100) | NULL | | | | id | char(20) | NULL | | | | Salary_Currency | char(20) | NULL | | | | RedirectOnCompletion | char(200) | NULL | | | ===== Primary Key ===== * Instance ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== * No indexes found. ===== Triggers ===== * No triggers found. ===== Original SQL ===== -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."TTBroadbean" -- Table comment: Temporary table. Used to assemble Vacancy details when posting of Vacancies to Broadbean -- Statement count: 2 CREATE GLOBAL TEMPORARY TABLE "pears"."TTBroadbean" ( "Instance" char(20) NOT NULL ,"JobTitle" char(65) NULL ,"Industry" char(100) NULL ,"JobType" char(9) NULL ,"VacancyID" char(20) NULL ,"BroadbeanLocationID" integer NULL ,"JobRef" char(20) NULL ,"Duration" char(20) NULL ,"StartDate" char(20) NULL ,"Salary_From" integer NULL ,"Salary_To" integer NULL ,"Salary_per" char(5) NULL ,"Salary_Benefits" char(50) NULL ,"Skills" char(65) NULL ,"Description" char(6000) NULL ,"Continent" integer NULL ,"Region" integer NULL ,"Country" integer NULL ,"Place" integer NULL ,"SubPlace" integer NULL ,"SubSubPlace" integer NULL ,"SubSubSubPlace" integer NULL ,"Office" char(50) NULL ,"consultant" char(50) NULL ,"Team" char(50) NULL ,"createtime" timestamp NULL ,"summary" char(600) NULL ,"clientdetails" char(100) NULL ,"Profile" char(100) NULL ,"closetime" timestamp NULL ,"JobOffer" char(100) NULL ,"id" char(20) NULL ,"Salary_Currency" char(20) NULL ,"RedirectOnCompletion" char(200) NULL ,PRIMARY KEY ("Instance" ASC) ) ON COMMIT PRESERVE ROWS go COMMENT ON TABLE "pears"."TTBroadbean" IS 'Temporary table. Used to assemble Vacancy details when posting of Vacancies to Broadbean' go