- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
How to create a DB2 storage group STG1 with volume VOL1.
Storage groups are basically the collection of volumes which hold the data that is present in the DB2 table. Basically it is the responsibility of DBA to maintain, add and update the storage groups in DB2.
To create a storage group in a DB2 installation we have to give below command.
CREATE STOGROUP STG1 VOLUMES (VOL1);
The CREATE and STOGROUP are the reserved words which are followed by the name of the storage group. The volume parameter should be populated with the name of the volume for the storage group.
- Related Articles
- How to create a DB2 database DBSET1 in the storage group STG1?
- How to create a DB2 Tablespace in storage group STG1 and bufferpool BP01?
- How to add volume VOL34 and remove volume VOL29 from storage group STG1?
- How to create a DB2 segmented tablespace TABSPAC2 in storage group STOGRP1?
- How to create a DB2 bufferpool with pagesize 4096?
- How to create a "button group" with CSS?
- How to create a vertical "button group" with CSS?
- How to Create a RAID 0 Storage Array with ‘mdadm’ on Ubuntu 16.04
- How to Create a RAID 5 Storage Array with ‘mdadm’ on Ubuntu 16.04
- How to create a scatterplot with colors as group in R?
- Create a Button Group with CSS
- Create a Button Group with Bootstrap
- How to create JSON format with group-concat in MySQL?
- How to create a DB2 tablespace TABSPAC1 in the database DBSPAC1?
- Create a small button group with Bootstrap

Advertisements