Properties

Name: EMP_PHOTO 
Schema: USER 
Status: NORMAL 
Create time: 16.06.2006 
Tablespace: USERSPACE1 
Index tablespace:  
Long tablespace:  
Base table schema:  
Base table:  
Rowtype schema:  
Rowtype name:  
Description:  

Columns

Name Type Length Scale Codepage Identity Nulls Default Description
  EMPNO  CHARACTER  1251         
  PHOTO_FORMAT  VARCHAR  10  1251         
  PICTURE  BLOB  102400         
Total: 3 column(s)

Indexes

Name Unique rule Type Colnames Description
  SYSIBM.SQL060616220800090  PRIMARY  REGULAR  EMPNO, PHOTO_FORMAT   
Total: 1 index(s)

Autherisations

Grantor Grantee Authorities
  SYSIBM  USER  CONTROL=HELD, ALTER=HELD_GRANTABLE, DELETE=HELD_GRANTABLE, INDEX=HELD_GRANTABLE, INSERT=HELD_GRANTABLE, SELECT=HELD_GRANTABLE, REFERENCE=HELD_GRANTABLE, UPDATE=HELD_GRANTABLE 
Total: 1 autherisation(s)

SQL

CREATE TABLE "USER    "."EMP_PHOTO"  (
          "EMPNO" CHAR(6) NOT NULL ,
          "PHOTO_FORMAT" VARCHAR(10) NOT NULL ,
          "PICTURE" BLOB(102400) LOGGED NOT COMPACT )  
         IN "USERSPACE1" ;

ALTER TABLE "USER    "."EMP_PHOTO"
    ADD PRIMARY KEY
        ("EMPNO",
         "PHOTO_FORMAT");

See Also

List of tables