Mandalika has Published 473 Articles

How to find out all the indexes for a DB2 table TAB1?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:42:05

6K+ Views

To find out all the indexes built on the DB2 table TAB1 we can use the DB2 system table SYSIBM.SYSINDEXES. The SYSINDEXES database has one row for every index present in DB2. We can find indexes built on a particular table using the below SQL query.SELECT NAME, UNIQUERULE, CLUSTERING   ... Read More

How to find all the foreign keys of a DB2 table TAB1?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:40:55

4K+ Views

The foreign key of a DB2 table can be found using SYSIBM.SYSFOREIGNKEYS table and SYSIBM.SYSRELS table. The SYSFOREIGNKEYS is a DB2 system table which contains one row for every column of every foreign key. The SYSRELS table contains details about the referential constraints. In order to find out the foreign ... Read More

How to find the primary key of a DB2 table TAB1?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:39:04

6K+ Views

We can find the primary key of any table using the SYSIBM.SYSCOLUMNS table. The SYSIBM.SYSCOLUMNS is a DB2 system table which contains one row for every column of each table. It also contains the data related to the views. Below SQL query can be fired in order to find the ... Read More

How to create an ALIAS TAB2 for DB2 table TAB1?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:36:43

247 Views

The ALIAS is basically a different name given to a particular object in a database. An ALIAS can be defined for a table, view or another alias and the existence of the object is not verified during the creation of the alias. The ALIAS is used to hide the location ... Read More

How to image copy the entire DB2 table TAB1 into a dataset?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:32:30

1K+ Views

The image copy allows us to download or copy the DB2 table into a mainframe dataset. There are two types of Image copy i.e. Full image copy and Incremental image copy. The full image copy is used to take the backup of the entire table. The incremental image copy refers ... Read More

How to create a DB2 segmented tablespace TABSPAC2 in storage group STOGRP1?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:29:54

323 Views

A segmented table space is divided in multiple segments. A segment is defined as a contiguous set of fixed number of pages. This fixed number is defined during the table space definition using the SEGSIZE parameter. The SEGSIZE serves multiple purposes - It defines the tablespace as segmented and also ... Read More

How to create a DB2 tablespace TABSPAC1 in the database DBSPAC1?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:27:21

94 Views

A tablespace is a collection of data files which resides inside a DB2 database. It is used to organize the data logically. Any DB2 database contains at least one tablespace and in the real world scenario there are multiple tablespaces within a database which are allocated for different business units. ... Read More

How to add a row compression to a DB2 table TAB1?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:25:22

351 Views

A compression is used to save the DB2 disk space. The compression can be used either at row level or at a page level. In order to add a row compression in a DB2 table, we can give the following command−ALTER TABLE DBSET1.TAB1 COMPRESS YES STATICWe have to use ALTER ... Read More

How to delete all the DB2 packages in collection COLL1?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:22:49

317 Views

A DB2 collection is a physical quantity which is used to group the packages. A collection can be simply termed as a group of DB2 packages. By using collections we can bind the same DBRM into different packages. In order to delete all the DB2 packers under a collection, we ... Read More

How to delete a DB2 table TAB1?

Mandalika

Mandalika

Updated on 12-Sep-2020 14:20:28

641 Views

We can delete the unused tables in the DB2. However, we must keep in mind that if we delete a table then all the indexes associated with the table are also dropped. Moreover, the triggers and views for the deleted table will become inaccessible. To delete any table in DB2, ... Read More

Advertisements