Go to the bottom.
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
! SDDL Name:	QTSYNONYMS.SDDL
!
! Purpose:      This SDDL file defines the qtsynonyms relation.
!
! Modification History:
!
!   Date       OPR      Who                       Reason
! --------   -------    ---   -------------------------------------------------
! 11/15/94    27329     SSS   Original implementation
!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!
 
LANGUAGE	FORTRAN, SQL

INCLUDE         ZSPSS_USER_TYPES.SDDL
 
RECORD  QTSYNO_TYPE
 
    DESCRIPTION       "This relation maintains a list of synonyms for the 
                       target IDs in relation qtargets.  Multiple synonyms
                       (multiple records) may appear in this relation for a 
                       specific target.  See relation 'qtargets' for more 
                       information on targets."
 

    FIELD  target_id
        TYPE TARGET_ID_TYPE
        FORM
            NAME         "TSY"
            LABEL        "TARGET ID"
        END_FORM
    END_FIELD
 

    FIELD  synonym_name
        TYPE            C30
        DESCRIPTION     "This is a synonym for the target.  It is usally a 
                        common astronomical name for the target."
        FORM
            NAME         "TSY"
            LABEL        " "  ! none
        END_FORM
    END_FIELD
 
END_RECORD
 
RELATION  qtsynonyms
    TYPE             QTSYNO_TYPE
    DESCRIPTION      "Target Name Synonyms Relation"
    SUBSYSTEM_USING  "SPSS", "TRANS", "PODPS"
    FORM
        NAME         "TSY"
    END_FORM
    INDEX  qtsynonyms_1
        TYPE         unique, clustered
        FIELDS       target_id, synonym_name
    END_INDEX
    RELATED_FIELDS  "qtargets.*"
END_RELATION
 

INSTANCE  qtsynonyms
    GLOBAL
    TYPE        QTSYNO_TYPE
END_INSTANCE

Go to the top.