sp531_optimizer_statistics
Â
Table Definition
Field | Type | Default | Nullable |
---|---|---|---|
optimizer_run_no | number(1) | Â | |
statistics_no | number(9) | Â | |
solution_type | number(1) | Â | |
iteration_no | number(6) | Â | |
rev_op_success | number(9)Â | Â | |
rev_op_tried | number(9) | Â | |
trav_op_success | number(9) | Â | |
trav_op_tried | number(9) | Â | |
move_op_success | number(9) | Â | |
move_op_tried | number(9) | Â | |
swap_op_success | number(9) | Â | |
swap_op_tried | number(9) | Â | |
total_cost | number(19) NB: This column will be represented as an int(8) in SQLServer implementations. | Â | |
blend_op_success | number(9) | Â | Â |
blend_op_tried | number(9) | Â |
Keys
primary key (optimizer_run_no, statistics_no)Â
foreign key (optimizer_run_no) references sp530_optimizer_runs(optimizer_run_no)Â
foreign key (solution_type) references sp533_optimizer_solution_types(solution_type)
Column Descriptions
Field | Description |
---|---|
optimizer_run_no | The optimizer run during which this writeback happened. |
statistics_no | ServiceOptimizer-generated unique identifier (within this optimizer run). Identifies a unique point during an optimizer run. |
solution_type | Identifies the type of solution being reported (e.g. initial, interim or final). |
iteration_no | The optimizer temperature step at which this solution was reported. |
rev_op_success | Count of the number of REV operations that have succeeded so far within this optimizer run. |
rev_op_tried | Count of the number of REV operations that have been attempted so far within this optimizer run. |
trav_op_success | Count of the number of TRAV operations that have succeeded so far within this optimizer run. |
trav_op_tried | Count of the number of TRAV operations that have been attempted so far within this optimizer run. |
move_op_success | Count of the number of MOVE operations that have succeeded so far within this optimizer run. |
move_op_tried | Count of the number of MOVE operations that have been attempted so far within this optimizer run. |
swap_op_success | Count of the number of SWAP operations that have succeeded so far within this optimizer run. |
swap_op_tried | Count of the number of SWAP operations that have been attempted so far within this optimizer run. |
total_cost | The total cost of the schedule at this point in the optimizer run. |
blend_op_success | Count of the number of BLEND operations that hace succeeded so far within this optimizer run. |
blend_op_tried | Count of the number of BLEND operations that have been attempted so far this optimizer run. |