Database reference - SAMPLE

SAMPLE -  tables -  JESSE.CL_SCHED

Description

not sure what this table is for...

Table properties

namevalue
nameJESSE.CL_SCHED 
created3/16/2010 8:49:01 PM 
tablespaceUSERSPACE1 
statusnormal 
percent freeno statistics
rows5
pages1
average row length29

Columns

columndatatypedefaultnullsPKFKUQcomment
CLASS_CODE  CHARACTER (7)           same goes for the column... 
DAY  SMALLINT (2)           hi there 
STARTING  TIME (3)           start of what? 
ENDING  TIME (3)           end of what? 

Sample rows

CLASS_CODEDAYSTARTINGENDING
042:BF   12:10:00  14:00:00 
553:MJA  10:30:00  11:00:00 
543:CWM  09:10:00  10:30:00 
778:RES  12:10:00  14:00:00 
044:HD   17:12:30  18:00:00 

Code

CREATE TABLE "JESSE   "."CL_SCHED"  (
          "CLASS_CODE" CHAR(7) , 
          "DAY" SMALLINT , 
          "STARTING" TIME , 
          "ENDING" TIME )   
         IN "USERSPACE1" ; 

COMMENT ON TABLE "JESSE   "."CL_SCHED" IS 'not sure what this table is for...';

COMMENT ON COLUMN "JESSE   "."CL_SCHED"."CLASS_CODE" IS 'same goes for the column...';

COMMENT ON COLUMN "JESSE   "."CL_SCHED"."DAY" IS 'hi there';

COMMENT ON COLUMN "JESSE   "."CL_SCHED"."ENDING" IS 'end of what?';

COMMENT ON COLUMN "JESSE   "."CL_SCHED"."STARTING" IS 'start of what?';






Documentation generated by SqlSpec