Hi,
If some one can help me out please
I am brand new to Perl
I wrote a prog which is working fine except for few glitches
It should read two text files compare the snap.txt with base.txt and spit
out the name of task which is not running in last hour or so
The snap log file has list of tasks which are either completed, running or
exited with error 
The snap log file carries log for more then a day or so
What I am interested in is about the tasks not running or rendering error in
last hour or so
My prog list it but since there is a repetition of the same tasks over a
period of time so it is not giving the right output
I want to get the very latest instance of the task when it is erroring out 
The Base.txt contains the tasks which I am interested in to check which are
like about 10 or so 
The log files are tab delimited 
Enclosed is the script along with the two text files
Another option is to only read one file and look for specific tasks which
are not running and the names of the tasks can  be incorporated in 
the script.
In the snap.txt file field 8 gives the task state 
If someone can help me out with the code in detail 
I appreciate it.

Thanks
 <<snap.txt>>  <<base.txt>> 

# Monitoring script

use Win32;

my($snapshot, $baseline);               # Defining txt files

# First file
$snapshot = "./snap.txt"; # List of Svcs currently running, file in c:\perl

# Second file
$baseline = "./base.txt";  # List of All Svcs which should be running

my(@arr1, @arr2, @result);  # Defining arrays
my($fld1, $fld2, $fld3, $fld4, $fld5, $fld6, $fld7, $fld8); # Defining
variables for fields
my($match, $cnt, $val1, $val2, $finalresult); # Defining scalar variables
$match = "N";

#Open snapshot file and insert every line into @arr1
open(SNAPSHOT, $snapshot) or die "Unable to open $snapshot."; # Open the txt
file and place it in filehandle           

$cnt = 0;
while ( <SNAPSHOT> ) # Looping thru the filehandle snapshot
 {
        $arr1[$cnt] = $_;
        $cnt = $cnt + 1;
  } 
  close (SNAPSHOT); # close the filehandle snapshot

#Open baseline file and insert every line into @arr2
open(BASELINE, $baseline) or die "Unable to open $baseline."; # Open the txt
file and place it in filehandle                      

$cnt = 0;
while ( <BASELINE> ) # Looping thru the filehandle baseline
{
        $arr2[$cnt] = $_;
        $cnt = $cnt + 1;
  } 
  close (BASELINE); # close filehandle baseline

# Outer loop is for baseline file
# Inner loop is for snapshot file
# Taking one element from @arr2 (baseline) and comparing it with all the
elements in @arr1(snapshot) and 
# If their is no match then insert that name into @result.

$cnt = 0;

foreach $val2 (@arr2) # referring to baseline
{
        foreach $val1 (@arr1) # referring to snapshot
        {
                if ($val1 eq $val2) 
                {
                        $match = "Y";
                }
        }
        if  ($match eq "N") 
        {
                $result[$cnt] = $val2;
                $cnt = $cnt + 1;
        }

        $match = "N";
        }

$finalresult = 0; # initializing to zero
foreach $val1 (@result)
{
        $finalresult = $finalresult + 1;
}

if ($finalresult >  0 ) 
{
        print "\nList of SICK Siebel-Tasks \n\n"; # If some svc is not
functioning
        foreach $val1 (@result)
        {
                ($fld1,$fld2,$fld3,$fld4,$fld5,$fld6,$fld7,$fld8) =
split(/\|/,"$val1");# separating req fields for output
                print "Siebel-Task $fld4; related to Siebel-Component $fld3
\n";
                
             
        }
}
else
{
        print "\nCheers! All Siebel-Tasks are Doing Well!\n"; # When all
svcs are running fine
}


SBLSRVR_NAME  SVC_NAME   COMP_NAME  SVC_COMP   TASK_NUM  TASK_PID  SVC_MODE  
TASK_STATE  START_TIME           END_TIME             TASK_STATUS                      
                                                            
------------  ---------  ---------  ---------  --------  --------  --------  
----------  -------------------  -------------------  
------------------------------------------------------------------------------------------
   
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  47148     881       Session   
NotRunning  08/23/2001 11:14:25                       Processing "List Tasks" command  
                                                            
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47147               Session   Completed 
  08/23/2001 11:14:09  08/23/2001 11:14:09  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47146               Session   Completed 
  08/23/2001 11:13:09  08/23/2001 11:13:09  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47145               Session   Completed 
  08/23/2001 11:12:09  08/23/2001 11:12:09  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47144               Session   Completed 
  08/23/2001 11:11:09  08/23/2001 11:11:09  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47143               Session   Completed 
  08/23/2001 11:10:09  08/23/2001 11:10:09  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47142               Session   Completed 
  08/23/2001 11:09:08  08/23/2001 11:09:09  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47141               Session   Completed 
  08/23/2001 11:08:08  08/23/2001 11:08:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47140               Session   Completed 
  08/23/2001 11:07:08  08/23/2001 11:07:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  47139     753       Session   Running   
  08/23/2001 11:06:27                       Waiting for command                        
                                                  
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47138               Session   Completed 
  08/23/2001 11:06:08  08/23/2001 11:06:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47137               Session   Completed 
  08/23/2001 11:05:08  08/23/2001 11:05:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47136               Session   Completed 
  08/23/2001 11:04:08  08/23/2001 11:04:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47135               Session   Completed 
  08/23/2001 11:03:08  08/23/2001 11:03:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47134               Session   Completed 
  08/23/2001 11:02:08  08/23/2001 11:02:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47133               Session   Completed 
  08/23/2001 11:01:08  08/23/2001 11:01:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47132               Session   Completed 
  08/23/2001 11:00:08  08/23/2001 11:00:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47131               Session   Completed 
  08/23/2001 10:59:08  08/23/2001 10:59:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47130               Session   Completed 
  08/23/2001 10:58:07  08/23/2001 10:58:08  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  47129               Session   Completed 
  08/23/2001 10:58:03  08/23/2001 11:04:33  Cleaning up                                
                                                  
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47128               Session   Completed 
  08/23/2001 10:57:07  08/23/2001 10:57:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47127               Session   Completed 
  08/23/2001 10:56:07  08/23/2001 10:56:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47126               Session   Completed 
  08/23/2001 10:55:47  08/23/2001 10:58:21  COMPLETED : Node BBROPHY wrote 210 Kbytes, 
read 39 Kbytes, sent 826 msgs, rcvd 826 msgs      
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47125               Session   Completed 
  08/23/2001 10:55:07  08/23/2001 10:55:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47124               Session   Completed 
  08/23/2001 10:54:07  08/23/2001 10:54:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47123               Session   Completed 
  08/23/2001 10:53:07  08/23/2001 10:53:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47122               Session   Completed 
  08/23/2001 10:52:07  08/23/2001 10:52:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47121               Session   Completed 
  08/23/2001 10:51:07  08/23/2001 10:51:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47120               Session   Completed 
  08/23/2001 10:50:07  08/23/2001 10:50:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47119               Session   Completed 
  08/23/2001 10:49:07  08/23/2001 10:49:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47118               Session   Completed 
  08/23/2001 10:48:07  08/23/2001 10:48:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47117               Session   Completed 
  08/23/2001 10:47:06  08/23/2001 10:47:07  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47116               Session   Completed 
  08/23/2001 10:46:06  08/23/2001 10:46:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47115               Session   Completed 
  08/23/2001 10:45:06  08/23/2001 10:45:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47114               Session   Completed 
  08/23/2001 10:44:06  08/23/2001 10:44:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47113               Session   Completed 
  08/23/2001 10:43:06  08/23/2001 10:43:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47112               Session   Completed 
  08/23/2001 10:42:06  08/23/2001 10:42:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47111               Session   Completed 
  08/23/2001 10:41:06  08/23/2001 10:41:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47110               Session   Completed 
  08/23/2001 10:40:06  08/23/2001 10:40:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47109               Session   Completed 
  08/23/2001 10:39:06  08/23/2001 10:39:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47108               Session   Completed 
  08/23/2001 10:38:06  08/23/2001 10:38:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47107               Session   Completed 
  08/23/2001 10:37:39  08/23/2001 10:39:37  COMPLETED : Node RNUZZOLO wrote 248 
Kbytes, read 43 Kbytes, sent 928 msgs, rcvd 928 msgs     
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47106               Session   Completed 
  08/23/2001 10:37:06  08/23/2001 10:37:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47105               Session   Completed 
  08/23/2001 10:36:05  08/23/2001 10:36:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47104               Session   Completed 
  08/23/2001 10:35:12  08/23/2001 10:36:07  COMPLETED : Node KPEOTTER wrote 115 
Kbytes, read 21 Kbytes, sent 448 msgs, rcvd 448 msgs     
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47103               Session   Completed 
  08/23/2001 10:35:05  08/23/2001 10:35:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47102               Session   Completed 
  08/23/2001 10:34:52  08/23/2001 10:36:45  COMPLETED : Node JNORRIS wrote 277 Kbytes, 
read 51 Kbytes, sent 1108 msgs, rcvd 1108 msgs    
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47101               Session   Completed 
  08/23/2001 10:34:05  08/23/2001 10:34:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47100               Session   Completed 
  08/23/2001 10:33:05  08/23/2001 10:33:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47099               Session   Completed 
  08/23/2001 10:33:01  08/23/2001 10:33:04  COMPLETED : Node CDEPASS wrote 4 Kbytes, 
read 2 Kbytes, sent 21 msgs, rcvd 21 msgs           
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47098               Session   Completed 
  08/23/2001 10:32:05  08/23/2001 10:32:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47097               Session   Completed 
  08/23/2001 10:31:05  08/23/2001 10:31:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47096               Session   Completed 
  08/23/2001 10:30:05  08/23/2001 10:30:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47095               Session   Completed 
  08/23/2001 10:29:05  08/23/2001 10:29:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47094               Session   Completed 
  08/23/2001 10:28:05  08/23/2001 10:28:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47093               Session   Completed 
  08/23/2001 10:27:05  08/23/2001 10:27:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47092               Session   Completed 
  08/23/2001 10:26:05  08/23/2001 10:26:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47091               Session   Completed 
  08/23/2001 10:25:04  08/23/2001 10:25:05  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47090               Session   Completed 
  08/23/2001 10:24:22  08/23/2001 10:27:06  COMPLETED : Node DRABOSKY wrote 295 
Kbytes, read 54 Kbytes, sent 1153 msgs, rcvd 1153 msgs   
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47089               Session   Completed 
  08/23/2001 10:24:04  08/23/2001 10:24:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47088               Session   Completed 
  08/23/2001 10:23:27  08/23/2001 10:23:30  COMPLETED : Node CDEPASS wrote 8 Kbytes, 
read 2 Kbytes, sent 21 msgs, rcvd 21 msgs           
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47087               Session   Completed 
  08/23/2001 10:23:04  08/23/2001 10:23:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47086               Session   Completed 
  08/23/2001 10:22:04  08/23/2001 10:22:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47085               Session   Completed 
  08/23/2001 10:21:04  08/23/2001 10:21:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47084               Session   Completed 
  08/23/2001 10:20:04  08/23/2001 10:20:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47083               Session   Completed 
  08/23/2001 10:19:04  08/23/2001 10:19:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47082               Session   Completed 
  08/23/2001 10:18:04  08/23/2001 10:18:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47081               Session   Completed 
  08/23/2001 10:17:04  08/23/2001 10:17:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47080               Session   Completed 
  08/23/2001 10:16:04  08/23/2001 10:16:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47079               Session   Completed 
  08/23/2001 10:15:04  08/23/2001 10:15:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47078               Session   Completed 
  08/23/2001 10:14:03  08/23/2001 10:14:04  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47077               Session   Completed 
  08/23/2001 10:13:07  08/23/2001 10:14:31  COMPLETED : Node SHUNTLEY wrote 239 
Kbytes, read 46 Kbytes, sent 1000 msgs, rcvd 1000 msgs   
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47076               Session   Completed 
  08/23/2001 10:13:03  08/23/2001 10:13:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47075               Session   Completed 
  08/23/2001 10:12:52  08/23/2001 10:15:04  COMPLETED : Node WMORK wrote 332 Kbytes, 
read 55 Kbytes, sent 1214 msgs, rcvd 1214 msgs      
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47074               Session   Completed 
  08/23/2001 10:12:41  08/23/2001 10:13:08  COMPLETED : Node CDEPASS wrote 66 Kbytes, 
read 10 Kbytes, sent 205 msgs, rcvd 205 msgs       
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47073               Session   Completed 
  08/23/2001 10:12:03  08/23/2001 10:12:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47072               Session   Completed 
  08/23/2001 10:11:03  08/23/2001 10:11:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47071               Session   Completed 
  08/23/2001 10:10:03  08/23/2001 10:10:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47070               Session   Completed 
  08/23/2001 10:09:03  08/23/2001 10:09:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47069               Session   Completed 
  08/23/2001 10:08:03  08/23/2001 10:08:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47068               Session   Completed 
  08/23/2001 10:07:03  08/23/2001 10:07:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47067               Session   Completed 
  08/23/2001 10:06:03  08/23/2001 10:06:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47066               Session   Completed 
  08/23/2001 10:05:03  08/23/2001 10:05:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47065               Session   Completed 
  08/23/2001 10:04:03  08/23/2001 10:04:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47064               Session   Completed 
  08/23/2001 10:03:08  08/23/2001 10:03:09  COMPLETED : Node TBEAN wrote 3 Kbytes, 
read 3 Kbytes, sent 12 msgs, rcvd 12 msgs             
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47063               Session   Completed 
  08/23/2001 10:03:02  08/23/2001 10:03:03  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47062               Session   Completed 
  08/23/2001 10:02:02  08/23/2001 10:02:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47061               Session   Completed 
  08/23/2001 10:01:02  08/23/2001 10:01:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47060               Session   Completed 
  08/23/2001 10:00:02  08/23/2001 10:00:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47059               Session   Completed 
  08/23/2001 09:59:02  08/23/2001 09:59:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47058               Session   Completed 
  08/23/2001 09:58:02  08/23/2001 09:58:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47057               Session   Completed 
  08/23/2001 09:57:46  08/23/2001 09:57:48  COMPLETED : Node TBEAN wrote 2 Kbytes, 
read 1 Kbytes, sent 6 msgs, rcvd 6 msgs               
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47056               Session   Completed 
  08/23/2001 09:57:02  08/23/2001 09:57:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47055               Session   Completed 
  08/23/2001 09:56:29  08/23/2001 09:56:35  COMPLETED : Node SBORUS wrote 15 Kbytes, 
read 3 Kbytes, sent 39 msgs, rcvd 39 msgs           
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47054               Session   Completed 
  08/23/2001 09:56:02  08/23/2001 09:56:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47053               Session   Completed 
  08/23/2001 09:55:02  08/23/2001 09:55:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47052               Session   Completed 
  08/23/2001 09:54:21  08/23/2001 09:57:54  COMPLETED : Node JMERRIMS wrote 457 
Kbytes, read 76 Kbytes, sent 1697 msgs, rcvd 1697 msgs   
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47051               Session   Completed 
  08/23/2001 09:54:19  08/23/2001 09:56:06  COMPLETED : Node TBEAN wrote 289 Kbytes, 
read 51 Kbytes, sent 1141 msgs, rcvd 1141 msgs      
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47050               Session   Completed 
  08/23/2001 09:54:02  08/23/2001 09:54:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47049               Session   Completed 
  08/23/2001 09:53:02  08/23/2001 09:53:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47048               Session   Completed 
  08/23/2001 09:52:01  08/23/2001 09:52:02  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47047               Session   Completed 
  08/23/2001 09:51:06  08/23/2001 09:51:06  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47046               Session   Completed 
  08/23/2001 09:50:01  08/23/2001 09:50:01  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  46963     884       Session   Running   
  08/23/2001 08:40:02                       Waiting for command                        
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  46954     870       Session   Running   
  08/23/2001 08:33:15                       Waiting for command                        
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  46950     888       Session   Running   
  08/23/2001 08:30:48                       Waiting for command                        
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  46030               Session   Completed 
  08/22/2001 17:33:17  08/22/2001 17:41:55  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  46016               Session   Completed 
  08/22/2001 17:22:09  08/22/2001 17:29:24  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  46012               Session   Completed 
  08/22/2001 17:18:54  08/22/2001 17:21:11  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  46010               Session   Completed 
  08/22/2001 17:17:48  08/22/2001 17:18:22  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  45849               Session   Completed 
  08/22/2001 15:12:32  08/22/2001 17:41:47  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  45838               Session   Completed 
  08/22/2001 15:03:24  08/22/2001 17:41:51  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  45684               Session   Completed 
  08/22/2001 12:57:16  08/22/2001 17:17:10  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  45681               Session   Completed 
  08/22/2001 12:55:14  08/22/2001 17:14:13  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  45664               Session   Completed 
  08/22/2001 12:42:03  08/22/2001 16:01:46  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  45635               Session   Completed 
  08/22/2001 12:15:04  08/22/2001 12:24:22  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  45606               Session   Completed 
  08/22/2001 11:49:20  08/22/2001 17:47:00  Cleaning up                                
                                                  
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   45440     830       Server    Running   
  08/22/2001 09:34:07                       Iteration 4574: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   45439     806       Server    Exited 
with error  08/22/2001 09:34:01                       Iteration 4542: Sleeping for 10 
seconds...                                                   
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   45438     834       Server    Running   
  08/22/2001 09:33:54                       Iteration 4359: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   45436     872       Server    Running   
  08/22/2001 09:33:46                       Iteration 4616: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   45435     849       Server    Running   
  08/22/2001 09:33:38                       Iteration 4527: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   45434     864       Server    Running   
  08/22/2001 09:33:27                       Iteration 4523: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  45430               Session   Completed 
  08/22/2001 09:30:14  08/22/2001 11:47:57  Cleaning up                                
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  45378               Session   Completed 
  08/22/2001 08:42:46  08/22/2001 12:56:47  Cleaning up                                
                                                  
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   44337     420       Server    Running   
  08/21/2001 15:59:45                       Iteration 7513: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   44275               Task      Completed 
  08/21/2001 11:13:06  08/21/2001 11:16:38  2 client(s) extracted                      
                                                  
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   44238               Server    Completed 
  08/21/2001 09:39:06  08/21/2001 09:45:22  Successfully processed 0 clients, skipped 
0 clients, 8 iterations.                           
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   44237     820       Server    Running   
  08/21/2001 09:38:40                       Iteration 6160: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   44236     858       Server    Running   
  08/21/2001 09:38:26                       Iteration 7937: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   44234     878       Server    Running   
  08/21/2001 09:38:26                       Iteration 7912: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   44232     665       Server    Running   
  08/21/2001 09:38:14                       Iteration 3103: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   44230               Task      Completed 
  08/21/2001 09:35:09  08/21/2001 09:37:15  1 client(s) extracted                      
                                                  
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  44214               Session   Completed 
  08/21/2001 09:10:56  08/22/2001 14:20:18  Cleaning up                                
                                                  
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   44047               Task      Completed 
  08/20/2001 16:04:17  08/20/2001 16:07:11  1 client(s) extracted                      
                                                  
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   44037               Server    Completed 
  08/20/2001 16:00:07  08/21/2001 09:34:44  Successfully processed 0 clients, skipped 
0 clients, 1086 iterations.                        
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   44015               Task      Exited 
with error  08/20/2001 15:46:13  08/20/2001 15:46:16  ERROR: 1 client(s) failed with 
errors, 0 client(s) successful                                
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   44006               Task      Exited 
with error  08/20/2001 15:39:20  08/20/2001 15:39:24  ERROR: 1 client(s) failed with 
errors, 0 client(s) successful                                
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   44000               Task      Exited 
with error  08/20/2001 15:35:50  08/20/2001 15:35:54  ERROR: 1 client(s) failed with 
errors, 0 client(s) successful                                
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   43997               Task      Exited 
with error  08/20/2001 15:33:49  08/20/2001 15:33:52  ERROR: 1 client(s) failed with 
errors, 0 client(s) successful                                
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   43995               Task      Exited 
with error  08/20/2001 15:32:29  08/20/2001 15:32:33  ERROR: 1 client(s) failed with 
errors, 0 client(s) successful                                
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   39611               Server    Completed 
  08/17/2001 14:59:32  08/20/2001 15:32:04  Successfully processed 0 clients, skipped 
0 clients, 4438 iterations.                        
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   39607               Task      Completed 
  08/17/2001 14:55:53  08/17/2001 14:58:03  1 client(s) extracted                      
                                                  
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   37883               Server    Completed 
  08/15/2001 14:45:43  08/17/2001 14:44:19  Successfully processed 0 clients, skipped 
0 clients, 2984 iterations.                        
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   37881               Task      Completed 
  08/15/2001 14:42:17  08/15/2001 14:44:39  1 client(s) extracted                      
                                                  
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   37838               Server    Completed 
  08/15/2001 11:10:01  08/15/2001 14:41:58  Successfully processed 0 clients, skipped 
0 clients, 225 iterations.                         
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   37825               Server    Completed 
  08/15/2001 10:22:42  08/15/2001 11:03:59  Successfully processed 0 clients, skipped 
0 clients, 44 iterations.                          
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   37504               Server    Completed 
  08/14/2001 14:36:56  08/15/2001 10:17:11  Successfully processed 0 clients, skipped 
0 clients, 1218 iterations.                        
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   37430               Server    Completed 
  08/14/2001 13:23:39  08/14/2001 14:34:23  Successfully processed 0 clients, skipped 
0 clients, 83 iterations.                          
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   37119               Server    Completed 
  08/14/2001 09:21:47  08/14/2001 13:21:11  Successfully processed 0 clients, skipped 
0 clients, 268 iterations.                         
S2_NXLKPRD    GenNewDb   GenNewDb   GenNewDb   37111               Task      Completed 
  08/14/2001 09:17:08  08/14/2001 09:17:56  Completed successfully.                    
                                                  
S2_NXLKPRD    GenNewDb   GenNewDb   GenNewDb   30836               Task      Completed 
  08/08/2001 09:38:29  08/08/2001 09:40:01  Completed successfully.                    
                                                  
S2_NXLKPRD    ReqProc    ReqProc    ReqProc    24586     573       Server    Running   
  08/04/2001 09:24:23                                                                  
                                                  
S2_NXLKPRD    TxnProc    TxnProc    TxnProc    24594     741       Server    Running   
  08/04/2001 09:24:23                       Iteration 27189: Sleeping for 30 
seconds...                                                  
154 rows returned. 
srvrmgr:s2_nxlkprd>  
SBLSRVR_NAME  SVC_NAME   COMP_NAME  SVC_COMP   TASK_NUM  TASK_PID  SVC_MODE  
TASK_STATE  START_TIME           END_TIME             TASK_STATUS                      
                                                            
------------  ---------  ---------  ---------  --------  --------  --------  
----------  -------------------  -------------------  
------------------------------------------------------------------------------------------
   
S2_NXLKPRD    ServerMgr  ServerMgr  ServerMgr  47148     881       Session   Running   
  08/23/2001 11:14:25                       Processing "List Tasks" command            
                                                  
S2_NXLKPRD    SynchMgr   SynchMgr   SynchMgr   47147               Session   Completed 
  08/23/2001 11:14:09  08/23/2001 11:14:09  COMPLETED : Wrote 0 Kbytes, read 0 Kbytes, 
sent 0 msgs, rcvd 0 msgs                          
S2_NXLKPRD    TxnRoute   TxnRoute   TxnRoute   45440     830       Server    Running   
  08/22/2001 09:34:07                       Iteration 4574: Sleeping for 10 seconds... 
                                                  
S2_NXLKPRD    DbXtract   DbXtract   DbXtract   44275               Task      Completed 
  08/21/2001 11:13:06  08/21/2001 11:16:38  2 client(s) extracted                      
                                                  
S2_NXLKPRD    TxnMerge   TxnMerge   TxnMerge   44238               Server    Completed 
  08/21/2001 09:39:06  08/21/2001 09:45:22  Successfully processed 0 clients, skipped 
0 clients, 8 iterations.                           
S2_NXLKPRD    GenNewDb   GenNewDb   GenNewDb   37111               Task      Completed 
  08/14/2001 09:17:08  08/14/2001 09:17:56  Completed successfully.                    
                                                  
S2_NXLKPRD    ReqProc    ReqProc    ReqProc    24586     573       Server    Running   
  08/04/2001 09:24:23                                                                  
                                                  
S2_NXLKPRD    TxnProc    TxnProc    TxnProc    24594     741       Server    Running   
  08/04/2001 09:24:23                       Iteration 27189: Sleeping for 30 
seconds...                                                  
154 rows returned. 
srvrmgr:s2_nxlkprd>  

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to