Column Heading in DDS Files and DDL tables

Column Heading in DDS Files and DDL tables
Column Heading in DDS Files and DDL tables, dds to ddl, dds to sql, as400, ibmi, database modernization, column heading, dds file, ddl table,db2, db2 for i sql
Column Heading in DDS Files and DDL tables

The column heading is the name provided to each file field, which makes the file fields easy to understand.

Column Heading in DDS

In DDS files column heading can be added using COLHDG at field level.

We can define column heading in two ways

Column heading in one row in DDS files

To define the column heading in one row we should use the COLHDG('column heading') with the file field.

A          R RDDS3                                                 
A            FLD1           2P 0       COLHDG('FIELD2')            
A          K FLD1                                                  

And when we see the above code column heading

Column heading in multiple rows in DDS files

To define the column heading in multiple rows we should use the following with the file field.

  • COLHDG('column heading1' 'column heading2' 'column heading3')
  • A          R RDDS3                                                    
    A            FLD1          10A         COLHDG('FIRST' 'TEXT' 'FLD')   
    A          K FLD1                                                     

    And when we see the above code column heading

    Column Heading in DDL

    In DDS files column heading can be added using LABEL ON at field level.

    We can define column heading in two ways

    Column heading in one row in DDL tables

    To define the column heading in one row we should use the FieldName IS 'Column Name' with the file field.

    CREATE TABLE DDL4 (                                         
      FLD1 DECIMAL(2) NOT NULL WITH DEFAULT                     
                      )    RCDFMT RDDL4;                                      
                                                  
       LABEL ON DDL4(                                           
        FLD2 IS 'FIELD2'   );  

    And when we see the above code column heading

    Column heading in multiple rows in DDL tables

    To define the column heading in multiple rows we should use the FieldName IS 'Column Name1 Column Name2 Column Name3 with the file field.

    CREATE TABLE DDL4 (                                         
      FLD1 CHAR(10) NOT NULL WITH DEFAULT                     
                      )    RCDFMT RDDL4;                                      
                                                  
       LABEL ON DDL4(                                           
        FLD1 IS 'FIRST               TEXT                FLD'  ) 

    And when we see the above code column heading

    NOTE: The size of all the column headings in DDL tables should be 20 characters Even if the size is less than 20 characters then also blanks should be provided in place of those characters and only then a second column heading should be given.

    Related Post

    You may like these posts

    • SQL HEX scalar function in DB2 for i SQL HEX The HEX function returns a hexadecimal value as a character string. Syntax HEX(expression) where, expression is any built-in data…
    • SQL GREATEST scalar function in DB2 for i SQL GREATEST The GREATEST function returns the maximum value in a set of values. Syntax GREATEST(arg1, arg2, arg3, ...) Example #1:…
    • SQL FLOOR scalar function in DB2 for i SQL FLOOR FLOOR function is also called as greatest integer function and returns the largest integer less than or equal to the passed argum…
    • SQL GRAPHIC scalar function in DB2 for i SQL GRAPHIC The GRAPHIC function returns a fixed-length graphic string of a value of different data type. Integer to Graphic GRAPHIC(in…
    • SQL EXTRACT scalar function in DB2 for i SQL EXTRACT The EXTRACT function returns a portion of a date or timestamp based on its arguments. The result can be null if the passed…
    • SQL FIRST_DAY scalar function in DB2 for i SQL FIRST_DAY The FIRST_DAY function returns the 1st day of the month of the passed argument. Syntax FIRST_DAY(expression) The arg…

    Post a Comment