Table of Contents



pears.ExtPhone

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

Description

non standard

Columns

Column Type Null Default Comment
phoneid char(20) NULL
whoid char(20) NULL
who char(2) NULL
number char(50) NULL
type char(1) NULL
flag char(4) NULL

Primary Key

Foreign Keys

Referenced By

Indexes

Triggers

Original SQL

-- IQX database structure split by table
-- Source: IQXDatabaseStructure - with comments.sql
-- Table: "pears"."ExtPhone"
-- Table comment: non standard
-- Statement count: 2
 
CREATE GLOBAL TEMPORARY TABLE "pears"."ExtPhone" (
    "phoneid"                        CHAR(20) NULL
   ,"whoid"                          CHAR(20) NULL
   ,"who"                            CHAR(2) NULL
   ,"number"                         CHAR(50) NULL
   ,"type"                           CHAR(1) NULL
   ,"flag"                           CHAR(4) NULL
) ON COMMIT PRESERVE ROWS
GO
 
 
COMMENT ON TABLE "pears"."ExtPhone" IS 
	'non standard'
GO