
- Javascript Basics Tutorial
- Javascript - Home
- Javascript - Overview
- Javascript - Syntax
- Javascript - Enabling
- Javascript - Placement
- Javascript - Variables
- Javascript - Operators
- Javascript - If...Else
- Javascript - Switch Case
- Javascript - While Loop
- Javascript - For Loop
- Javascript - For...in
- Javascript - Loop Control
- Javascript - Functions
- Javascript - Events
- Javascript - Cookies
- Javascript - Page Redirect
- Javascript - Dialog Boxes
- Javascript - Void Keyword
- Javascript - Page Printing
- JavaScript Objects
- Javascript - Objects
- Javascript - Number
- Javascript - Boolean
- Javascript - Strings
- Javascript - Arrays
- Javascript - Date
- Javascript - Math
- Javascript - RegExp
- Javascript - HTML DOM
- JavaScript Advanced
- Javascript - Error Handling
- Javascript - Validations
- Javascript - Animation
- Javascript - Multimedia
- Javascript - Debugging
- Javascript - Image Map
- Javascript - Browsers
- JavaScript Useful Resources
- Javascript - Questions And Answers
- Javascript - Quick Guide
- Javascript - Functions
- Javascript - Resources
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 Articles
- 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 Delete Item from Hashtable Collection in C#?
- 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?
- 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 delete document from a collection in MongoDB using deleteOne() method?
- How to delete all the file contents using PowerShell?
- 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?

Advertisements