728x90

인포믹스 스케줄러에 기본으로 등록된 TASK로 인해 online.log 파일에서 아래의 메시지가 발생하는 경우가 있습니다.

해당 메시지는 테이블의 압축률을 계산하는 프로시저 admin_fragment_command 의 실행 결과를 표시하는 것입니다.

압축기능 라이센스를 보유하지 않은 고객이라면 의미 없는 작업이므로 비활성화 하는 것이 좋습니다.


아래 작업 후에 인포믹스 프로세스를 재시작해야 합니다.


Question

Why do we see estimate compression message in the online.log as shown below, when we did run any compression command? 

Snippet from the online.log:
--------------------------------------
14:50:28 SCHAPI Estimate Compression for txc07_4q:"ssadmin".ubevent started 
14:50:30 admin_fragment_command('fragment estimate_compression ','69206165') succeeded 
14:50:30 SCHAPI Estimate Compression for txc07_4q:"ssadmin".ubflag started 
14:50:31 admin_fragment_command('fragment estimate_compression ','69206167') succeeded 
14:50:31 SCHAPI Estimate Compression for txc07_4q:"ssadmin".ubkeys started 
14:50:35 admin_fragment_command('fragment estimate_compression ','69206168') succeeded 
-------------------------------------- 

Answer

When you connect to the database via OAT and while browsing through the menu in OAT, you click on "Storage" under "Space Administration" section, it will deploy a task called "mon_compression_estimates" in the scheduler. Whenever the task executes, it generates the message, SCHAPI Estimate Compression, in the online.log.

You can run the following SQL statement to stop the task from being executed, hence stop the message from being displayed in the online.log.

UPDATE sysadmin:ph_task 
SET tk_enable = "F" 
WHERE tk_name = "mon_compression_estimates";

You will still need to bounce the informix instance after the update.


http://www-01.ibm.com/support/docview.wss?uid=swg21615415

728x90

+ Recent posts