I checked the collection settings and it collect to File detail1.img and use collection script sl1old.coll I am attaching the script for your kind review.
The size of file is increasing and at the end of day we have schecular which run and empty the buffer box.
Do you think the script might have been changed.. cause I see few more in that folder of scrips.
;*******************************************************************************
; Script file for the Data Script Engine to process Meridian SL1 records.
; Created 08-APR-98 by MGR
; Based on MAT SL1.SCR.
;*******************************************************************************
;
;Revision History:
;[1] 15-SEP-00 - RT - Modified to save the value of AuxID in UserDef1$
;[2] 29-JAN-01 Adding MDR2KE_Error.inc to show proper Ethernet message. RT
;[3] 11-MAY-01 Moved the common code to SL1OLD.INC file so it can be used
; in BCM.COL and added "INCLUDE SL1OLD.INC"
;[4] 22-APR-03 -HZ- Adding StoreCIP and RetrieveCIP
;[End of Revision History]
;*******************************************************************************
; INCLUDE LANGUAGE FILES
;*******************************************************************************
Include LNGFILE(COMMON)
Include LNGFILE(SL1)
;*******************************************************************************
; INCLUDE STATUS.INC - Includes constants for sending status information.
;*******************************************************************************
INCLUDE STATUS.INC
;*******************************************************************************
; INCLUDE CONNECT.COM - Includes routines for communications - serial or file.
;*******************************************************************************
INCLUDE CONNECT.CON
;*******************************************************************************
; INCLUDE COLLECT.INC - Includes common CDR handling routines.
;*******************************************************************************
INCLUDE COLLECT.INC
;*******************************************************************************
; INCLUDE MDR2KE_Error.INC - Includes ETHERNET Routine Names and it shows
; that this script does not support Ethernet option
;*******************************************************************************
INCLUDE MDR2KE_Error.inc
;*******************************************************************************
; INCLUDE SL1CDR.INC - Includes common SL1 specific CDR handling routines.
;*******************************************************************************
INCLUDE SL1CDR.INC
;*******************************************************************************
; INCLUDE SL1OLD.INC - Includes common SL1 specific CDR handling routines.
;*******************************************************************************
INCLUDE SL1OLD.INC
;*******************************************************************************
; INCLUDE CIPTABLE.INC - read/write CIP from/to a file
;*******************************************************************************
INCLUDE CIPTABLE.INC ;[4]
;******************************** Main Routine *************************
;*************************************************************************
;*************************************************************************
;
let ConnectionType$ = Upcase(ConnectionType$)
if (ConnectionType$ <> 'FILE') and (not RealTime!) then
begin
println(SL1_OLDRT$)
SendStatus(STAT_OK, SL1_OLDRT$, Result!);
Stop
end
if (ConnectionType$ = 'FILE') and (RealTime!) then
begin
println(SL1_OLDBATCH$)
SendStatus(STAT_OK, SL1_OLDBATCH$, Result!);
Stop
end
println(SL1_START$)
SendStatus(STAT_OK, SL1_START$, Result!);
Do RetrieveCIP ;[4]
Do InitiateConnection
if not ConnectionError! then
if not Cancel_Flag! then
Do ParseMeridian1
Do TerminateConnection
If Not ConnectionError! Then
If Not Cancel_Flag! Then
Do StoreCIP ;[4]
if ConnectionError! then
SendStatus(STAT_ERROR, SCR_ERRDS$, Result!)
if Cancel_Flag! then
SendStatus(STAT_CANCEL, SCR_CANCEL$, Result!)
println(SL1_STOP$)
SendStatus(STAT_OK, SL1_STOP$, Result!);
delay(1000)
_______________________________________________________________--------------------------------------------------------