Show pageOld revisionsBacklinksExport to PDFFold/unfold allBack to top This page is read only. You can view the source, but not change it. Ask your administrator if you think this is wrong. ====== pears.TempCustomJobRate ====== <WRAP center round info> Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace. </WRAP> ===== Description ===== Temporary table used in Estimating shifts revenue ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | GroupID | char(20) | NOT NULL | | | | TempPayBandID | char(20) | NOT NULL | | | | PayRate | double | NULL | | | | ChargeRate | double | NULL | | | | StartDate | date | NULL | | | | EndDate | date | NULL | | | | Grade | char(4) | NULL | | | | Filter1 | char(4) | NULL | | | | Filter2 | char(4) | NULL | | | | Filter3 | char(4) | NULL | | | ===== Primary Key ===== * No primary key found in generated SQL. ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== ^ Name ^ Type ^ Columns ^ Detail ^ | TempCustomJobRateGroup | Index | GroupID | | ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."TempCustomJobRate" -- Table comment: Temporary table used in Estimating shifts revenue -- Statement count: 3 CREATE GLOBAL TEMPORARY TABLE "pears"."TempCustomJobRate" ( "GroupID" char(20) NOT NULL ,"TempPayBandID" char(20) NOT NULL ,"PayRate" double NULL ,"ChargeRate" double NULL ,"StartDate" date NULL ,"EndDate" date NULL ,"Grade" char(4) NULL ,"Filter1" char(4) NULL ,"Filter2" char(4) NULL ,"Filter3" char(4) NULL ) ON COMMIT PRESERVE ROWS go COMMENT ON TABLE "pears"."TempCustomJobRate" IS 'Temporary table used in Estimating shifts revenue' go CREATE INDEX "TempCustomJobRateGroup" ON "pears"."TempCustomJobRate" ( "GroupID" ) go </code> database/tables/pears_tempcustomjobrate.txt Last modified: 2026/08/07 19:24by 127.0.0.1