What are the most common operations performed with InfoReorg?
InfoReorg is primarily used to reorganize DB2 tablespaces to improve performance and reclaim space. Common operations include reorganizing tablespaces, rebuilding indexes, and managing partition datasets.
What configuration files or interfaces are used to control InfoReorg?
InfoReorg uses control statements within JCL (Job Control Language) to define the reorganization process. Configuration files are not typically used; instead, parameters are passed directly within the JCL.
What is the syntax for a basic tablespace reorganization?
A basic reorganization job includes specifying the tablespace to be reorganized and any desired options, such as online or offline processing. For example: ``` //REORG EXEC PGM=INFOREORG //STEPLIB DD DSN=your.inforeorg.loadlib,DISP=SHR //SYSIN DD * REORG TABLESPACE database.tablespace OFFLINE ```
What types of APIs does InfoReorg expose?
InfoReorg primarily uses batch processing via JCL. There are no REST or SOAP APIs exposed. Integration typically involves scheduling and monitoring JCL jobs.