Deleting the records from the FACT table in Db2 Database Software

Perform this procedure to delete FACT records from a Db2 database.

  1. Connect to the source database.
  2. Execute the following script:
    DELETE FROM PR_DATA_IH_FACT WHERE PXOUTCOMETIME < TO_DATE(<DATE_STRING>, <DATE_FORMAT_STRING>);
Example: 

Example:

DELETE FROM PR_DATA_IH_FACT WHERE PXOUTCOMETIME < TO_DATE('0015-01-07 00:00:00', 'yyyy-dd-mm hh24:mi:ss')