What is IMAGECOPY ?
It is full backup of a DB2 table which can be used in recovery. Read more »
It is full backup of a DB2 table which can be used in recovery. Read more »
REORG reorganizes data on physical storage to reclutser rows, positioning overflowed rows in their proper sequence, to reclaim space, to restore free space. It... Read more »
Number of rows in the table, Percent of rows in clustering sequence, Number of distinct values of indexed column, Number of rows moved to a nearby/fairway page... Read more »
After a load, or after mass updates, inserts, deletes, or after REORG. Read more »
A DB2 utility used to collect statistics about the data values in tables which can be used by the optimizer to decide the access path. It also collects statistics... Read more »
To insert a NULL, move -1 to the null indicator, To insert a valid value, move 0 to the null indicator Read more »
-1 : the field is null; 0 : the field is not null; -2 : the field value is truncated Read more »
Use null indicators. Syntax … INTO :HOSTVAR:NULLIND Read more »
As an extra-byte prefix to the column value. Physically, the null prefix is Hex ‘00′ if the value is present and Hex ‘FF’ if it is not. Read more »
At run time, when the PREPARE statement is issued. Read more »
Dynamic SQL is a SQL statement created at program execution time. Read more »
Looks like index page split has occurred. DO a REORG of the indexes. Read more »
Print the output dataset. Read more »
+100 (for successful completion of the query), 0 (for successful COMMIT if AUTOCOMMIT is set to Yes). Read more »