Apply configuration file changes - connect_cdc_sqdata - Latest

Connect CDC (SQData) Change Data Capture

Product type
Software
Portfolio
Integrate
Product family
Connect
Product
Connect > Connect CDC (SQData)
Version
Latest
Language
English
Product name
Connect CDC (SQData)
Title
Connect CDC (SQData) Change Data Capture
Copyright
2024
First publish date
2000
Last updated
2025-01-06
Published on
2025-01-06T18:42:53.073000

Once again, changes made to the Agent Configuration (.cab) file are not effective until they are applied, allowing Publisher agent maintenance to be done outside of the critical upgrade path. The apply operation instructs the Publisher to begin processing based on the changes previously issued but not yet actually applied to the agent itself.

In order to apply changes, the agent must first be stopped. This operation in effect pauses the agent task and permits the additions and/or modifications to the configuration to be applied. Once the agent is restarted, the updated configuration will be active.
//*----------------------------------------
//* STOP THE AGENT
//*----------------------------------------
//STOP EXEC SQDCONF
//SQDPARMS DD *
 stop /home/sqdata/VSAMPUB/vsampub.cab 
//*
//*----------------------------------------
//* APPLY UPDATED CONFIGURATION FILE
//*----------------------------------------
//APPLY EXEC SQDCONF
//SQDPARMS DD *
 apply /home/sqdata/VSAMPUB/vsampub.cab 
//*
//*----------------------------------------
//* START THE AGENT
//*----------------------------------------
//START EXEC SQDCONF
//SQDPARMS DD *
 start /home/sqdata/VSAMPUB/vsampub.cab 
//*