IBM Books

Administrative API Reference

SQLE-NODE-LOCAL

This structure is used to catalog local nodes (see sqlectnd - Catalog Node).

Table 36. Fields in the SQLE-NODE-LOCAL Structure
Field Name Data Type Description
INSTANCE_NAME CHAR(8) Name of an instance.
Note:The character fields passed in this structure must be null terminated or blank filled up to the length of the field.

Language Syntax

C Structure



/* File: sqlenv.h */
/* Structure: SQLE-NODE-LOCAL */
/* ... */
SQL_STRUCTURE sqle_node_local
{
  char           instance_name[SQL_INSTNAME_SZ+1];
};
/* ... */
 

COBOL Structure



* File: sqlenv.cbl
01 SQL-NODE-LOCAL.
    05 SQL-INSTANCE-NAME      PIC X(8).
    05 FILLER                 PIC X.
*
 


[ Top of Page | Previous Page | Next Page | Table of Contents | Index ]

[ DB2 List of Books | Search the DB2 Books ]