3Com 900-0234-01 IP Phone User Manual


 
296 APPENDIX E: MANUALLY CONFIGURING THE BILLING SUPPORT SERVER
To manually merge CDRs into super CDRs:
1 From a SQL Plus command line, login as the cwbss user.
2 Enter the following script:
set serveroutput on
begin
cwm.mergecdr;
commit;
end;
The completed calls from the billing support server’s RT_CDR table are
merged into the rt_super_cdr_status table.
Manually Scheduling
the CDR Merge
Use the CWM.MERGECDR procedure to merge CDRs into super CDRs as
scheduled in the job_merge_cdr table.
The billing support server installation procedure schedules all the
necessary Oracle jobs for the billing support server for default
configuration. If you want to use the default configuration, you do not
need to do any Oracle job scheduling such as uploading CDRs, merging
CDRs into Super CDRs, exporting Super CDRs, and deleting CDRs. If you
do not use the default configuration, you should drop the default
schedules of the Oracle jobs and submit the Oracle jobs following the
instructions in the dedicated sections of this guide.
To merge the CDRs on a schedule:
1 Add the job to the job_merge_cdr table.
2 Verify the configuration of the job_merge_cdr table.
Only the record with ACTIVE_STATUS=1 is submitted. Verify that only
one entry is set to ACTIVE_STATUS=1.
Verify that the job_to_submit is CWM.MERGECDR.
Verify that the job_interval is set correctly.
3 From a SQL Plus command line, login as the cwbss user.
4 Enter the following script:
set serveroutput on
begin