Re: [U2] Can I automate Wintegrate BridgeCopy?

2012-04-13 Thread Holt, Jake
You can call uv.exe (on windows) from a cmd prompt and use it to run a
command.  Just create a simple batch file and add it to your OS
scheduler



-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Beverly
Wilson
Sent: Thursday, April 12, 2012 3:47 PM
To: U2 Users List
Subject: [U2] Can I automate Wintegrate BridgeCopy?

Hi Folks,

I've got several files I need to transfer between our live and test
servers. Ideally, I would write a Unibasic program to take the list of
filenames and feed them into the RunBridgeCopy command. However, I've
been unable to determine how to do it, if it is even possible.

I found WIN.INVOKE documented in the Wintegrate host commands manual,
but that doesn't appear to allow for feeding in the variables I've
assigned that hold RunBridgeCopy's options (SourceFile, TargetFile,
etc.).

I tried doing this with ViaDuct (One-step Copy) but that bluescreens my
PC.

Any suggestions on where I can read documentation on this, or can anyone
tell me that it can't be done?

Regards,
--bev

Beverly Wilson
Daedalus Books  Music
Columbia, MD 21046
410.309.2700 voice
410.309.2701 fax
www.daedalusbooks.com

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] COMMON Size MisMatch

2012-04-13 Thread David A. Green
That's why you would specify.

Example:

COMMON /SYSSTUFF/ SYSSTUFF(100)

COMMON /MYSTUFF/ MYSTUFF.REC(100) -CLEAR.ON.LOGTO

Then only the MYSTUFF gets cleared.  This is the kind of logic that I have
to end up writing over and over again to make sure new files get opened when
a person does LOGTO to a different account.

Programmers would make all their Account specific data into a single named
common that has the flag to initialize on LOGTO.  And keep other
cross-account data in common that isn't flagged.

Easy.

David A. Green
(480) 813-1725
DAG Consulting

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Thursday, April 12, 2012 4:56 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] COMMON Size MisMatch


Okay that was a bad example.
But I think you get my general drift.
There are some common variables that are truly universal and should persist.



-Original Message-
From: Wjhonson wjhon...@aol.com
To: u2-users u2-users@listserver.u2ug.org
Sent: Thu, Apr 12, 2012 4:49 pm
Subject: Re: [U2] COMMON Size MisMatch



ou don't really want to clear all common variables all the time.
ome common variables are actually universal.
Take for example that you store in common the say full name of the user
who s logged in, and their extension.
hat doesn't change on a logto.  Some people use things like that in a LOCKED
lause to say John Brown has this locked, call him on extension 7204  so
the sers don't have to call the help desk on locks, they can peer to peer
it.
Sure you can reread things like that.  It's half white half black.
o I clear half the common ? Or reread half the common?

-Original Message-
rom: David A. Green dgr...@dagconsulting.com
o: 'U2 Users List' u2-users@listserver.u2ug.org
ent: Thu, Apr 12, 2012 4:44 pm
ubject: Re: [U2] COMMON Size MisMatch

hile this topic is on the table, can we request some kind of COMMON flag or
mmand that would tell the DBM to clear commons on a LOGTO?
avid A. Green
80) 813-1725
G Consulting
Original Message-
om: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Brutzman
nt: Thursday, April 12, 2012 2:22 PM
: U2 Users List
bject: Re: [U2] COMMON Size MisMatch
ill:
our commentary on this matter is very much appreciated.
s long as this new fix works... I expect to defer further investigation.
-Bill
Original Message-
om: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
nt: Thursday, April 12, 2012 4:56 PM
: u2-users@listserver.u2ug.org
bject: Re: [U2] COMMON Size MisMatch
ook inside those routines, and determine that they are agnostic about you
ming from LOGIN vs LOGTO Perhaps I'm the sole person in history to have ded
things that are wise about the distinction

---Original Message-
om: Bill Brutzman bi...@hkmetalcraft.com
: U2 Users List u2-users@listserver.u2ug.org
nt: Thu, Apr 12, 2012 12:46 pm
bject: Re: [U2] COMMON Size MisMatch
 presume that the following is workable...  Comments are welcome.
 LogTo the SandBox it is now just...
D VOC LLS
1: PA
2: CLEARCOMMON
3: LOGTO SANDBOX
4: WHO
D VOC LOGIN
1: PA
3: PTERM -ECHO DELAY
5: BREAK ON
7: CLEARCOMMON
9: HK.RESET.PRINTER
1: RUN MT.BP GET.STACK.LOGNAME
3: LOGIN.CONTROL
5: PTERM CASE NOINVERT
6: RUN B.USER TERMINAL.SETUP.R0
8: IF @LOGNAME = 'root'THEN GO TCL
9: IF @LOGNAME = 'brutzy'  THEN GO TCL
0: IF @LOGNAME = 'raymond' THEN GO TCL
2: MM
4: TCL:
tom at line 24.
Bill
---Original Message-
m: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org]
Behalf Of Wjhonson
t: Thursday, April 12, 2012 3:08 PM
 u2-users@listserver.u2ug.org
ject: Re: [U2] COMMON Size MisMatch
 you *do* use CLEARCOMMON you have to be alert to gremlins as well.
TO is not expecting to have to reinitialize the system and so probably sn't.
 need to review what the Login process is doing as well.
 may end up wiping out control information such as the user's port, name, in
time, functions they can and can't do, menu access, default printer, d o on
and so forth.
l depends on how complex the login processor has become at your site.
e sites don't do a darn thing.  Some have thousands of lines of code at in.
Some of which set common (read environment) variables, that you on't
t* to clear, or at least that you want to reset if you do clear them.
Original Message-
m: Bill Brutzman bi...@hkmetalcraft.com
 U2 Users List u2-users@listserver.u2ug.org
t: Thu, Apr 12, 2012 11:52 am
ject: Re: [U2] COMMON Size MisMatch
ting my own dog food... I cranked CLEARCOMMON into the LOGTO SandBox   and
TO LIVE   paragraph commands.
ill
m: u2-users-bounces at listserver.u2ug.org mailto:u2-users-bounces at
tserver.u2ug.org] On Behalf Of on_Bausili at hcsc.net
: Thursday, July 16, 2009 10:17 AM
u2-users at listserver.u2ug.org
ect: [U2] Fw: COMMON misMatch
ce all common variables are cleared when you exit 

Re: [U2] COMMON Size MisMatch

2012-04-13 Thread Brian Leach
Or nicer to have a different name to COMMON e.g.

SESSION /CLEAR_THIS/ SESSION_STUFF(SMALL)
COMMON /KEEP_THIS/ COMMON_STUFF(BIG)

Or something along those lines.

Brian

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of David A. Green
Sent: 13 April 2012 15:56
To: 'U2 Users List'
Subject: Re: [U2] COMMON Size MisMatch

That's why you would specify.

Example:

COMMON /SYSSTUFF/ SYSSTUFF(100)

COMMON /MYSTUFF/ MYSTUFF.REC(100) -CLEAR.ON.LOGTO

Then only the MYSTUFF gets cleared.  This is the kind of logic that I have
to end up writing over and over again to make sure new files get opened when
a person does LOGTO to a different account.

Programmers would make all their Account specific data into a single named
common that has the flag to initialize on LOGTO.  And keep other
cross-account data in common that isn't flagged.

Easy.

David A. Green
(480) 813-1725
DAG Consulting

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Thursday, April 12, 2012 4:56 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] COMMON Size MisMatch


Okay that was a bad example.
But I think you get my general drift.
There are some common variables that are truly universal and should persist.



-Original Message-
From: Wjhonson wjhon...@aol.com
To: u2-users u2-users@listserver.u2ug.org
Sent: Thu, Apr 12, 2012 4:49 pm
Subject: Re: [U2] COMMON Size MisMatch



ou don't really want to clear all common variables all the time.
ome common variables are actually universal.
Take for example that you store in common the say full name of the user
who s logged in, and their extension.
hat doesn't change on a logto.  Some people use things like that in a LOCKED
lause to say John Brown has this locked, call him on extension 7204  so
the sers don't have to call the help desk on locks, they can peer to peer
it.
Sure you can reread things like that.  It's half white half black.
o I clear half the common ? Or reread half the common?

-Original Message-
rom: David A. Green dgr...@dagconsulting.com
o: 'U2 Users List' u2-users@listserver.u2ug.org
ent: Thu, Apr 12, 2012 4:44 pm
ubject: Re: [U2] COMMON Size MisMatch

hile this topic is on the table, can we request some kind of COMMON flag or
mmand that would tell the DBM to clear commons on a LOGTO?
avid A. Green
80) 813-1725
G Consulting
Original Message-
om: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Brutzman
nt: Thursday, April 12, 2012 2:22 PM
: U2 Users List
bject: Re: [U2] COMMON Size MisMatch
ill:
our commentary on this matter is very much appreciated.
s long as this new fix works... I expect to defer further investigation.
-Bill
Original Message-
om: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
nt: Thursday, April 12, 2012 4:56 PM
: u2-users@listserver.u2ug.org
bject: Re: [U2] COMMON Size MisMatch
ook inside those routines, and determine that they are agnostic about you
ming from LOGIN vs LOGTO Perhaps I'm the sole person in history to have ded
things that are wise about the distinction

---Original Message-
om: Bill Brutzman bi...@hkmetalcraft.com
: U2 Users List u2-users@listserver.u2ug.org
nt: Thu, Apr 12, 2012 12:46 pm
bject: Re: [U2] COMMON Size MisMatch
 presume that the following is workable...  Comments are welcome.
 LogTo the SandBox it is now just...
D VOC LLS
1: PA
2: CLEARCOMMON
3: LOGTO SANDBOX
4: WHO
D VOC LOGIN
1: PA
3: PTERM -ECHO DELAY
5: BREAK ON
7: CLEARCOMMON
9: HK.RESET.PRINTER
1: RUN MT.BP GET.STACK.LOGNAME
3: LOGIN.CONTROL
5: PTERM CASE NOINVERT
6: RUN B.USER TERMINAL.SETUP.R0
8: IF @LOGNAME = 'root'THEN GO TCL
9: IF @LOGNAME = 'brutzy'  THEN GO TCL
0: IF @LOGNAME = 'raymond' THEN GO TCL
2: MM
4: TCL:
tom at line 24.
Bill
---Original Message-
m: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org]
Behalf Of Wjhonson
t: Thursday, April 12, 2012 3:08 PM
 u2-users@listserver.u2ug.org
ject: Re: [U2] COMMON Size MisMatch
 you *do* use CLEARCOMMON you have to be alert to gremlins as well.
TO is not expecting to have to reinitialize the system and so probably sn't.
 need to review what the Login process is doing as well.
 may end up wiping out control information such as the user's port, name, in
time, functions they can and can't do, menu access, default printer, d o on
and so forth.
l depends on how complex the login processor has become at your site.
e sites don't do a darn thing.  Some have thousands of lines of code at in.
Some of which set common (read environment) variables, that you on't
t* to clear, or at least that you want to reset if you do clear them.
Original Message-
m: Bill Brutzman bi...@hkmetalcraft.com
 U2 Users List u2-users@listserver.u2ug.org
t: Thu, Apr 12, 2012 11:52 am
ject: Re: [U2] 

[U2] Monitoring a U2 server?

2012-04-13 Thread Rutherford, Marc

I have a request to help setup a monitoring process for Unidata on HP-UX.  So 
far the outside tools have not been specified, but will most likely be MS 
Windows based.

I am looking for any examples/documentation on what can be done to provide 
visibility  into system status.  Has anyone done something similar before?   
What Unidata and/or HP manuals should I look for?

Marc Rutherford
Principal Programmer Analyst
Advanced Bionics LLC
661) 362 1754

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] COMMON Size MisMatch

2012-04-13 Thread Bill Haskett

Brian:

The syntax described here must be UniVerse specific.  I don't see 
anything like this in UniData.  :-(


Bill


- Original Message -
*From:* br...@brianleach.co.uk
*To:* 'U2 Users List' u2-users@listserver.u2ug.org
*Date:* 4/13/2012 8:34 AM
*Subject:* Re: [U2] COMMON Size MisMatch

Or nicer to have a different name to COMMON e.g.

SESSION /CLEAR_THIS/ SESSION_STUFF(SMALL)
COMMON /KEEP_THIS/ COMMON_STUFF(BIG)

Or something along those lines.

Brian

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of David A. Green
Sent: 13 April 2012 15:56
To: 'U2 Users List'
Subject: Re: [U2] COMMON Size MisMatch

That's why you would specify.

Example:

COMMON /SYSSTUFF/ SYSSTUFF(100)

COMMON /MYSTUFF/ MYSTUFF.REC(100) -CLEAR.ON.LOGTO

Then only the MYSTUFF gets cleared.  This is the kind of logic that I have
to end up writing over and over again to make sure new files get opened when
a person does LOGTO to a different account.

Programmers would make all their Account specific data into a single named
common that has the flag to initialize on LOGTO.  And keep other
cross-account data in common that isn't flagged.

Easy.

David A. Green
(480) 813-1725
DAG Consulting

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Thursday, April 12, 2012 4:56 PM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] COMMON Size MisMatch


Okay that was a bad example.
But I think you get my general drift.
There are some common variables that are truly universal and should persist.



-Original Message-
From: Wjhonsonwjhon...@aol.com
To: u2-usersu2-users@listserver.u2ug.org
Sent: Thu, Apr 12, 2012 4:49 pm
Subject: Re: [U2] COMMON Size MisMatch



ou don't really want to clear all common variables all the time.
ome common variables are actually universal.
Take for example that you store in common the say full name of the user
who s logged in, and their extension.
hat doesn't change on a logto.  Some people use things like that in a LOCKED
lause to say John Brown has this locked, call him on extension 7204  so
the sers don't have to call the help desk on locks, they can peer to peer
it.
Sure you can reread things like that.  It's half white half black.
o I clear half the common ? Or reread half the common?

-Original Message-
rom: David A. Greendgr...@dagconsulting.com
o: 'U2 Users List'u2-users@listserver.u2ug.org
ent: Thu, Apr 12, 2012 4:44 pm
ubject: Re: [U2] COMMON Size MisMatch

hile this topic is on the table, can we request some kind of COMMON flag or
mmand that would tell the DBM to clear commons on a LOGTO?
avid A. Green
80) 813-1725
G Consulting
Original Message-
om: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Brutzman
nt: Thursday, April 12, 2012 2:22 PM
: U2 Users List
bject: Re: [U2] COMMON Size MisMatch
ill:
our commentary on this matter is very much appreciated.
s long as this new fix works... I expect to defer further investigation.
-Bill
Original Message-
om: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
nt: Thursday, April 12, 2012 4:56 PM
: u2-users@listserver.u2ug.org
bject: Re: [U2] COMMON Size MisMatch
ook inside those routines, and determine that they are agnostic about you
ming from LOGIN vs LOGTO Perhaps I'm the sole person in history to have ded
things that are wise about the distinction

---Original Message-
om: Bill Brutzmanbi...@hkmetalcraft.com
: U2 Users Listu2-users@listserver.u2ug.org
nt: Thu, Apr 12, 2012 12:46 pm
bject: Re: [U2] COMMON Size MisMatch
  presume that the following is workable...  Comments are welcome.
  LogTo the SandBox it is now just...
D VOC LLS
1: PA
2: CLEARCOMMON
3: LOGTO SANDBOX
4: WHO
D VOC LOGIN
1: PA
3: PTERM -ECHO DELAY
5: BREAK ON
7: CLEARCOMMON
9: HK.RESET.PRINTER
1: RUN MT.BP GET.STACK.LOGNAME
3: LOGIN.CONTROL
5: PTERM CASE NOINVERT
6: RUN B.USER TERMINAL.SETUP.R0
8: IF @LOGNAME = 'root'THEN GO TCL
9: IF @LOGNAME = 'brutzy'  THEN GO TCL
0: IF @LOGNAME = 'raymond' THEN GO TCL
2: MM
4: TCL:
tom at line 24.
Bill
---Original Message-
m: u2-users-boun...@listserver.u2ug.org
ailto:u2-users-boun...@listserver.u2ug.org]
Behalf Of Wjhonson
t: Thursday, April 12, 2012 3:08 PM
  u2-users@listserver.u2ug.org
ject: Re: [U2] COMMON Size MisMatch
  you *do* use CLEARCOMMON you have to be alert to gremlins as well.
TO is not expecting to have to reinitialize the system and so probably sn't.
  need to review what the Login process is doing as well.
  may end up wiping out control information such as the user's port, name, in
time, functions they can and can't do, menu access, default printer, d o on
and so forth.
l depends on how complex the login processor has become at your 

Re: [U2] Monitoring a U2 server?

2012-04-13 Thread David A. Green
Something that has worked for me in the past is to have a phantom process
kick off every ? minutes, gathering useful information, and writing it out
as HTML on the network.  Then a simple browser can view it as often as they
want, I also put a refresh in the HTML so if the browser is constantly
opened it will refresh automatically with the new data.  Be sure to have a
last update date/time to make sure the system is up and running.

You can get fancy and have thresholds that could send out an email or sms.

David A. Green
(480) 813-1725
DAG Consulting


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rutherford, Marc
Sent: Friday, April 13, 2012 8:50 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Monitoring a U2 server?


I have a request to help setup a monitoring process for Unidata on HP-UX.
So far the outside tools have not been specified, but will most likely be MS
Windows based.

I am looking for any examples/documentation on what can be done to provide
visibility  into system status.  Has anyone done something similar before?
What Unidata and/or HP manuals should I look for?

Marc Rutherford
Principal Programmer Analyst
Advanced Bionics LLC
661) 362 1754

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Monitoring a U2 server?

2012-04-13 Thread Colin Alfke
UniAdmin has a fairly comprehensive monitoring system. You can look at it
for inspiration (or show it as proof of concept, or just use it). I haven't
checked XAdmin though.

hth
Colin

-Original Message-
From: Rutherford, Marc
Sent: April 13, 2012 9:50 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Monitoring a U2 server?


I have a request to help setup a monitoring process for Unidata on HP-UX.
So far the outside tools have not been specified, but will most likely be MS
Windows based.

I am looking for any examples/documentation on what can be done to provide
visibility  into system status.  Has anyone done something similar before?
What Unidata and/or HP manuals should I look for?

Marc Rutherford


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] COMMON Size MisMatch

2012-04-13 Thread Wjhonson

I can't anything called CLEAR.ON.LOGTO which it seems you are implying is 
some kind of option.

I do agree with Brian that it would be nice, for just this issue if we could 
have

UCOMMON /STUFF1/ USER.NAME, USER.PHONE, LOGIN.DATE, UPARAMETERS(100)
...
COMMON /FILES/ FILE.NAMES, FILE.POINTERS(100), OTHER.STUFF(200)
COMMON /STUFF2/ MORE.OTHER.STUFF(200)

And then have UCOMMON persists across LOGTOs while COMMON does not
UCLEARCOMMON will clear both universal, and local common, while CLEARCOMMON 
will only clear COMMON


Rocket won't hire me as a systems programmer because I keep finding things to 
fix.

Will Johnson



-Original Message-
From: David A. Green dgr...@dagconsulting.com
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Fri, Apr 13, 2012 7:56 am
Subject: Re: [U2] COMMON Size MisMatch


That's why you would specify.
Example:
COMMON /SYSSTUFF/ SYSSTUFF(100)
COMMON /MYSTUFF/ MYSTUFF.REC(100) -CLEAR.ON.LOGTO
Then only the MYSTUFF gets cleared.  This is the kind of logic that I have
o end up writing over and over again to make sure new files get opened when
 person does LOGTO to a different account.
Programmers would make all their Account specific data into a single named
ommon that has the flag to initialize on LOGTO.  And keep other
ross-account data in common that isn't flagged.
Easy.
David A. Green
480) 813-1725
AG Consulting
-Original Message-
rom: u2-users-boun...@listserver.u2ug.org
mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
ent: Thursday, April 12, 2012 4:56 PM
o: u2-users@listserver.u2ug.org
ubject: Re: [U2] COMMON Size MisMatch

kay that was a bad example.
ut I think you get my general drift.
here are some common variables that are truly universal and should persist.

-Original Message-
rom: Wjhonson wjhon...@aol.com
o: u2-users u2-users@listserver.u2ug.org
ent: Thu, Apr 12, 2012 4:49 pm
ubject: Re: [U2] COMMON Size MisMatch

ou don't really want to clear all common variables all the time.
me common variables are actually universal.
ake for example that you store in common the say full name of the user
ho s logged in, and their extension.
at doesn't change on a logto.  Some people use things like that in a LOCKED
ause to say John Brown has this locked, call him on extension 7204  so
he sers don't have to call the help desk on locks, they can peer to peer
t.
ure you can reread things like that.  It's half white half black.
 I clear half the common ? Or reread half the common?
-Original Message-
om: David A. Green dgr...@dagconsulting.com
: 'U2 Users List' u2-users@listserver.u2ug.org
nt: Thu, Apr 12, 2012 4:44 pm
bject: Re: [U2] COMMON Size MisMatch
hile this topic is on the table, can we request some kind of COMMON flag or
mand that would tell the DBM to clear commons on a LOGTO?
vid A. Green
0) 813-1725
 Consulting
---Original Message-
m: u2-users-boun...@listserver.u2ug.org
ilto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Bill Brutzman
t: Thursday, April 12, 2012 2:22 PM
 U2 Users List
ject: Re: [U2] COMMON Size MisMatch
ll:
ur commentary on this matter is very much appreciated.
 long as this new fix works... I expect to defer further investigation.
Bill
---Original Message-
m: u2-users-boun...@listserver.u2ug.org
ilto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
t: Thursday, April 12, 2012 4:56 PM
 u2-users@listserver.u2ug.org
ject: Re: [U2] COMMON Size MisMatch
ok inside those routines, and determine that they are agnostic about you
ing from LOGIN vs LOGTO Perhaps I'm the sole person in history to have ded
hings that are wise about the distinction
---Original Message-
m: Bill Brutzman bi...@hkmetalcraft.com
 U2 Users List u2-users@listserver.u2ug.org
t: Thu, Apr 12, 2012 12:46 pm
ject: Re: [U2] COMMON Size MisMatch
presume that the following is workable...  Comments are welcome.
LogTo the SandBox it is now just...
 VOC LLS
: PA
: CLEARCOMMON
: LOGTO SANDBOX
: WHO
 VOC LOGIN
: PA
: PTERM -ECHO DELAY
: BREAK ON
: CLEARCOMMON
: HK.RESET.PRINTER
: RUN MT.BP GET.STACK.LOGNAME
: LOGIN.CONTROL
: PTERM CASE NOINVERT
: RUN B.USER TERMINAL.SETUP.R0
: IF @LOGNAME = 'root'THEN GO TCL
: IF @LOGNAME = 'brutzy'  THEN GO TCL
: IF @LOGNAME = 'raymond' THEN GO TCL
: MM
: TCL:
om at line 24.
ill
--Original Message-
: u2-users-boun...@listserver.u2ug.org
ilto:u2-users-boun...@listserver.u2ug.org]
ehalf Of Wjhonson
: Thursday, April 12, 2012 3:08 PM
u2-users@listserver.u2ug.org
ect: Re: [U2] COMMON Size MisMatch
you *do* use CLEARCOMMON you have to be alert to gremlins as well.
O is not expecting to have to reinitialize the system and so probably sn't.
need to review what the Login process is doing as well.
may end up wiping out control information such as the user's port, name, in
ime, functions they can and can't do, menu access, default printer, d o on
nd so forth.
 depends on how complex the login processor has become at your site.
 sites don't do a darn thing.  Some have thousands 

Re: [U2] Monitoring a U2 server?

2012-04-13 Thread Daniel McGrath
As of the March release of U2 DBTools (downloadable free from our site), I 
would advise that you use XAdmin, not UniAdmin. XAdmin now encompasses all the 
functionality relating to UniData that was in UniAdmin. It also allows you to 
'extend it' yourself if you have Java programmers available.

If you are coming to U2U this year, we might have something quite interesting 
to show you along the lines of automated system monitoring...

Regards,

Dan McGrath
Product Manager
Rocket Software

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Colin Alfke
Sent: Friday, April 13, 2012 10:41 AM
To: 'U2 Users List'
Subject: Re: [U2] Monitoring a U2 server?

UniAdmin has a fairly comprehensive monitoring system. You can look at it for 
inspiration (or show it as proof of concept, or just use it). I haven't checked 
XAdmin though.

hth
Colin

-Original Message-
From: Rutherford, Marc
Sent: April 13, 2012 9:50 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Monitoring a U2 server?


I have a request to help setup a monitoring process for Unidata on HP-UX.
So far the outside tools have not been specified, but will most likely be MS 
Windows based.

I am looking for any examples/documentation on what can be done to provide 
visibility  into system status.  Has anyone done something similar before?
What Unidata and/or HP manuals should I look for?

Marc Rutherford


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Monitoring a U2 server?

2012-04-13 Thread Wjhonson

Seems quite a bit underdefined Marc.
Sounds like a CEO type request :)

I just found a process which every week, in a batch phantom, does a logto every 
account defined.
Why?  I don't know why.  Evidently in the past there was some issue with that 
particular thing.

I think you need to define what sort of things you want to monitor.


-Original Message-
From: Rutherford, Marc marc.rutherf...@advancedbionics.com
To: u2-users u2-users@listserver.u2ug.org
Sent: Fri, Apr 13, 2012 8:50 am
Subject: [U2] Monitoring a U2 server?



 have a request to help setup a monitoring process for Unidata on HP-UX.  So 
ar the outside tools have not been specified, but will most likely be MS 
indows based.
I am looking for any examples/documentation on what can be done to provide 
isibility  into system status.  Has anyone done something similar before?   
hat Unidata and/or HP manuals should I look for?
Marc Rutherford
rincipal Programmer Analyst
dvanced Bionics LLC
61) 362 1754
___
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Monitoring a U2 server?

2012-04-13 Thread Jeff Schasny
I have used Nagios for monitoring systems.networks very successfully. 
You can monitor your entire network from a single point and go from 
things as simple as 'is this thing pingable' to has the disk space on 
drive X changed by more than 10%' or Are the following list of services 
available on this machine.


Oh, and did I mention it's free.

Rutherford, Marc wrote:

I have a request to help setup a monitoring process for Unidata on HP-UX.  So 
far the outside tools have not been specified, but will most likely be MS 
Windows based.

I am looking for any examples/documentation on what can be done to provide 
visibility  into system status.  Has anyone done something similar before?   
What Unidata and/or HP manuals should I look for?

Marc Rutherford
Principal Programmer Analyst
Advanced Bionics LLC
661) 362 1754

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

  


--

Jeff Schasny - Denver, Co, USA
jschasny at gmail dot com

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] COMMON Size MisMatch

2012-04-13 Thread Wols Lists
On 13/04/12 15:56, David A. Green wrote:
 That's why you would specify.
 
 Example:
 
 COMMON /SYSSTUFF/ SYSSTUFF(100)
 
 COMMON /MYSTUFF/ MYSTUFF.REC(100) -CLEAR.ON.LOGTO
 
 Then only the MYSTUFF gets cleared.  This is the kind of logic that I have
 to end up writing over and over again to make sure new files get opened when
 a person does LOGTO to a different account.
 
 Programmers would make all their Account specific data into a single named
 common that has the flag to initialize on LOGTO.  And keep other
 cross-account data in common that isn't flagged.
 
 Easy.

Actually, that IS easy. TODAY. Let's say you want to store a filepointer
to VOC in common, you create the following INCLUDE file...

COMMON /VOC/ F.VOC, D.VOC, VOC.OPEN
IF VOC.OPEN NE @WHO THEN
  VOC.OPEN = @WHO
  OPEN , VOC TO F.VOC ...
  OPEN DICT, VOC TO D.VOC ...
END

I hope I've got the right @variable, but as soon as you LOGTO, the IF
goes false, and next to you try access it, it will re-initialise itself.

Cheers,
Wol

(Moderator moan - I've just snipped an AWFUL lot of text ...)
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] COMMON Size MisMatch

2012-04-13 Thread Wjhonson

Include file?
You mean in every program?
Or you mean modify the LOGIN process to add this 
I would suggest that you do something like
IF VOC.OPEN NE @WHO THEN CALL RESET.ALL.OPEN.FILE.POINTERS

since you may have pointers to lots of files, not just VOC








-Original Message-
From: Wols Lists antli...@youngman.org.uk
To: u2-users u2-users@listserver.u2ug.org
Sent: Fri, Apr 13, 2012 11:05 am
Subject: Re: [U2] COMMON Size MisMatch


On 13/04/12 15:56, David A. Green wrote:
 That's why you would specify.
 
 Example:
 
 COMMON /SYSSTUFF/ SYSSTUFF(100)
 
 COMMON /MYSTUFF/ MYSTUFF.REC(100) -CLEAR.ON.LOGTO
 
 Then only the MYSTUFF gets cleared.  This is the kind of logic that I have
 to end up writing over and over again to make sure new files get opened when
 a person does LOGTO to a different account.
 
 Programmers would make all their Account specific data into a single named
 common that has the flag to initialize on LOGTO.  And keep other
 cross-account data in common that isn't flagged.
 
 Easy.
Actually, that IS easy. TODAY. Let's say you want to store a filepointer
o VOC in common, you create the following INCLUDE file...
COMMON /VOC/ F.VOC, D.VOC, VOC.OPEN
F VOC.OPEN NE @WHO THEN
 VOC.OPEN = @WHO
 OPEN , VOC TO F.VOC ...
 OPEN DICT, VOC TO D.VOC ...
ND
I hope I've got the right @variable, but as soon as you LOGTO, the IF
oes false, and next to you try access it, it will re-initialise itself.
Cheers,
ol
(Moderator moan - I've just snipped an AWFUL lot of text ...)
__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] COMMON Size MisMatch

2012-04-13 Thread David A. Green
Yes, but why make all the programmers in the world repeat this same code
over and over?  It could easily be accomplished by the database engine.  It
could be a new keyword across MV database systems.  And another step in
bring the MV worlds closer together.

David A. Green
(480) 813-1725
DAG Consulting


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wols Lists
Sent: Friday, April 13, 2012 11:00 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] COMMON Size MisMatch

On 13/04/12 15:56, David A. Green wrote:
 That's why you would specify.
 
 Example:
 
 COMMON /SYSSTUFF/ SYSSTUFF(100)
 
 COMMON /MYSTUFF/ MYSTUFF.REC(100) -CLEAR.ON.LOGTO
 
 Then only the MYSTUFF gets cleared.  This is the kind of logic that I 
 have to end up writing over and over again to make sure new files get 
 opened when a person does LOGTO to a different account.
 
 Programmers would make all their Account specific data into a single 
 named common that has the flag to initialize on LOGTO.  And keep other 
 cross-account data in common that isn't flagged.
 
 Easy.

Actually, that IS easy. TODAY. Let's say you want to store a filepointer to
VOC in common, you create the following INCLUDE file...

COMMON /VOC/ F.VOC, D.VOC, VOC.OPEN
IF VOC.OPEN NE @WHO THEN
  VOC.OPEN = @WHO
  OPEN , VOC TO F.VOC ...
  OPEN DICT, VOC TO D.VOC ...
END

I hope I've got the right @variable, but as soon as you LOGTO, the IF goes
false, and next to you try access it, it will re-initialise itself.

Cheers,
Wol

(Moderator moan - I've just snipped an AWFUL lot of text ...)
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] SB Report page counter

2012-04-13 Thread Woodward, Bob
Hi group,

 

I'm having a problem with page breaks and page number counter in a SB
Form report.  I have a report that is set up with Headings, Column
Headings, and a Detail line defined.  I have a dict item defined,
PAGE.OF with a derived field definition of:

 ('Page ':@RV.MV.PAGE:' of ':@RV.MV.PAGE.CNT)

On the report, I am getting this value as:

  Page 1 of 1

Unfortunately, it's not changing for a more than one page listing.  The
format of the report is that it's a single record with multiple details
from the AMV group of the record.  It's like an invoice record where the
structure is a single record with MV attributes for the detail lines.

 

If there are enough values, the printout starts with the headings on
page one, then the column headings, then a number of detail (MV) lines.
It then reprints the headings and column headings then continues with
the rest of the detail (MV) lines.

 

If I send the report to the HOLD file then edit the output, I see the
printer initialize escape sequences at the top, before the first
heading, but at the point where the headings are printed a second time,
I am not seeing a Form-Feed escape sequence.

 

Anyone have thoughts on where I might look for what controls the page
length and what triggers the update to the two @ variables?  Hope I've
explained this properly.

 

TIA,

BobW

 

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Monitoring a U2 server?

2012-04-13 Thread John Hester
Ditto to what Jeff said.  Nagios is extremely flexible.  I use it to
monitor everything from user count, CPU usage, and partition space on
the UV server to fan, temperature, and power supply status on Cisco
routers and HP switches.  Nagios is free and there are a whole host of
free, custom-made plugins available for monitoring a wide array of
devices.  You can also alert different people via various means
depending on the specific service being monitored and the severity of
the problem.  Eg: if a server is down, you might want a page or SMS
message 24x7, but if new Windows server updates are available, you might
just want an email once a week during business hours.  If you run Nagios
on CentOS (also free), the only investment is your time.  These links
are a good starting point:

http://www.nagios.org/
http://exchange.nagios.org/

Go here for installation instructions specific to CentOS:

http://docs.cslabs.clarkson.edu/wiki/Install_Nagios_on_CentOS_5

There is a free add-on available called Pnp4Nagios that can produce nice
graphs on the fly of things like disk space and CPU usage over various
time periods:

http://docs.pnp4nagios.org/pnp-0.6/start

And my favorite free add-on is a tool called NagVis that produces a
real-time graphical map of your entire network:

http://www.nagvis.org/

Healthy devices are green, ones with warning-level problems are yellow,
and anything critical is red.  I use a Window 7 active desktop gadget to
keep it visible at all times. It also produces a buzzer sound through
the PC speakers when something goes critical.

-John

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jeff Schasny
Sent: Friday, April 13, 2012 10:19 AM
To: U2 Users List
Subject: Re: [U2] Monitoring a U2 server?

I have used Nagios for monitoring systems.networks very successfully. 
You can monitor your entire network from a single point and go from
things as simple as 'is this thing pingable' to has the disk space on
drive X changed by more than 10%' or Are the following list of services
available on this machine.

Oh, and did I mention it's free.

Rutherford, Marc wrote:
 I have a request to help setup a monitoring process for Unidata on
HP-UX.  So far the outside tools have not been specified, but will most
likely be MS Windows based.

 I am looking for any examples/documentation on what can be done to
provide visibility  into system status.  Has anyone done something
similar before?   What Unidata and/or HP manuals should I look for?

 Marc Rutherford
 Principal Programmer Analyst
 Advanced Bionics LLC
 661) 362 1754

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

   

--

Jeff Schasny - Denver, Co, USA
jschasny at gmail dot com

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] COMMON Size MisMatch

2012-04-13 Thread Martin Phillips
Hi all,

As a possible suggestion for how this could be implemented, we have a couple of 
features in QM that together do the job.

1. The ON.LOGTO paragraph.
If present, this runs as part of a LOGTO command, before leaving the old 
account.

2. The DELETE.COMMON command.
This deletes the specified named common. Called from ON.LOGTO, the task becomes 
trivial.

Perhaps U2 could do the same?


Martin Phillips
Ladybridge Systems Ltd
17b Coldstream Lane, Hardingstone, Northampton NN4 6DB, England
+44 (0)1604-709200 


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] SB Report page counter

2012-04-13 Thread Dave Davis
Is your Multiple Records Per Page set to N?

Are your multi-valued fields set up with negative Max MV Lines?

I've not encountered this problem in my forms.

Make the entire report in the D section - you don't really need an actual 
heading section for a form-style report.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Woodward, Bob
Sent: Friday, April 13, 2012 2:38 PM
To: SB Solutions; U2 Users List
Subject: [U2] SB Report page counter

Hi group,



I'm having a problem with page breaks and page number counter in a SB
Form report.  I have a report that is set up with Headings, Column
Headings, and a Detail line defined.  I have a dict item defined,
PAGE.OF with a derived field definition of:

 ('Page ':@RV.MV.PAGE:' of ':@RV.MV.PAGE.CNT)

On the report, I am getting this value as:

  Page 1 of 1

Unfortunately, it's not changing for a more than one page listing.  The
format of the report is that it's a single record with multiple details
from the AMV group of the record.  It's like an invoice record where the
structure is a single record with MV attributes for the detail lines.



If there are enough values, the printout starts with the headings on
page one, then the column headings, then a number of detail (MV) lines.
It then reprints the headings and column headings then continues with
the rest of the detail (MV) lines.



If I send the report to the HOLD file then edit the output, I see the
printer initialize escape sequences at the top, before the first
heading, but at the point where the headings are printed a second time,
I am not seeing a Form-Feed escape sequence.



Anyone have thoughts on where I might look for what controls the page
length and what triggers the update to the two @ variables?  Hope I've
explained this properly.



TIA,

BobW



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



Dave Davis
Team Lead, RD

P: 614-875-4910 x108
F: 614-875-4088
E: dda...@harriscomputer.com
[http://www.harriscomputer.com/images/signatures/HarrisSchools.gif]

[http://www.harriscomputer.com/images/signatures/DivisionofHarris.gif]http://www.harriscomputer.com/
6110 Enterprise Parkway
Grove City, OH
43123
www.harris-schoolsolutions.comhttp://www.harris-schoolsolutions.com

This message is intended exclusively for the individual or entity to which it 
is addressed. This communication may contain information that is proprietary, 
privileged or confidential or otherwise legally exempt from disclosure. If you 
are not the named addressee, you are not authorized to read, print, retain, 
copy or disseminate this message or any part of it. If you have received this 
message in error, please notify the sender immediately by e-mail and delete all 
copies of the message.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] COMMON Size MisMatch

2012-04-13 Thread Wjhonson




Sounds good Martin.  Maybe someone named Will could code this up in Universe 
BASIC and post it to the PickWiki.
Oops... why did I say that.



-Original Message-
From: Martin Phillips martinphill...@ladybridge.com
To: 'U2 Users List' u2-users@listserver.u2ug.org
Sent: Fri, Apr 13, 2012 11:50 am
Subject: Re: [U2] COMMON Size MisMatch


Hi all,
As a possible suggestion for how this could be implemented, we have a couple of 
eatures in QM that together do the job.
1. The ON.LOGTO paragraph.
f present, this runs as part of a LOGTO command, before leaving the old 
ccount.
2. The DELETE.COMMON command.
his deletes the specified named common. Called from ON.LOGTO, the task becomes 
rivial.
Perhaps U2 could do the same?

artin Phillips
adybridge Systems Ltd
7b Coldstream Lane, Hardingstone, Northampton NN4 6DB, England
44 (0)1604-709200 

__
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Monitoring a U2 server?

2012-04-13 Thread Rutherford, Marc
Nice, I like that I can chose what to monitor and determine how I want to 
report it...

Marc Rutherford
Principal Programmer Analyst
Advanced Bionics LLC
661) 362 1754


-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of David A. Green
Sent: Friday, April 13, 2012 9:26 AM
To: 'U2 Users List'
Subject: Re: [U2] Monitoring a U2 server?

Something that has worked for me in the past is to have a phantom process kick 
off every ? minutes, gathering useful information, and writing it out as HTML 
on the network.  Then a simple browser can view it as often as they want, I 
also put a refresh in the HTML so if the browser is constantly opened it will 
refresh automatically with the new data.  Be sure to have a last update 
date/time to make sure the system is up and running.

You can get fancy and have thresholds that could send out an email or sms.

David A. Green
(480) 813-1725
DAG Consulting


-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rutherford, Marc
Sent: Friday, April 13, 2012 8:50 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Monitoring a U2 server?


I have a request to help setup a monitoring process for Unidata on HP-UX.
So far the outside tools have not been specified, but will most likely be MS 
Windows based.

I am looking for any examples/documentation on what can be done to provide 
visibility  into system status.  Has anyone done something similar before?
What Unidata and/or HP manuals should I look for?

Marc Rutherford
Principal Programmer Analyst
Advanced Bionics LLC
661) 362 1754

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Monitoring a U2 server?

2012-04-13 Thread Rutherford, Marc
Dan,

I cant make the U2U, I assume the sessions will be available afterward 
(CD/download)?

Marc Rutherford
Principal Programmer Analyst
Advanced Bionics LLC
661) 362 1754


-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Daniel McGrath
Sent: Friday, April 13, 2012 10:01 AM
To: U2 Users List
Subject: Re: [U2] Monitoring a U2 server?

As of the March release of U2 DBTools (downloadable free from our site), I 
would advise that you use XAdmin, not UniAdmin. XAdmin now encompasses all the 
functionality relating to UniData that was in UniAdmin. It also allows you to 
'extend it' yourself if you have Java programmers available.

If you are coming to U2U this year, we might have something quite interesting 
to show you along the lines of automated system monitoring...

Regards,

Dan McGrath
Product Manager
Rocket Software

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Colin Alfke
Sent: Friday, April 13, 2012 10:41 AM
To: 'U2 Users List'
Subject: Re: [U2] Monitoring a U2 server?

UniAdmin has a fairly comprehensive monitoring system. You can look at it for 
inspiration (or show it as proof of concept, or just use it). I haven't checked 
XAdmin though.

hth
Colin

-Original Message-
From: Rutherford, Marc
Sent: April 13, 2012 9:50 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Monitoring a U2 server?


I have a request to help setup a monitoring process for Unidata on HP-UX.
So far the outside tools have not been specified, but will most likely be MS 
Windows based.

I am looking for any examples/documentation on what can be done to provide 
visibility  into system status.  Has anyone done something similar before?
What Unidata and/or HP manuals should I look for?

Marc Rutherford


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Monitoring a U2 server?

2012-04-13 Thread Rutherford, Marc

You got it - 'make it better' !!

Marc Rutherford
Principal Programmer Analyst
Advanced Bionics LLC
661) 362 1754


-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wjhonson
Sent: Friday, April 13, 2012 10:02 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] Monitoring a U2 server?


Seems quite a bit underdefined Marc.
Sounds like a CEO type request :)

I just found a process which every week, in a batch phantom, does a logto every 
account defined.
Why?  I don't know why.  Evidently in the past there was some issue with that 
particular thing.

I think you need to define what sort of things you want to monitor.


-Original Message-
From: Rutherford, Marc marc.rutherf...@advancedbionics.com
To: u2-users u2-users@listserver.u2ug.org
Sent: Fri, Apr 13, 2012 8:50 am
Subject: [U2] Monitoring a U2 server?



 have a request to help setup a monitoring process for Unidata on HP-UX.  So ar 
the outside tools have not been specified, but will most likely be MS indows 
based.
I am looking for any examples/documentation on what can be done to provide 
isibility  into system status.  Has anyone done something similar before?   
hat Unidata and/or HP manuals should I look for?
Marc Rutherford
rincipal Programmer Analyst
dvanced Bionics LLC
61) 362 1754
___
2-Users mailing list
2-us...@listserver.u2ug.org
ttp://listserver.u2ug.org/mailman/listinfo/u2-users

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Monitoring a U2 server?

2012-04-13 Thread Rutherford, Marc
Thanks,

Marc Rutherford
Principal Programmer Analyst
Advanced Bionics LLC
661) 362 1754


-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Jeff Schasny
Sent: Friday, April 13, 2012 10:19 AM
To: U2 Users List
Subject: Re: [U2] Monitoring a U2 server?

I have used Nagios for monitoring systems.networks very successfully. 
You can monitor your entire network from a single point and go from things as 
simple as 'is this thing pingable' to has the disk space on drive X changed by 
more than 10%' or Are the following list of services available on this 
machine.

Oh, and did I mention it's free.

Rutherford, Marc wrote:
 I have a request to help setup a monitoring process for Unidata on HP-UX.  So 
 far the outside tools have not been specified, but will most likely be MS 
 Windows based.

 I am looking for any examples/documentation on what can be done to provide 
 visibility  into system status.  Has anyone done something similar before?   
 What Unidata and/or HP manuals should I look for?

 Marc Rutherford
 Principal Programmer Analyst
 Advanced Bionics LLC
 661) 362 1754

 ___
 U2-Users mailing list
 U2-Users@listserver.u2ug.org
 http://listserver.u2ug.org/mailman/listinfo/u2-users

   

--

Jeff Schasny - Denver, Co, USA
jschasny at gmail dot com

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] Monitoring a U2 server?

2012-04-13 Thread Wally Terhune
No. 
U2U content will only be available at U2U events. (USA, UK, AUS)
Regards,

Wally Terhune
Technical Support Architect
Rocket Software
4600 South Ulster Street, Suite 1100 **Denver, CO 80237 **USA
Tel: +1.720.475.8055
Email: wterh...@rs.com | Web: www.rocketsoftware.com/u2




-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Rutherford, Marc
Sent: Friday, April 13, 2012 1:36 PM
To: U2 Users List
Subject: Re: [U2] Monitoring a U2 server?

Dan,

I cant make the U2U, I assume the sessions will be available afterward 
(CD/download)?

Marc Rutherford
Principal Programmer Analyst
Advanced Bionics LLC
661) 362 1754


-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Daniel McGrath
Sent: Friday, April 13, 2012 10:01 AM
To: U2 Users List
Subject: Re: [U2] Monitoring a U2 server?

As of the March release of U2 DBTools (downloadable free from our site), I 
would advise that you use XAdmin, not UniAdmin. XAdmin now encompasses all the 
functionality relating to UniData that was in UniAdmin. It also allows you to 
'extend it' yourself if you have Java programmers available.

If you are coming to U2U this year, we might have something quite interesting 
to show you along the lines of automated system monitoring...

Regards,

Dan McGrath
Product Manager
Rocket Software

-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Colin Alfke
Sent: Friday, April 13, 2012 10:41 AM
To: 'U2 Users List'
Subject: Re: [U2] Monitoring a U2 server?

UniAdmin has a fairly comprehensive monitoring system. You can look at it for 
inspiration (or show it as proof of concept, or just use it). I haven't checked 
XAdmin though.

hth
Colin

-Original Message-
From: Rutherford, Marc
Sent: April 13, 2012 9:50 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Monitoring a U2 server?


I have a request to help setup a monitoring process for Unidata on HP-UX.
So far the outside tools have not been specified, but will most likely be MS 
Windows based.

I am looking for any examples/documentation on what can be done to provide 
visibility  into system status.  Has anyone done something similar before?
What Unidata and/or HP manuals should I look for?

Marc Rutherford


___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] SB Report page counter

2012-04-13 Thread Woodward, Bob
Hi Dave,

It was the negative value in Max MV Lines that fixed it.  Thanks!

BobW

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Dave Davis
Sent: Friday, April 13, 2012 11:54 AM
To: U2 Users List
Subject: Re: [U2] SB Report page counter

Is your Multiple Records Per Page set to N?

Are your multi-valued fields set up with negative Max MV Lines?

I've not encountered this problem in my forms.

Make the entire report in the D section - you don't really need an
actual heading section for a form-style report.

-Original Message-
From: u2-users-boun...@listserver.u2ug.org
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Woodward, Bob
Sent: Friday, April 13, 2012 2:38 PM
To: SB Solutions; U2 Users List
Subject: [U2] SB Report page counter

Hi group,



I'm having a problem with page breaks and page number counter in a SB
Form report.  I have a report that is set up with Headings, Column
Headings, and a Detail line defined.  I have a dict item defined,
PAGE.OF with a derived field definition of:

 ('Page ':@RV.MV.PAGE:' of ':@RV.MV.PAGE.CNT)

On the report, I am getting this value as:

  Page 1 of 1

Unfortunately, it's not changing for a more than one page listing.  The
format of the report is that it's a single record with multiple details
from the AMV group of the record.  It's like an invoice record where the
structure is a single record with MV attributes for the detail lines.



If there are enough values, the printout starts with the headings on
page one, then the column headings, then a number of detail (MV) lines.
It then reprints the headings and column headings then continues with
the rest of the detail (MV) lines.



If I send the report to the HOLD file then edit the output, I see the
printer initialize escape sequences at the top, before the first
heading, but at the point where the headings are printed a second time,
I am not seeing a Form-Feed escape sequence.



Anyone have thoughts on where I might look for what controls the page
length and what triggers the update to the two @ variables?  Hope I've
explained this properly.



TIA,

BobW



___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users



Dave Davis
Team Lead, RD

P: 614-875-4910 x108
F: 614-875-4088
E: dda...@harriscomputer.com
 
[http://www.harriscomputer.com/images/signatures/HarrisSchools.gif]

[http://www.harriscomputer.com/images/signatures/DivisionofHarris.gif]h
ttp://www.harriscomputer.com/
6110 Enterprise Parkway
Grove City, OH
43123
www.harris-schoolsolutions.comhttp://www.harris-schoolsolutions.com

This message is intended exclusively for the individual or entity to
which it is addressed. This communication may contain information that
is proprietary, privileged or confidential or otherwise legally exempt
from disclosure. If you are not the named addressee, you are not
authorized to read, print, retain, copy or disseminate this message or
any part of it. If you have received this message in error, please
notify the sender immediately by e-mail and delete all copies of the
message.

___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


[U2] DOS /c and the HOLD file

2012-04-13 Thread Wols Lists
Just a quickie - I'm trying to run a command and pass a pathname to the
HOLD file

DOS /c 'pcl6 -sOutputFile=HOLD\PO.pdf HOLD\PO.pcl'

I can't work out how to get dos to handle the  properly - everything
seems to work perfectly until I put an  into the command. Seeing as
it's a print file I've just created with a mode 3 setptr and LIST LPTR,
I really don't want to struggle to move everything around.

That said, I might be better off writing a basic program to move it to
UFD and working on it from there :-(

Cheers,
Wol
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users


Re: [U2] DOS /c and the HOLD file

2012-04-13 Thread Daniel McGrath
You need to escape them with a caret (^)

Try: DOS /c 'pcl6 -sOutputFile=^HOLD^\PO.pdf ^HOLD^\PO.pcl'

Regards,

Dan McGrath
Product Manager
Rocket Software
4600 S. Ulster Street **Suite 1100 **Denver, CO 80237 * USA
t: +1.720.475.8098 * m: +1.617.630.7392 * e:dmcgr...@rocketsoftware.com w: 
rocketsoftware.com/u2





-Original Message-
From: u2-users-boun...@listserver.u2ug.org 
[mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Wols Lists
Sent: Friday, April 13, 2012 4:25 PM
To: U2 Users List
Subject: [U2] DOS /c and the HOLD file

Just a quickie - I'm trying to run a command and pass a pathname to the HOLD 
file

DOS /c 'pcl6 -sOutputFile=HOLD\PO.pdf HOLD\PO.pcl'

I can't work out how to get dos to handle the  properly - everything seems to 
work perfectly until I put an  into the command. Seeing as it's a print file 
I've just created with a mode 3 setptr and LIST LPTR, I really don't want to 
struggle to move everything around.

That said, I might be better off writing a basic program to move it to UFD 
and working on it from there :-(

Cheers,
Wol
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users
___
U2-Users mailing list
U2-Users@listserver.u2ug.org
http://listserver.u2ug.org/mailman/listinfo/u2-users