Table of Contents



pears.WPKMultiSelection

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

Description

Temp Table - used to list records selected on a Woodpecker grid.

Columns

Column Type Null Default Comment
GroupID char(20) NOT NULL
RecordID char(20) NOT NULL

Primary Key

Foreign Keys

Referenced By

Indexes

Triggers

Original SQL

-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."WPKMultiSelection"
-- Table comment: Temp Table - used to list records selected on a Woodpecker grid.
-- Statement count: 2
 
CREATE GLOBAL TEMPORARY TABLE "pears"."WPKMultiSelection" (
    "GroupID"                        CHAR(20) NOT NULL
   ,"RecordID"                       CHAR(20) NOT NULL
   ,PRIMARY KEY ("GroupID" ASC,"RecordID" ASC) 
) ON COMMIT PRESERVE ROWS
GO
 
 
COMMENT ON TABLE "pears"."WPKMultiSelection" IS 
	'Temp Table - used to list records selected on a Woodpecker grid.'
GO