Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:	QGDESCRIPT.SDDL
!
! Purpose:      This SDDL file defines the qgdescript relation.
!
! Modification History:
!
!   Date        PR     Who                       Reason
! --------   -------   ---   -------------------------------------------------
! 12/ 2/94   27329     SXT   Original implementation
! 08/13/96   29960     MRB   Added C output and refinements
! 03/12/99   38555     MRB   Removed instruction versions (version_num field)
! 08/30/00   38961     MRB   Removed 25 fields, one text field now
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!

LANGUAGE  C, FORTRAN, SQL 

INCLUDE  ZSPSS_USER_TYPES.SDDL
 
RECORD  QGDES_TYPE
 
!------------------------------------------------------------------------------
!
!   RECORD INFORMATION
!
!------------------------------------------------------------------------------
 
 
    DESCRIPTION       "This relation contains the description of each
                      instruction. The instruction description is SCPL 
    	  	      commentatry at the top of an instruction.  It is
		      not used by expansion.  It is populated by 
		      instruct -clp during the process of parsing and 
		      storing the instructions.  It is queried by instruct 
                      -display when extracting an instruction from the db."
 
!------------------------------------------------------------------------------
!
!   FIELD INFORMATION
!
!------------------------------------------------------------------------------
 

    FIELD  instr_name
        TYPE INSTRUCTION_NAME_TYPE
    END_FIELD
 

    FIELD  instr_descr
        TYPE SYBASE_TEXT
        Description    "General description of the instruction.
                        This text comes from the #REMARK in the
                        declaration block of an instruction.  The 
                        declartion block is after #INSTRUCTION
                        and prior to #BEGIN. "
    END_FIELD
 
 
END_RECORD
 
 
!------------------------------------------------------------------------------
!
!   RELATION DECLARATION
!
!------------------------------------------------------------------------------
 
 
RELATION  qgdescript
 
    TYPE             QGDES_TYPE
 
    DESCRIPTION      "Instruction Description Comments Relation"
 
    SUBSYSTEM_USING  "SPSS", "SCS", "IM"
    
    RELATED_FIELDS  "qgtext.*"
 
    INDEX  qgdescript_1
        TYPE         unique, clustered
        FIELDS       instr_name
    END_INDEX
 
END_RELATION
 
!------------------------------------------------------------------------------
!
!   INSTANCE DECLARATION
!
!------------------------------------------------------------------------------
 
 
INSTANCE  qgdescript
 
    GLOBAL
 
    TYPE        QGDES_TYPE
 
END_INSTANCE

Go to the top.