Publishing to an external product

Publishing provides an object to an external product. For example, IBM® Counter Fraud Management includes a publisher that sends object details from Counter Fraud to Identity Insight.

About this task

The CFCONFIG.PUBLISH table includes an ENABLED column that indicates whether publishing is enabled. When the value is set to 1, publishing is enabled for a specific PUBLISH_ID or PUBLISH_TARGET. When the value is set to 0, publishing is disabled. By default, publishing is always disabled.

Procedure

To enable publishing:

Enter the one of the following commands in a DB2 command prompt:
  • UPDATE CFCONFIG.PUBLISH set ENABLED = '1' where PUBLISH_ID = n
  • UPDATE CFCONFIG.PUBLISH set ENABLED = '1' where PUBLISH_TARGET = 'classname'

n is the identifier of the specific publisher.

classname is the publisher class.

Tip: To disable publishing for all publishers, enter the following command:
UPDATE CFCONFIG.PUBLISH set ENABLED = '0'