CREATE DB2CONN

Define a DB2CONN in the local system.

Syntax

Warning: System commands are powerful as they provide information about the state of the system and allow changes to be made to it. System commands should be used only by authorized applications and users.

Activate security checks on commands by specifying the XCMD system initialization parameter and by ensuring that command security checking is active for the transaction (either by specifying CMDSEC(YES) on the TRANSACTION resource definition or by specifying ALWAYS on the CMDSEC system initialization parameter).

CREATE DB2CONN

Read syntax diagramSkip visual syntax diagramCREATE DB2CONN( data-value) ATTRIBUTES( data-value)ATTRLEN( data-value)LOGNOLOGLOGMESSAGE( cvda)
CREATE DB2CONN attribute values
Read syntax diagramSkip visual syntax diagramDESCRIPTION( char58)CONNECTERROR( sqlcode)CONNECTERROR( abend)DB2GROUPID( char4)DB2ID( char4)MSGQUEUE1(CDB2)MSGQUEUE1( char4)MSGQUEUE2( char4)MSGQUEUE3( char4)NONTERMREL(YES)NONTERMREL(NO)PURGECYCLE( 0,30)PURGECYCLE( 0-59,5-59)RESYNCMEMBER(YES)RESYNCMEMBER(NO)REUSELIMIT( 1000)REUSELIMIT( 0-10000)SIGNID( char8)STANDBYMODE(RECONNECT)STANDBYMODE(NOCONNECT)STANDBYMODE(CONNECT)STATSQUEUE(CDB2)STATSQUEUE( char4)TCBLIMIT( 12)TCBLIMIT( 4-2000)THREADERROR( n906d)THREADERROR( abend)THREADERROR( n906)ACCOUNTREC(NONE)ACCOUNTREC(UOW)ACCOUNTREC(TASK)ACCOUNTREC(TXID)AUTHID( char8)AUTHTYPE(USERID)AUTHTYPE(GROUP)AUTHTYPE(SIGNID)AUTHTYPE(TERM)AUTHTYPE(TXID)AUTHTYPE(OPID)DROLLBACK(YES)DROLLBACK(NO)PLAN( char8)PLANEXITNAME(DSNCUEXT)PLANEXITNAME( char8)PRIORITY(HIGH)PRIORITY(EQUAL)PRIORITY(LOW)THREADLIMIT( 3)THREADLIMIT( 3-2000)THREADWAIT(YES)THREADWAIT(NO)COMAUTHID( char8)COMAUTHTYPE(USERID)COMAUTHTYPE(GROUP)COMAUTHTYPE(SIGNID)COMAUTHTYPE(TERM)COMAUTHTYPE(TXID)COMAUTHTYPE(USER)COMTHREADLIM( 1)COMTHREADLIM( 0-2000)

Conditions: ILLOGIC, INVREQ, LENGERR, NOTAUTH

NOHANDLE, RESP, and RESP2 are common options that can be added to all EXEC CICS commands to process error conditions. They are not explicitly included in the command syntax diagram and option descriptions. For information about these common options and EXEC CICS command syntax, see EXEC CICS command format and programming considerations.

Note to COBOL programmers: In the preceding syntax, you must use ATTRIBUTES(data-area) instead of ATTRIBUTES(data-value).

Description

The CREATE DB2CONN command installs a DB2CONN definition with the attribute specified on the command. It does not use a resource definition stored in the CSD. If there is already a DB2CONN in the local CICS® region, the new definition replaces the old one; if not, the new definition is added.

A sync point is implicit in CREATE DB2CONN processing, except when an exception condition is detected early in processing the command. Uncommitted changes to recoverable resources made up to that point in the task are committed if the CREATE executes successfully, and rolled back if not.

See Using EXEC CICS CREATE commands to define resources for other general rules that govern CREATE commands.

The CREATE commands are not audited because their actions are recorded by other messages.

Options

ATTRIBUTES(data-value)
Specifies the attributes of the DB2CONN that is being added. The list of attributes must be coded as a single character string using the syntax shown in DB2CONN attributes. See The ATTRIBUTES option for general rules for specifying attributes, and DB2CONN resources for details about specific attributes.
Note: You can assign default values for all attributes of a DB2CONN definition by specifying an ATTRLEN value of 0. You still need to specify the ATTRIBUTES option, however, even though its value is not used.
ATTRLEN(data-value)
Specifies the length in bytes of the character string supplied in the ATTRIBUTES option, as a halfword binary value. The length can be from 0 to 32767.
DB2CONN(data-value)
Specifies the 8-character name of the DB2CONN definition to be added to the CICS region.
LOGMESSAGE(cvda)
Specifies whether CICS logs the attributes used for the resource that is created. CVDA values are as follows:
LOG
The resource attributes are logged to the CSDL transient data queue.
NOLOG
The resource attributes are not logged.

Conditions

ILLOGIC
RESP2 values:
2
The command cannot be executed because an earlier CONNECTION or TERMINAL pool definition has not yet been completed.
INVREQ
RESP2 values:
n
A syntax error occurred in the ATTRIBUTES string, or an error occurred during either the discard or resource definition phase of the processing. See RESP2 values for CREATE and CSD commands for information about RESP2 values.
7
The LOGMESSAGE CVDA value is not valid.
200
The command was executed in a program defined with an EXECUTIONSET value of DPLSUBSET or a program invoked from a remote system by a distributed program link without the SYNCONRETURN option.
LENGERR
RESP2 values:
1
The length you have specified in ATTRLEN is negative.
NOTAUTH
RESP2 values:
100
The user associated with the issuing task is not authorized to use this command.
102
The user associated with the issuing task is not an authorized surrogate of the user specified in the AUTHID, COMAUTHID, or SIGNID parameter.
103
The user associated with the issuing task is not authorized to create a DB2CONN with an AUTHTYPE or COMAUTHTYPE parameter.