- 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 add volume VOL34 and remove volume VOL29 from storage group STG1?
A Volume is a group of physical disks which are used to store the data. A storage group is a collection of volumes. We can add or remove the volumes in a storage group in order to adjust the space. Below command can be issued in order to amend the volume in a storage group.
ALTER STG1 ADD VOLUMES(VOL34) REMOVE VOLUMES(VOL29);
The ALTER reserved word has to be followed by the name of the storage group which needs to be altered. Which is STG1 in this case. The ADD VOLUMES parameter has the list of volumes which needs to be added in the storage group and the REMOVE VOLUMES parameter has the list of volumes which needs to be removed in the storage group. All the volume names in these parameters have to be separated by comma (,).
- Related Articles
- How to create a DB2 storage group STG1 with volume VOL1.
- How to create a DB2 Tablespace in storage group STG1 and bufferpool BP01?
- How to create a DB2 database DBSET1 in the storage group STG1?
- What is the volume of a matter and how are volume and mass different?
- Relation Between Density and Volume
- Difference Between Mass and Volume
- CSS volume Property
- What Is Volume
- How To Calculate Volume of Prism in Java?
- How To Find Volume of Dodecahedron in Java?
- How to Use Volume Sharing in Docker Swarm?
- How To Find Volume of Hemisphere in Java?
- Program to calculate area and volume of a Tetrahedron
- How to find Volume and Surface Area of a Sphere using C#?
- How to find the Surface area and Volume of Cuboid in Golang?

Advertisements