Purpose

This page provides you with detailed information about time required for extracting applications.

CAST AIP Versions


AIP Version

Yes/No

8.3.x(tick)
Applicable Platform or <Sub Platform Version>


Imaging version

Yes/No

2.x(tick) 
Observed on RDBMS

RDBMS

Yes/No

CSS(tick)
Details
  1. You need to run the extraction in debug mode - CAST Imaging System - Information - Export application in debug mode
  2. Run the following on the KB:

    SELECT Substring (START_HIST.step_name, 1, Length(START_HIST.step_name) - 5) AS 
           Step, 
           START_HIST.action_date 
           Start_date, 
           END_HIST.action_date 
           end_date, 
           ( END_HIST.action_date - START_HIST.action_date )                     AS 
           consumed_time 
    FROM   deltatcc_local.aaa_is_logs START_HIST, 
           deltatcc_local.aaa_is_logs END_HIST 
    WHERE  START_HIST.log_id + 1 = END_HIST.log_id 
           AND START_HIST.step_name LIKE '%Begin' 
           AND END_HIST.step_name LIKE '%End' 
    ORDER  BY ( END_HIST.action_date - START_HIST.action_date ) DESC 

    Query result sample:

    stepstart_dateend_dateconsumed_time
    aaa_is_dtg_create_all 43:15.743:19.900:04.3
    aaa_is_init 43:12.143:13.500:01.4
    aaa_is_dtg_table_reindex 43:20.643:21.700:01.1
    aaa_is_tra_projection_to_parent 43:15.443:15.600:00.2
    aaa_is_lnk_process_init 43:14.443:14.600:00.2
    aaa_is_lnk_extract 43:14.243:14.30:00:00
    aaa_is_lnk_good_to_go 43:14.943:15.10:00:00
    aaa_is_tra_extract 43:15.143:15.300:00.2
    aaa_is_dtg_process_init 43:20.043:20.100:00.2
    aaa_is_lnk_projection_to_parent 43:14.743:14.800:00.2
    aaa_is_obj_color_db 43:13.743:13.900:00.1
    aaa_is_tra_process_init 43:15.343:15.400:00.1
    aaa_is_obj_extract 43:13.543:13.60:00:00
    aaa_is_lnk_projection_to_called 43:14.843:14.900:00.1
    aaa_is_lnk_ignore_identification 43:14.443:14.40:00:00
    aaa_is_obj_color_dao 43:13.943:13.90:00:00
    aaa_is_obj_good_to_go 43:14.143:14.200:00.1
    aaa_is_obj_ignore_identification 43:13.643:13.700:00.0
    aaa_is_dtg_projection_to_parent 43:20.143:20.200:00.0
    aaa_is_obj_process_init 43:13.743:13.700:00.0
    aaa_is_obj_color_transac 43:13.943:14.00:00:00
    aaa_is_dtg_extract 43:19.943:19.900:00.0
    aaa_is_lnk_projection_to_parent_init 43:14.643:14.700:00.0
    aaa_is_obj_color_struts 43:14.143:14.100:00.0
    aaa_is_obj_color_mq 43:20.543:20.500:00.0
    aaa_is_obj_color_batch 43:14.043:14.000:00.0
    aaa_is_obj_color_servlet 43:14.143:14.100:00.0
    aaa_is_obj_defaultmap_by_type 43:13.743:13.70:00:00
    aaa_is_tra_projection_to_called 43:15.643:15.70:00:00
    aaa_is_obj_color_mq 43:14.043:14.000:00.0
    aaa_is_obj_good_to_go 43:20.643:20.600:00.0
    aaa_is_logs 43:20.643:20.600:00.0
    aaa_is_obj_color_mvc 43:14.043:14.10:00:00
    aaa_is_obj_color_thread 43:14.043:14.000:00.0
    aaa_is_obj_color_ws 43:13.943:13.900:00.0
    aaa_is_obj_color_transac 43:20.543:20.60:00:00
    aaa_is_obj_cobol_reassign 43:20.643:20.60:00:00
    aaa_is_obj_defaultmap_by_dependency 43:13.743:13.700:00.0
    aaa_is_obj_defaultmap_by_name 43:13.743:13.700:00.0
    aaa_is_tra_ignore_identification 43:15.343:15.300:00.0
    aaa_is_dtg_ignore_identification 43:19.943:19.90:00:00
    aaa_is_lnk_projection_to_caller 43:14.843:14.800:00.0
    aaa_is_lnk_projection_to_child 43:14.843:14.800:00.0
    aaa_is_dtg_projection_to_child 43:20.243:20.20:00:00
    aaa_is_dtg_projection_to_caller 43:20.243:20.20:00:00
    aaa_is_dtg_projection_to_called 43:20.243:20.20:00:00
    aaa_is_obj_color_userinterface 43:14.043:14.000:00.0
    aaa_is_obj_finalmap 43:14.143:14.100:00.0
    aaa_is_obj_color_batch 43:20.643:20.60:00:00
    aaa_is_obj_color_richclient 43:14.043:14.000:00.0
    aaa_is_obj_color_io 43:14.043:14.000:00.0
    aaa_is_tra_good_to_go 43:20.643:20.60:00:00
    aaa_is_tra_projection_to_child 43:15.643:15.600:00.0
    aaa_is_tra_projection_to_caller 43:15.643:15.600:00.0
Notes/comments


Related Pages