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.DocPackFileList ====== <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 ===== TempTable - used to assemble files to be inserted into a document pack. ===== Columns ===== ^ Column ^ Type ^ Null ^ Default ^ Comment ^ | SessionID | char(20) | NULL | | | | FileDescription | char(200) | NULL | | | | DocumentTypeName | char(200) | NULL | | | | FullPath | char(200) | NULL | | | | DocumentTypeID | char(20) | NULL | | | | PageCount | integer | NULL | | | | SortOrder | integer | NULL | | | | **DocPackFileListID** | char(20) | NOT NULL | | | | OleDocumentID | char(20) | NULL | | | | Include | tinyint | NULL | | | | SinglePDF | tinyint | NULL | | | | ReportID | char(20) | NULL | | | | OwnerID | char(20) | NULL | | | | OwnerType | char(1) | NULL | | | | FileExtension | char(5) | NULL | | | | Archive | tinyint | NULL | | | | VacancyID | char(20) | NULL | | | ===== Primary Key ===== * DocPackFileListID ===== Foreign Keys ===== * No outgoing foreign keys found. ===== Referenced By ===== * No incoming foreign keys found. ===== Indexes ===== * No indexes found. ===== Triggers ===== * No triggers found. ===== Original SQL ===== <code sql> -- IQX database structure split by table -- Source: IQXDatabaseStructure - with comments.sql -- Table: "pears"."DocPackFileList" -- Table comment: TempTable - used to assemble files to be inserted into a document pack. -- Statement count: 2 CREATE GLOBAL TEMPORARY TABLE "pears"."DocPackFileList" ( "SessionID" char(20) NULL ,"FileDescription" char(200) NULL ,"DocumentTypeName" char(200) NULL ,"FullPath" char(200) NULL ,"DocumentTypeID" char(20) NULL ,"PageCount" integer NULL ,"SortOrder" integer NULL ,"DocPackFileListID" char(20) NOT NULL ,"OleDocumentID" char(20) NULL ,"Include" tinyint NULL ,"SinglePDF" tinyint NULL ,"ReportID" char(20) NULL ,"OwnerID" char(20) NULL ,"OwnerType" char(1) NULL ,"FileExtension" char(5) NULL ,"Archive" tinyint NULL ,"VacancyID" char(20) NULL ,PRIMARY KEY ("DocPackFileListID" ASC) ) ON COMMIT PRESERVE ROWS go COMMENT ON TABLE "pears"."DocPackFileList" IS 'TempTable - used to assemble files to be inserted into a document pack.' go </code> database/tables/pears_docpackfilelist.txt Last modified: 2026/08/07 19:24by 127.0.0.1