Mandalika has Published 473 Articles

What is a use of DSNTIAR? How will you implement it in a COBOLDB2 program?

Mandalika

Mandalika

Updated on 14-Sep-2020 10:55:38

522 Views

We use fields of SQLCA to enquire about the status of the most recently executed SQL query. The SQLCODE is one such field which can take the various values and each value indicates specific error code. For example, -180 error code represents incorrect timestamp format. However, in the logs we ... Read More

Implementation of common error-trapping logic for all SQL statements in program

Mandalika

Mandalika

Updated on 14-Sep-2020 10:52:41

165 Views

A COBOL-DB2 program can have multiple DB2 SQL statements. In order to implement the common error-trapping for all the SQL statements in a COBOL-DB2 program, we will use WHENEVER statement.The WHENEVER statement can direct the control to the error handling section or routine based on the value returned in SQLCODE ... Read More

How to use SQLCA in a COBOL-DB2 program? What is the purpose of SQLCA?

Mandalika

Mandalika

Updated on 14-Sep-2020 10:49:17

3K+ Views

SQLCA stands for SQL-Communication Area. It is a medium through which DB2 can communicate with the COBOL program. In a typical COBOL-DB2 program, there are many SQL statements used. The main purpose of SQLCA is to inform the COBOL program about the status and other details of the most recently ... Read More

What is NON CLUSTERED INDEX in DB2? Explain with the help of practical example

Mandalika

Mandalika

Updated on 14-Sep-2020 10:47:33

366 Views

The non-clustered index is just the opposite of the clustered index. In a non-clustered index, it is not necessary that the data rows having similar index keys should reside in the same page. This index is suitable if we have to traverse through the table.For example, if we take the ... Read More

What is CLUSTERED INDEX in DB2? Explain with the help of practical example.

Mandalika

Mandalika

Updated on 14-Sep-2020 10:44:23

863 Views

In a CLUSTERED INDEX of a DB2 table, the data rows (table rows) with the similar index keys are stored in the same page. For example, If we have 4 index keys - T5623, T5611, Z9786 and Z9078. So the data rows with similar keys T5623 and T5611 will be ... Read More

How to update of incorrect timestamp format in a DB2 table?

Mandalika

Mandalika

Updated on 14-Sep-2020 10:39:59

290 Views

As per the standard DB2 definitions, timestamp holds 10 bytes in DB2 storage and 26 bytes in corresponding COBOL storage (PIC X(26)). It is in the format YYYY-MM-DDHH. MM.SS.NNNNNN. Where, YYYY:- Year | MM:- Month | DD:- Date | HH:- Hour | MM:- Minutes | SS:- Seconds | NNNNNN:- MillisecondsAs ... Read More

How to update DB2 table with a duplicate primary key?

Mandalika

Mandalika

Updated on 14-Sep-2020 10:29:11

618 Views

To maintain the integrity of a DB2 table the primary key is always unique in the entire table. For example, if we have a DB2 table ORDERS which stores all the orders and the primary key of the table is column ORDER_ID. Then there can be only a single row ... Read More

Give the panel command to start a specific tablespace within a DB2 database.

Mandalika

Mandalika

Updated on 12-Sep-2020 16:22:37

94 Views

To start a specific tablespace within a DB2 database we can use below panel command.START DATABASE (DSNDB01) SPACENAM(TABSPAC1)Using the START DATABASE command, we can also start database and indexspace.

Give and explain the panel command to display all the components of DB2 database DSNDB01 along with their status?

Mandalika

Mandalika

Updated on 12-Sep-2020 16:21:26

82 Views

A database contains multiple components like tablespace, indexspace, index, tables, etc. We can find out all the components within the database using the below panel command.DIS DB(DSNDB01)

What are the ways to calculate DB2 database size using DB2 utility and other methods?

Mandalika

Mandalika

Updated on 12-Sep-2020 16:17:53

546 Views

There are multiple ways in which we can estimate the size of the DB2 database. Few of them are listed below−By using inbuilt get_dbsize_info function.By using DB2 active transaction logs.The size of the dataset which was used with UNLOAD utility can be checked.Table/Index dataUsing STOSPACE utility in JCL as below//STEP1 ... Read More

Advertisements