My first Perl program. I'm reading from a Db which contains
the alarms for different power supplies (PS). How can I
search Db for the alarm start (Warning) and stop (OK NOW) times and
combine them into a table ordered by supply?
#! /usr/local/bin/perl-w
# A perl program to do read the notifAlarmTable
use FileHandle;
use IPC::Open2;
use Symbol;
# use Tk;
use Sybase::CTlib;
use Time::Local;
use strict;
my $dbAlarm=new Sybase::CTlib 'harmless','harmless','OPSYB1','';
$dbAlarm->ct_sql("use TomTest");
my $sql = "SELECT * from notifAlarmEntry ORDER BY datetime" ;
my(@records) = $dbAlarm->ct_sql($sql);
my($record, $StartWarn, $StopOK);
foreach $record (@records) {
#build history record 4 each entry in notifAlarmEntry
#Fields:Sequence,UnixTime,DateTime,Source,Process,Category,Topic,Messa
+ge
#this is were I will look for WARNING and OK NOW MESSAGES
#to put in Table
#Category contains either WARNING or OK NOW
#Topic contains the PS Name
print "$record->[0], $record->[1], $record->[2], $record->[3], $record
+->[4], $record->[5], $record->[6], $record->[7]\n"
}
2002-06-27 Edit by Corion : Changed title
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.