
- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- 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 delete all the DB2 packages in collection COLL1?
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 can issue below command.
FREE PACKAGE(COLL1.*)
The FREE PACKAGE reserved word is followed by the name of collection i.e. COLL1. The * after the collection name indicates that we need to perform delete action for all the packages under the said collection.
- Related Questions & Answers
- How to BIND all the packages in a collection COLLA to a plan PLANA?
- How to delete all the documents from a collection in MongoDB?
- How to delete a DB2 table TAB1?
- How to delete documents from a collection in MongoDB?
- How to get the list of all COBOL-DB2 programs using a DB2 table TAB1?
- How to remove all elements from a Collection in another Collection
- How can you revert all the DB2 table changes done in a COBOL-DB2 program?
- How to delete all the file contents using PowerShell?
- Write a DB2 query to find out all the duplicate INVOICE_ID in ORDERS DB2 table?
- How to delete multiple documents from a collection using Java?
- How to find all the foreign keys of a DB2 table TAB1?
- How to find out all the indexes for a DB2 table TAB1?
- How to delete all the duplicate records in a MySQL table?
- How to delete document from a collection in MongoDB using deleteOne() method?
- How to compile packages in Java
Advertisements