Table of Contents



pears.DocPackFileList

Generated schema reference. Regenerate this page from the SQL unload; keep hand-maintained business notes in the narrative namespace.

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

Foreign Keys

Referenced By

Indexes

Triggers

Original 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