RE: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Tony G
I'll take a wild guess. Maybe IBM can confirm this.

When you run a BASIC program the runtime allocates memory space
for BASIC variables.  When you use these variables for strings,
integers, or dynamic arrays the BASIC runtime manages that space.

When you EXECUTE, another process is temporarily created.  When
you CAPTURE, the StdOut from that process needs to go
"somewhere".  They can't push it back directly into BASIC space
of the parent process so they allocate new memory space (on the
"heap") and load the data.  When they return control back to your
current process they either return a pointer back to BASIC that
indicates where the new memory space is, or they will pass back a
string which BASIC then stores in the Capturing var.

Now, it seems to me that "someone" isn't letting go of the memory
that was created in the secondary process.
- If a 'ps' shows new processes are still there after Execute,
then it's obvious that because the processes aren't gone they
haven't released their resources.
- If the processes are gone then it's possible that a handle to
the new memory space was passed back to BASIC, but BASIC didn't
release the resource after it was used to populate your Capturing
variable.
- It could also be possible that it's the responsibility of the
secondary process to release its own resources, but due to some
release-specific bug in your HPUX11.23/UV10.2.6 that isn't
happening.

I would ask IBM to find out which process is supposed to be
releasing memory.  Specifically, someone does a malloc() and
someone is supposed to be doing a free().  It's pretty easy to
miss one free() instruction, and that's what causes memory leaks
like what you're seeing.

HTH
Tony Gravagno
Nebula Research and Development
TG@ remove.pleaseNebula-RnD.com

Currently serving as technical editor for "C#3.0 Unleashed" for
SAMS Publishing, and at the very moment I read this note I
happened to also be reading about memory allocation and garbage
collection - which generally isn't a problem in .NET.   ;)

(Link to book at Amazon.com, book won't be available for a couple
months.)
http://tinyurl.com/2mvn2v 

> From: Stevenson, Charles 
>CDS.BP M
>01 LOOP
>02   EXECUTE '* anything' CAPTURING X
>03 REPEAT
> 
>>RUN CDS.BP M
>Memory fault(coredump)
>3046$ls -l core
>-rw---   1 cds33896   tech   279499648 Mar 17 17:11
core
> > This is on HP Itanium, HPUX11.23, UV10.2.6
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault. {Unclassified}

2008-03-17 Thread HENDERSON MIKE, MR
UV 10.1.18, Windows Server 2003
Using Louie's code without the DISPLAY

Ran over two-and-a-quarter million iterations so far, task memory
allocation for "tl_server.exe" is still 10,344KB, the same as it was
when I started. It also spawns a "SYSTEM" thread which steadily consumes
40KB


Regards


Mike

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Louie Bergsagel
Sent: Tuesday, 18 March 2008 1:52 p.m.
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory
fault.

I killed this after 1.4 million iterations of executing and displaying
the date (capturing X) and a counter with no problems.

 TEST.FATAL.CS
0001   COUNTER = 0
0002   LOOP
0003  EXECUTE "DATE" CAPTURING X
0004  COUNTER += 1
0005  DISPLAY X:" ":COUNTER
0006   REPEAT
0007END

Monday, March 17, 2008  05:47pm~ 1,406,473

I don't dare let it run overnight, in case it does blow up the system.

-- Louie
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
The information contained in this Internet Email message is intended
for the addressee only and may contain privileged information, but not
necessarily the official views or opinions of the New Zealand Defence Force.
If you are not the intended recipient you must not use, disclose, copy or 
distribute this message or the information in it.

If you have received this message in error, please Email or telephone
the sender immediately.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Stevenson, Charles
From: Allen Egerton
> Capturing writes to uvtemp.  
> Are you running out of disk space or perhaps inodes?

Good question, but no.  Plenty of room in uvtemp.  Plenty of inodes.
It does leave an 0-byte capturenaa file in uvtemp.
0-byte, because I am really doing nothing (execute a comment).
If I do something real, the capture file does contain the appropriate
thing, but it does not correspond to the runaway memory usage.

It also leaves an aceb printer memory segment that needs cleaning up
too.
 (ipcs -mop  &  uv/bin/uvlictool clean_lic )
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Bill Haskett
Charles:

I ran this in UV v10.2 PE on my XP Thinkpad.  It's been running and running and
running.  Task Manager says I'm using 100% of CPU but the memory isn't getting 
worse.

HTH.

Bill

>-Original Message-
>From: [EMAIL PROTECTED] [mailto:owner-u2-
>[EMAIL PROTECTED] On Behalf Of Louie Bergsagel
>Sent: Monday, March 17, 2008 4:52 PM
>To: u2-users@listserver.u2ug.org
>Subject: Re: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.
>
>I killed this after 1.4 million iterations of executing and displaying the
>date (capturing X) and a counter with no problems.
>
> TEST.FATAL.CS
>0001   COUNTER = 0
>0002   LOOP
>0003  EXECUTE "DATE" CAPTURING X
>0004  COUNTER += 1
>0005  DISPLAY X:" ":COUNTER
>0006   REPEAT
>0007END
>
>Monday, March 17, 2008  05:47pm~ 1,406,473
>
>I don't dare let it run overnight, in case it does blow up the system.
>
>-- Louie
>---
>u2-users mailing list
>u2-users@listserver.u2ug.org
>To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Windows 2003 server security on new users {unclassified}

2008-03-17 Thread ATLAS SA
Hi Laure

We run UV 10.1.18 on Win 2003 SP2 and have no problems pointing all our
users to one account. We also prevent them from going to TCL and have
them use a custom menu system. Overall, we have 180+ users logging in
daily from all over the world using our internal WAN and Citrix.

To manage security, I put users into logical windows groups and use NTFS
permissions on the various UV file folders to give or deny access to
data as applicable. To get the users to login to the correct account I
do not, however, use their windows Profile (AD or otherwise). Instead I
setup a UV.LOGINS record for each user. This is accessible through
UniAdmin under the Network Services/Telnet menu. Click the Users tab and
then the Add User button. Use their Windows login ID, in uppercase, as
the user name. 

If it is a domain login, put the domain name and the path to the account
that you want them to use in the Domains area. If it is a local login id
(created on the server which hosts UV), then use the Local Machines
area. Either way, it is important that it is all in upper case and the
account path is used, not the account name. Then under the parameters
tab, click the UV Account radio button so UV will use the local info and
not the home path. 

Using this method does not change permissions on the account when a user
is setup and does not make the system any less secure. It also gives you
more control over who has access to your DB if you do not have direct
access to the Windows profiles.

I hope this helps,

Andrew Mack
Snr DB Mgr.
New Zealand Defence Force



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of IT-Laure Hansen
Sent: Tuesday, 18 March 2008 12:20 p.m.
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Windows 2003 server security on new users

Hi Bill,

I'm not a server/network person so please bear with me. 

We don't want our users to ever go to TCL. There is custom coding in the
login paragraph to prevent this. Users get into a customized menu
system.

We also don't want the users to pick and choose the accounts they
access; so, we have been setting them up with the account path in the
profile tab, under the home folder, local path. This worked like a charm
on Win2000, but ever since we upgraded to Win2003, creating new users
resets the permissions to the selected account path as soon as we save
the new user with that path as their local path. 

So the path is not truly to a user profile, but to their "home
directory". Since they share directories (we only have so many Universe
accounts), we don't want the permissions to be reset. 

I hope this makes more sense. If there is a better way to do this,
please let me know: we've been doing this by rote and are obviously
missing a piece of the equation.

Thanks!


Laure Hansen,
City of Redwood City
Information Technology
1017 Middlefield Road
Redwood City, CA 94063
Tel 650-780-7087
Cell 650-207-3235
Fax 650-556-9204
[EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett
Sent: Monday, March 17, 2008 4:21 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Windows 2003 server security on new users

Laure:

Are you saying you set permissions to a UV account (e.g.
E:\OurUV\Production).  Then, when you create a new user and place this
directory in their "profile" tab the permissions change?  Why are the
roaming user profiles maintained in a UV dbms directory?

Doesn't it seem reasonable that the "profile" directory is altered as
you describe?
I'm wondering if these profiles shouldn't be maintained in another
directory like "E:\UVProfiles\%username%".

Bill

>-Original Message-
>From: [EMAIL PROTECTED] [mailto:owner-u2- 
>[EMAIL PROTECTED] On Behalf Of IT-Laure Hansen
>Sent: Monday, March 17, 2008 9:59 AM
>To: u2-users@listserver.u2ug.org
>Subject: [U2] Windows 2003 server security on new users
>
>Universe 10.2 on Win2003 server SP2 (but was happening before SP2 as
>well): our set-up requires that users get created with the path to a 
>valid Universe account in the user's profile tab. As soon as I do this,

>using the admin login on the server, the original permissions on the 
>account are removed and all that remains are administrator and the new 
>user. This is not acceptable, as Universe requires wide-open security 
>(the effect of this is that other users can no longer even log to the 
>account).
>
>I've been creating new users after hours because of this, and it's 
>starting to drive me nuts!
>
>Does anyone know of a fix, either via change to Windows security 
>policies, hotfixes etc?
>
>Thanks,
>
>Laure Hansen,
>City of Redwood City
>Information Technology
>1017 Middlefield Road
>Redwood City, CA 94063
>Tel 650-780-7087
>Cell 650-207-3235
>Fax 650-556-9204
>[EMAIL PROTECTED] 
>---
>u2-users mailing list
>u2-users@listserver.u2ug.org
>To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing lis

RE: RE: [U2] Windows 2003 server security on new users {unclassified}

2008-03-17 Thread ATLAS SA
I think it has more to do with Windows believing that if this folder is
to be your Home folder, then only you should have access to it, and
changing the permissions accordingly. A case of MS knows best ;-)

It is better, IMHO, to setup the UV.LOGINS record for your users than
use the windows profile to manage this. More control and less grief.

Andrew Mack

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Tuesday, 18 March 2008 2:19 p.m.
To: u2-users@listserver.u2ug.org
Subject: Re: RE: [U2] Windows 2003 server security on new users

The problem you are experimenting has to do with either Windows
understanding the user is an Administrator or a Local Administrator, or
not finding where to go in the UVlogins file.


- Original Message -
From: IT-Laure Hansen
Date: Monday, March 17, 2008 7:53 pm
Subject: RE: [U2] Windows 2003 server security on new users
To: u2-users@listserver.u2ug.org

> Hi Bill,
> 
> I'm not a server/network person so please bear with me. 
> 
> We don't want our users to ever go to TCL. There is custom coding in 
> the login paragraph to prevent this. Users get into a customized menu 
> system.
> 
> We also don't want the users to pick and choose the accounts they 
> access; so, we have been setting them up with the account path in the 
> profile tab, under the home folder, local path. This worked like a 
> charm on Win2000, but ever since we upgraded to Win2003, creating new 
> users resets the permissions to the selected account path as soon as 
> we save the new user with that path as their local path.
> 
> So the path is not truly to a user profile, but to their "home 
> directory". Since they share directories (we only have so many 
> Universeaccounts), we don't want the permissions to be reset.
> 
> I hope this makes more sense. If there is a better way to do this, 
> please let me know: we've been doing this by rote and are obviously 
> missing a piece of the equation.
> 
> Thanks!
> 
> 
> Laure Hansen,
> City of Redwood City
> Information Technology
> 1017 Middlefield Road
> Redwood City, CA 94063
> Tel 650-780-7087
> Cell 650-207-3235
> Fax 650-556-9204
> [EMAIL PROTECTED]
The information contained in this Internet Email message is intended
for the addressee only and may contain privileged information, but not
necessarily the official views or opinions of the New Zealand Defence Force.
If you are not the intended recipient you must not use, disclose, copy or 
distribute this message or the information in it.

If you have received this message in error, please Email or telephone
the sender immediately.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Allen Egerton

Stevenson, Charles wrote:

IBM can't reproduce this.  I'm hoping someone else can.
That didn't come out right.  I don't really want to you have this
problem.  That would be mean.  I just hope this august body can help.

Simplest case:

   CDS.BP M
   01 LOOP
   02   EXECUTE '* anything' CAPTURING X
   03 REPEAT

   >RUN CDS.BP M
   Memory fault(coredump)
   3046$ls -l core
   -rw---   1 cds33896   tech   279499648 Mar 17 17:11 core




Capturing writes to uvtemp.  Are you running out of disk space or 
perhaps inodes?


--
Allen Egerton
aegerton at pobox dot com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: RE: [U2] Windows 2003 server security on new users

2008-03-17 Thread hpellegrino1
The problem you are experimenting has to do with either Windows understanding 
the user is an Administrator or a Local Administrator, or not finding where to 
go in the UVlogins file.


- Original Message -
From: IT-Laure Hansen 
Date: Monday, March 17, 2008 7:53 pm
Subject: RE: [U2] Windows 2003 server security on new users
To: u2-users@listserver.u2ug.org

> Hi Bill,
> 
> I'm not a server/network person so please bear with me. 
> 
> We don't want our users to ever go to TCL. There is custom 
> coding in the
> login paragraph to prevent this. Users get into a customized menu
> system.
> 
> We also don't want the users to pick and choose the accounts they
> access; so, we have been setting them up with the account path 
> in the
> profile tab, under the home folder, local path. This worked like 
> a charm
> on Win2000, but ever since we upgraded to Win2003, creating new users
> resets the permissions to the selected account path as soon as 
> we save
> the new user with that path as their local path. 
> 
> So the path is not truly to a user profile, but to their "home
> directory". Since they share directories (we only have so many 
> Universeaccounts), we don't want the permissions to be reset. 
> 
> I hope this makes more sense. If there is a better way to do this,
> please let me know: we've been doing this by rote and are obviously
> missing a piece of the equation.
> 
> Thanks!
> 
> 
> Laure Hansen,
> City of Redwood City
> Information Technology
> 1017 Middlefield Road
> Redwood City, CA 94063
> Tel 650-780-7087
> Cell 650-207-3235
> Fax 650-556-9204
> [EMAIL PROTECTED]
> 
> -Original Message-
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett
> Sent: Monday, March 17, 2008 4:21 PM
> To: u2-users@listserver.u2ug.org
> Subject: RE: [U2] Windows 2003 server security on new users
> 
> Laure:
> 
> Are you saying you set permissions to a UV account (e.g.
> E:\OurUV\Production). Then, when you create a new user and 
> place this
> directory in their "profile" tab the permissions change? Why 
> are the
> roaming user profiles maintained in a UV dbms directory?
> 
> Doesn't it seem reasonable that the "profile" directory is 
> altered as
> you describe?
> I'm wondering if these profiles shouldn't be maintained in another
> directory like "E:\UVProfiles\%username%".
> 
> Bill
> 
> >-Original Message-
> >From: [EMAIL PROTECTED] [mailto:owner-u2- 
> >[EMAIL PROTECTED] On Behalf Of IT-Laure Hansen
> >Sent: Monday, March 17, 2008 9:59 AM
> >To: u2-users@listserver.u2ug.org
> >Subject: [U2] Windows 2003 server security on new users
> >
> >Universe 10.2 on Win2003 server SP2 (but was happening before 
> SP2 as
> >well): our set-up requires that users get created with the path 
> to a 
> >valid Universe account in the user's profile tab. As soon as I 
> do this,
> 
> >using the admin login on the server, the original permissions 
> on the 
> >account are removed and all that remains are administrator and 
> the new 
> >user. This is not acceptable, as Universe requires wide-open 
> security 
> >(the effect of this is that other users can no longer even log 
> to the 
> >account).
> >
> >I've been creating new users after hours because of this, and 
> it's 
> >starting to drive me nuts!
> >
> >Does anyone know of a fix, either via change to Windows 
> security 
> >policies, hotfixes etc?
> >
> >Thanks,
> >
> >Laure Hansen,
> >City of Redwood City
> >Information Technology
> >1017 Middlefield Road
> >Redwood City, CA 94063
> >Tel 650-780-7087
> >Cell 650-207-3235
> >Fax 650-556-9204
> >[EMAIL PROTECTED] 
> >---
> >u2-users mailing list
> >u2-users@listserver.u2ug.org
> >To unsubscribe please visit http://listserver.u2ug.org/
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Louie Bergsagel
I killed this after 1.4 million iterations of executing and displaying the
date (capturing X) and a counter with no problems.

 TEST.FATAL.CS
0001   COUNTER = 0
0002   LOOP
0003  EXECUTE "DATE" CAPTURING X
0004  COUNTER += 1
0005  DISPLAY X:" ":COUNTER
0006   REPEAT
0007END

Monday, March 17, 2008  05:47pm~ 1,406,473

I don't dare let it run overnight, in case it does blow up the system.

-- Louie
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Stevenson, Charles
From: Louie Bergsagel
> How long before it fails?

A few minutes for me, for that simple test.
The question is what's memory doing?
Try looking at the process with -l option of the unix ps command.

But look at this where I execute an "SH" command:
  EXECUTE "SH -c'# comment'" CAPTURING X
& then printed a report line every 100,000 iterations.
It still failed after 990,230 iterations,  but ran slower & slower &
slower.
It took 28 hours to get to that point, whereas my old much slower
PA/risc got to that number in ~5 hrs.
Look at Mem SZ: constant 942, vs growing to 230145.

Itanium:

0001: HP-UX x0003031 B.11.23 U ia64 2885820074 unlimited-user license
0002: uid=5517(cds33896) gid=212(tech)
0003: -5783 resizetmp From cds33896
0004: RUN CDS.BP MEMFAULT3
0005: 12:24:01 15 MAR 2008  Count   Secs  Sys(9)  Mem SZ
0006: 12:49:09 15 MAR 2008  10  1508  420550  26715
0007: 13:43:27 15 MAR 2008  20  3257 1138400  52103
0008: 15:14:58 15 MAR 2008  30  5490 1947890  77495
0009: 17:30:49 15 MAR 2008  40  8151 2831010 103019
0010: 20:35:40 15 MAR 2008  50 11090 3734720 128407
0011: 00:22:42 16 MAR 2008  60 13621 4617480 153865
0012: 05:07:25 16 MAR 2008  70 17083 5582570 179357
0013: 10:24:14 16 MAR 2008  80 19008 6438780 204745
0014: 16:17:22 16 MAR 2008  90 21188 7272240 230145 
Bottom at line 14.
(6 hours later, this aborted before reaching 1 million.
 Dumped a core file.)


Here's the same job on PA/risc.
It took ~5 hrs to reach the same point.

0001: HP-UX w0003030 B.11.11 U 9000/800 1488117173 unlimited-user
license
0002: uid=5517(cds33896) gid=212(tech)
0003: -23412 resizetmp From cds33896
0004: RUN CDS.BP MEMFAULT3 
0005: 17:16:55 15 MAR 2008  Count   Secs  Sys(9) Mem SZ 
0006: 17:51:39 15 MAR 2008  10  2083  278170   942 
0007: 18:24:48 15 MAR 2008  20  1988  269890   942 
0008: 18:57:50 15 MAR 2008  30  1982  269170   942 
0009: 19:31:13 15 MAR 2008  40  2002  271450   942 
0010: 20:04:06 15 MAR 2008  50  1973  268050   942 
0011: 20:36:04 15 MAR 2008  60  1917  256230   942 
0012: 21:07:16 15 MAR 2008  70  1872  248220   942 
0013: 21:38:34 15 MAR 2008  80  1878  249360   942 
0014: 22:09:35 15 MAR 2008  90  1861  247390   942 
0015: 22:40:38 15 MAR 2008 100  1862  247480   942 
0016: 23:11:46 15 MAR 2008 110  1867  248500   942 
0017: 23:42:51 15 MAR 2008 120  1865  246870   942 
0018: 00:14:33 16 MAR 2008 130  1901  250930   942 
0019: 00:47:19 16 MAR 2008 140  1965  259980   942 
0020: 01:19:09 16 MAR 2008 150  1910  254220   942 
0021: 01:50:15 16 MAR 2008 160  1865  247170   942 
0022: 02:21:10 16 MAR 2008 170  1855  246310   942 
0023: 02:52:10 16 MAR 2008 180  1859  246240   942 
0024: 03:23:04 16 MAR 2008 190  1854  245850   942 
Bottom at line 24. 
(Killed duiring nightly UV stop/restart @3:30AM.)
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Stevenson, Charles
From:  Ken Hall
> Maybe, just maybe, the loop is executing too fast on the
> Itanium server. Try putting a SLEEP into the loop.

Ken, 

See line 9.  
Notice SZ column increases by the same amount with or without sleep.

>CT CDS.BP KEN

 KEN
0001   PERFORM "SH -c'ps -lp $PPID'"
0002   CRT TIMEDATE() , 'Simple:'
0003   FOR I = 1 TO 600
0004  EXECUTE '* DUMMY' CAPTURING X
0005   NEXT I
0006   PERFORM "SH -c'ps -lp $PPID'"
0007   CRT TIMEDATE(), 'Simple done.  With sleep:'
0008   FOR I = 1 TO 600
0009  SLEEP 1
0010  EXECUTE '* DUMMY' CAPTURING X
0011   NEXT I
0012   PERFORM "SH -c'ps -lp $PPID'"
0013   CRT TIMEDATE(), 'done.'
>
>RUN CDS.BP KEN
  F SUID   PID  PPID  C PRI NI ADDR   SZ
WCHAN TTY   TIME COMD
401 S   5517 19121 18392  0 158 20 e001894f24c0 1015
e0018c70c000 pts/ta0:00 uvsh
19:50:36 17 MAR 2008  Simple:
  F SUID   PID  PPID  C PRI NI ADDR   SZ
WCHAN TTY   TIME COMD
401 S   5517 19121 18392  7 158 20 e001894f24c0 1172
e0018c70c000 pts/ta0:00 uvsh
19:50:36 17 MAR 2008  Simple done.  With sleep:
  F SUID   PID  PPID  C PRI NI ADDR   SZ
WCHAN TTY   TIME COMD
401 S   5517 19121 18392  0 158 20 e001894f24c0 1328
e0018c70c000 pts/ta0:00 uvsh
20:00:42 17 MAR 2008  done.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Louie Bergsagel
How long before it fails?

I've been running
LOOP
   EXECUTE "DATE" CAPTURING X
REPEAT
for over 8 minutes now, on an IBM P650, AIX 5.2, UniVerse release 10.1.12,
Pick syntax.

Perhaps because it is only March...

-- Louie In Seattle
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [Announcement]Join Entrinsik for Breakfast - International Spectrum Newport Beach 2008

2008-03-17 Thread Nathan Rector
==
International Spectrum 2008 Sponsored Event
==
Newport Beach 2008
March 31-April 4

You are invited to join Entrinsik for Breakfast at the 2008 Annual
Spectrum Conference on April 2nd.  Learn how Entrinsik's latest
release of Informer Web Reporting software provides real-time
information when there are various silos of data.

Entrinsik will demonstrate several of Informer's key new features:
* Integrate multiple file types (including SQL) on the same report
* Web 2.0 user interface
* Dynamic grouping & graphing
* And much, much more

Find out more about Informer at: http://www.entrinsik.com

Register Now! 
http://www.intl-spectrum.com/Conference/default.aspx
 


Hotel Information:

Marriott Newport Beach Hotel & Spa
800-228-9290
Room Rate: Single/Double $189.00
Special Rate Cut-off: March 10
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Windows 2003 server security on new users

2008-03-17 Thread IT-Laure Hansen
Hi Bill,

I'm not a server/network person so please bear with me. 

We don't want our users to ever go to TCL. There is custom coding in the
login paragraph to prevent this. Users get into a customized menu
system.

We also don't want the users to pick and choose the accounts they
access; so, we have been setting them up with the account path in the
profile tab, under the home folder, local path. This worked like a charm
on Win2000, but ever since we upgraded to Win2003, creating new users
resets the permissions to the selected account path as soon as we save
the new user with that path as their local path. 

So the path is not truly to a user profile, but to their "home
directory". Since they share directories (we only have so many Universe
accounts), we don't want the permissions to be reset. 

I hope this makes more sense. If there is a better way to do this,
please let me know: we've been doing this by rote and are obviously
missing a piece of the equation.

Thanks!


Laure Hansen,
City of Redwood City
Information Technology
1017 Middlefield Road
Redwood City, CA 94063
Tel 650-780-7087
Cell 650-207-3235
Fax 650-556-9204
[EMAIL PROTECTED]

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Bill Haskett
Sent: Monday, March 17, 2008 4:21 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Windows 2003 server security on new users

Laure:

Are you saying you set permissions to a UV account (e.g.
E:\OurUV\Production).  Then, when you create a new user and place this
directory in their "profile" tab the permissions change?  Why are the
roaming user profiles maintained in a UV dbms directory?

Doesn't it seem reasonable that the "profile" directory is altered as
you describe?
I'm wondering if these profiles shouldn't be maintained in another
directory like "E:\UVProfiles\%username%".

Bill

>-Original Message-
>From: [EMAIL PROTECTED] [mailto:owner-u2- 
>[EMAIL PROTECTED] On Behalf Of IT-Laure Hansen
>Sent: Monday, March 17, 2008 9:59 AM
>To: u2-users@listserver.u2ug.org
>Subject: [U2] Windows 2003 server security on new users
>
>Universe 10.2 on Win2003 server SP2 (but was happening before SP2 as
>well): our set-up requires that users get created with the path to a 
>valid Universe account in the user's profile tab. As soon as I do this,

>using the admin login on the server, the original permissions on the 
>account are removed and all that remains are administrator and the new 
>user. This is not acceptable, as Universe requires wide-open security 
>(the effect of this is that other users can no longer even log to the 
>account).
>
>I've been creating new users after hours because of this, and it's 
>starting to drive me nuts!
>
>Does anyone know of a fix, either via change to Windows security 
>policies, hotfixes etc?
>
>Thanks,
>
>Laure Hansen,
>City of Redwood City
>Information Technology
>1017 Middlefield Road
>Redwood City, CA 94063
>Tel 650-780-7087
>Cell 650-207-3235
>Fax 650-556-9204
>[EMAIL PROTECTED] 
>---
>u2-users mailing list
>u2-users@listserver.u2ug.org
>To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Ken Hall
Maybe, just maybe, the loop is executing too fast on the Itanium 
server. Try putting a SLEEP into the loop.


Ken

At 03:13 PM 3/17/2008, you wrote:

IBM can't reproduce this.  I'm hoping someone else can.
That didn't come out right.  I don't really want to you have this
problem.  That would be mean.  I just hope this august body can help.

Simplest case:

   CDS.BP M
   01 LOOP
   02   EXECUTE '* anything' CAPTURING X
   03 REPEAT

   >RUN CDS.BP M
   Memory fault(coredump)
   3046$ls -l core
   -rw---   1 cds33896   tech   279499648 Mar 17 17:11 core


This is on HP Itanium, HPUX11.23, UV10.2.6
Anticipating some of your questions:

* If I get rid of CAPTURING X it works fine.

* PERFORM works fine.

* It doesn't matter what the command executed is.
  I executed a comment ('* anything')above, because what is more benign?

* ps -l shows memory increasing (SZ column) as the process executes.
  (Monitoring it from a 2nd session.)

* EXECUTE "SH -c'[any unix command]'" CAPTURING X
  gets slower & slower each iteration.
  ( Because ever increasing memory is duplicated for child process? )

* Other flavours of the CAPTURING syntax are the same:
EXECUTE cmd CAPTURING X
EXECUTE cmd,OUT>X
EXECUTE cmd,/OUT.>X
  They compile identically.

* Behaviour is the same in IDEAL- & PICK-flavoured accounts.

* It doesn't matter if I null out X.
 X = ''
 EXECUTE cmd CAPTURING X

* It doesn't matter if I assign X to an unassigned variable.
 X = Y  ;* (where Y has deliberately never been assigned.)
 EXECUTE cmd CAPTURING X

* My simple case fails at about
1/4 million iterations to fail on my smaller dev system,
1 million on the 2 larger production system.

* The memory leak applies to the session, not the program.
  If I limit the number of iterations in the program,
  but repeatedly execute it from TCL, eventually it fails.
  This fails just the same:

 VOC M.LOOP
 O1 PA
 02 LOOP
 03EXECUTE "RUN CDS.BP M
 04SH -c"ps -lp $$PID"
 05 REPEAT
  where M is limited to 100,000:
 CDS.BP M
 01 FOR I = 1 TO 10
 02EXECUTE "* comment" CAPTURING X
 03 REPEAT

* My old HP PA/risc, HPUX 11.11i, UV 10.0.16 system works fine.


Thank-you in advance,

Charles Stevenson
Getronics
Costa Mesa, CA
714-641-5943 desk
714-396-2771 cell
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] RE: UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Stevenson, Charles
I said  $$PID.   2 dollars, 1 pee.
I meant $PPID.   1 dollar, 2 pees. (Still pricey for a public biffy.)

$PPID is the variable containing the Parent Process's process ID.
So  SH -c 'ps -lp $PPID'
gives ps info on the UV parent process issuing the command.

Sorry about that.
cds

-Original Message-
[snip]
 VOC M.LOOP
 O1 PA
 02 LOOP
 03EXECUTE "RUN CDS.BP M
 04SH -c"ps -lp $PPID"   <--- corrected from $$PID
 05 REPEAT
  where M is limited to 100,000:   
 CDS.BP M
 01 FOR I = 1 TO 10
 02EXECUTE "* comment" CAPTURING X
 03 REPEAT

[snip]
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Windows 2003 server security on new users

2008-03-17 Thread Bill Haskett
Laure:

Are you saying you set permissions to a UV account (e.g. E:\OurUV\Production).  
Then,
when you create a new user and place this directory in their "profile" tab the
permissions change?  Why are the roaming user profiles maintained in a UV dbms
directory?

Doesn't it seem reasonable that the "profile" directory is altered as you 
describe?
I'm wondering if these profiles shouldn't be maintained in another directory 
like
"E:\UVProfiles\%username%".

Bill

>-Original Message-
>From: [EMAIL PROTECTED] [mailto:owner-u2-
>[EMAIL PROTECTED] On Behalf Of IT-Laure Hansen
>Sent: Monday, March 17, 2008 9:59 AM
>To: u2-users@listserver.u2ug.org
>Subject: [U2] Windows 2003 server security on new users
>
>Universe 10.2 on Win2003 server SP2 (but was happening before SP2 as
>well): our set-up requires that users get created with the path to a
>valid Universe account in the user's profile tab. As soon as I do this,
>using the admin login on the server, the original permissions on the
>account are removed and all that remains are administrator and the new
>user. This is not acceptable, as Universe requires wide-open security
>(the effect of this is that other users can no longer even log to the
>account).
>
>I've been creating new users after hours because of this, and it's
>starting to drive me nuts!
>
>Does anyone know of a fix, either via change to Windows security
>policies, hotfixes etc?
>
>Thanks,
>
>Laure Hansen,
>City of Redwood City
>Information Technology
>1017 Middlefield Road
>Redwood City, CA 94063
>Tel 650-780-7087
>Cell 650-207-3235
>Fax 650-556-9204
>[EMAIL PROTECTED] 
>---
>u2-users mailing list
>u2-users@listserver.u2ug.org
>To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] UV: LOOP;EXECUTE cmd CAPTURING X; REPEAT fatal memory fault.

2008-03-17 Thread Stevenson, Charles
IBM can't reproduce this.  I'm hoping someone else can.
That didn't come out right.  I don't really want to you have this
problem.  That would be mean.  I just hope this august body can help.

Simplest case:

   CDS.BP M
   01 LOOP
   02   EXECUTE '* anything' CAPTURING X
   03 REPEAT

   >RUN CDS.BP M
   Memory fault(coredump)
   3046$ls -l core
   -rw---   1 cds33896   tech   279499648 Mar 17 17:11 core


This is on HP Itanium, HPUX11.23, UV10.2.6
Anticipating some of your questions:

* If I get rid of CAPTURING X it works fine.

* PERFORM works fine.

* It doesn't matter what the command executed is.  
  I executed a comment ('* anything')above, because what is more benign?

* ps -l shows memory increasing (SZ column) as the process executes.
  (Monitoring it from a 2nd session.)

* EXECUTE "SH -c'[any unix command]'" CAPTURING X
  gets slower & slower each iteration.
  ( Because ever increasing memory is duplicated for child process? )

* Other flavours of the CAPTURING syntax are the same:
EXECUTE cmd CAPTURING X
EXECUTE cmd,OUT>X
EXECUTE cmd,/OUT.>X
  They compile identically.

* Behaviour is the same in IDEAL- & PICK-flavoured accounts.

* It doesn't matter if I null out X.
 X = ''
 EXECUTE cmd CAPTURING X

* It doesn't matter if I assign X to an unassigned variable.
 X = Y  ;* (where Y has deliberately never been assigned.)
 EXECUTE cmd CAPTURING X

* My simple case fails at about 
1/4 million iterations to fail on my smaller dev system, 
1 million on the 2 larger production system.

* The memory leak applies to the session, not the program.
  If I limit the number of iterations in the program, 
  but repeatedly execute it from TCL, eventually it fails.
  This fails just the same:

 VOC M.LOOP
 O1 PA
 02 LOOP
 03EXECUTE "RUN CDS.BP M
 04SH -c"ps -lp $$PID"
 05 REPEAT
  where M is limited to 100,000:   
 CDS.BP M
 01 FOR I = 1 TO 10
 02EXECUTE "* comment" CAPTURING X
 03 REPEAT

* My old HP PA/risc, HPUX 11.11i, UV 10.0.16 system works fine.


Thank-you in advance,

Charles Stevenson
Getronics
Costa Mesa, CA
714-641-5943 desk
714-396-2771 cell
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UV spooler daemon not responding. [not-secure]

2008-03-17 Thread Jerry Banker
Anybody know if this is available for download? We never received the
10.2 version of this because we bought a 5 user workgroup edition for
our test system and what we received was 10.2.4. Our main system is
still on 10.1.12 server edition. The only thing I've found available on
the web is a windows personal edition version of 10.2.8.

Jerry Banker


> -Original Message-
> From: Hennessey, Mark F. [mailto:[EMAIL PROTECTED]
> Sent: Monday, March 17, 2008 2:50 PM
> To: u2-users@listserver.u2ug.org
> Subject: RE: [U2] UV spooler daemon not responding. [not-secure]
> 
> Jerry:
> 
> 
> UV 10.2.4 Linux AS release 3 Kernel 2.4.21-15.EL x86_64
> 
> For some unknown reason when trying to mount a form on a printer my
> system will hang. The only way to get it un-hung is to stop the
spooler
> and restart it.
> 
> 
> 
> Ahh.. the "USA" bug... From an e-mail I got from IBM some months ago:
> 
> ... between UniVerse 10.2.1 and 10.2.5, usa would hang when any
> parameters were sent to it.  This is fixed in UniVerse 10.2.6 and
> higher.
> There is a workaround for this problem.  It is to use the usa
> executable
> from UniVerse 10.2.0. ...
> 
> If you can get the 10.2.0 file copy it to /.uvhome/bin, then copy it
to
> usm and usp... And as quick as Robert is your mother's brother, you'll
> be up and running.
> 
> 
> 
> 
> Mark Hennessey
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Question about windows xp

2008-03-17 Thread Tim Stokes
yes

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Cisar Riba 
Cervera
Sent: Monday, March 17, 2008 12:39 PM
To: u2-users@listserver.u2ug.org
Subject: [U2] Question about windows xp

Hello

It is possible install universe in windows xp?

Thanks.

Cisar Riba
Spain
No virus found in this outgoing message.
Checked by AVG.
Version: 7.5.519 / Virus Database: 269.21.7/1331 - Release Date: 16/03/2008
10:34
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] UV spooler daemon not responding. [not-secure]

2008-03-17 Thread Hennessey, Mark F.
Jerry:


UV 10.2.4 Linux AS release 3 Kernel 2.4.21-15.EL x86_64

For some unknown reason when trying to mount a form on a printer my
system will hang. The only way to get it un-hung is to stop the spooler
and restart it.



Ahh.. the "USA" bug... From an e-mail I got from IBM some months ago:

... between UniVerse 10.2.1 and 10.2.5, usa would hang when any
parameters were sent to it.  This is fixed in UniVerse 10.2.6 and
higher.   
There is a workaround for this problem.  It is to use the usa executable
from UniVerse 10.2.0. ...

If you can get the 10.2.0 file copy it to /.uvhome/bin, then copy it to
usm and usp... And as quick as Robert is your mother's brother, you'll
be up and running. 




Mark Hennessey
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Universe/SB+ printing including images

2008-03-17 Thread Kevin King
I would highly discourage the use of Optio.  While it is a defacto standard
with some vendors, it's expensive, it provides little to no debugging to
help diagnose problems when it crashes a print queue - and yes, it does
crash print queues if anything unexpected happens in the print job - and the
Optio company refuses to allow third party vendors (such as yours truly) to
license, get trained, or otherwise use their products, forcing you to rely
on the mercy of your vendor.

Does that sound bitter? :-)
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Universe/SB+ printing including images

2008-03-17 Thread Bob Rasmussen
On Mon, 17 Mar 2008, Charles Barouch wrote:

> Robin,
>   I build the document as HTML and send it to a person to review and print.
> Not 100% automated, but my client wants a person to review anyway...

Given the oft-noted behaviors of web browsers when printing, how do you 
deal with the following problems?:

1) If the report is in a wide format, such as classic 132-column reports, 
the browser will simply drop the right side (although IE7 did add some 
shrink-to-fit logic).

2) You have no control over pagination, meaning you can not put column 
headers at the top of page 2, for instance, because you don't know where 
the top of page 2 is.

3) You have not explicit control over font size. Do you use CSS for this?

In general, my perception is that HTML is not a satisfactory way to 
deliver reports.

Regards,
Bob Rasmussen,   President,   Rasmussen Software, Inc.

personal e-mail: [EMAIL PROTECTED]
 company e-mail: [EMAIL PROTECTED]
  voice: (US) 503-624-0360 (9:00-6:00 Pacific Time)
fax: (US) 503-624-0760
web: http://www.anzio.com
 street address: Rasmussen Software, Inc.
 10240 SW Nimbus, Suite L9
 Portland, OR  97223  USA
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] UV spooler daemon not responding.

2008-03-17 Thread Jerry Banker
UV 10.2.4 Linux AS release 3 Kernel 2.4.21-15.EL x86_64



For some unknown reason when trying to mount a form on a printer my
system will hang. The only way to get it un-hung is to stop the spooler
and restart it. Sometimes the form requested shows that it has been
mounted sometimes and at other times it has not. Sometimes the printer
has been deactivated and the only way to reactivate it is to stop and
restart the spooler again because the option for activating an
individual printer also hangs. I get the following message in the
err.log file.



usa: no response from daemon Date:  03/17/2008 11:03:33



I have another system that is set up almost identical, except it has UV
10.1.12, and it works fine.



Any ideas?



Jerry Banker

Senior Programmer Analyst

IBM Certified Solutions Expert

Affiliated Acceptance Corp

Sunrise Beach, MO

1-800-233-8483

www.affiliated.org 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Windows 2003 server security on new users

2008-03-17 Thread IT-Laure Hansen
Universe 10.2 on Win2003 server SP2 (but was happening before SP2 as
well): our set-up requires that users get created with the path to a
valid Universe account in the user's profile tab. As soon as I do this,
using the admin login on the server, the original permissions on the
account are removed and all that remains are administrator and the new
user. This is not acceptable, as Universe requires wide-open security
(the effect of this is that other users can no longer even log to the
account).

I've been creating new users after hours because of this, and it's
starting to drive me nuts!

Does anyone know of a fix, either via change to Windows security
policies, hotfixes etc?

Thanks,

Laure Hansen,
City of Redwood City
Information Technology
1017 Middlefield Road
Redwood City, CA 94063
Tel 650-780-7087
Cell 650-207-3235
Fax 650-556-9204
[EMAIL PROTECTED] 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Universe/SB+ printing including images

2008-03-17 Thread Bob Rasmussen
On Mon, 17 Mar 2008, Robin Smith wrote:

> We use Universe with SB+ on both Windows and Unix.
> 
> We have a customer who is looking to print documents to a colour laser
> printer that not only include normal textual output but also incorporate
> a grahical image embedded within the document.  The graphical image is
> variable per document and will be specified at run time and picked up
> from a link to an image file e.g. C:\images\picturexx.jpg.
> 
> Has anyone any experience of doing this and is there any U2 specific
> software to facilitate the process?

Here are some other questions you might want to ask:

1) Will you want only one image per page (such as a company logo), or 
multiple (a signature, pictures of products, etc.)?

2) What file formats (JPG, PNG, BMP) do you want to support?

3) How device-independent do you want this to be? That is, how many 
different types of laser printer do you want to support now and in the 
future?

4) Is it an option to modify the report output to specify the graphic(s), 
or does this need to be done post-generation?

5) Is it an option to bring a Windows machine into the printing pipeline, 
even if your U2 runs on Unix?

[Ad] We offer a printing tool called Print Wizard. While it is not U2 
specific, or even MV specific, it is very powerful. It runs on a Windows 
machine, but can accept data from a Unix machine. Running on Windows, it 
has the advantage of being able to use the Windows printer driver, which 
means it can output to virtually any printer, including Windows-only 
printers. Its output is controlled by an HTML-like markup language, butit 
also has some post-generation capabilities. 

More data is ont he website below. Or catch my presentation at Spectrum 
upcoming.

Regards,
Bob Rasmussen,   President,   Rasmussen Software, Inc.

personal e-mail: [EMAIL PROTECTED]
 company e-mail: [EMAIL PROTECTED]
  voice: (US) 503-624-0360 (9:00-6:00 Pacific Time)
fax: (US) 503-624-0760
web: http://www.anzio.com
 street address: Rasmussen Software, Inc.
 10240 SW Nimbus, Suite L9
 Portland, OR  97223  USA
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Question about windows xp

2008-03-17 Thread Brian Leach
Hi Cisar

Yes it is. Just remember that XP is a workstation O/S so it only allows a 
maximum of 10 connections.

Brian

Hello

It is possible install universe in windows xp?

Thanks.

Cisar Riba
Spain
No virus found in this outgoing message.
Checked by AVG.
Version: 7.5.519 / Virus Database: 269.21.7/1331 - Release Date: 16/03/2008
10:34
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Universe/SB+ printing including images

2008-03-17 Thread Brian Leach
Hi Robin

[AD]
You might want to take a look at mvPDF. Despite the name, it can render 
directly to printers as well as producing PDF documents. It's very flexible 
with a BASIC API underlying it so it can be tailored to most solutions, and I 
have a white paper on using it to capture SB+ reports.
[/AD]

Contact me off-list if interested.

Brian


We use Universe with SB+ on both Windows and Unix.

We have a customer who is looking to print documents to a colour laser
printer that not only include normal textual output but also incorporate
a grahical image embedded within the document.  The graphical image is
variable per document and will be specified at run time and picked up
from a link to an image file e.g. C:\images\picturexx.jpg.

Has anyone any experience of doing this and is there any U2 specific
software to facilitate the process?

Regards

Robin Smith
Reflex Data Systems Ltd



Scanned by MailDefender - managed email security from intY -
www.maildefender.net
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Universe/SB+ printing including images

2008-03-17 Thread Charles Barouch

Robin,
  I build the document as HTML and send it to a person to review and 
print. Not 100% automated, but my client wants a person to review anyway...


   - Chuck

Robin Smith wrote:

We use Universe with SB+ on both Windows and Unix.

We have a customer who is looking to print documents to a colour laser
printer that not only include normal textual output but also incorporate
a grahical image embedded within the document.  The graphical image is
variable per document and will be specified at run time and picked up
from a link to an image file e.g. C:\images\picturexx.jpg.

Has anyone any experience of doing this and is there any U2 specific
software to facilitate the process?

Regards

Robin Smith
Reflex Data Systems Ltd



Scanned by MailDefender - managed email security from intY -
www.maildefender.net
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/

---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Question about windows xp

2008-03-17 Thread CĂ©sar Riba Cervera
Hello

It is possible install universe in windows xp?

Thanks.

Cisar Riba
Spain
No virus found in this outgoing message.
Checked by AVG.
Version: 7.5.519 / Virus Database: 269.21.7/1331 - Release Date: 16/03/2008
10:34
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Universe/SB+ printing including images

2008-03-17 Thread Kathleené M Hunter
Are you using any imaging software ( like optio) to create the document.

-Original Message-
From: Robin Smith [mailto:[EMAIL PROTECTED] 
Sent: Monday, March 17, 2008 5:17 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] Universe/SB+ printing including images

We use Universe with SB+ on both Windows and Unix.

We have a customer who is looking to print documents to a colour laser
printer that not only include normal textual output but also incorporate
a grahical image embedded within the document.  The graphical image is
variable per document and will be specified at run time and picked up
from a link to an image file e.g. C:\images\picturexx.jpg.

Has anyone any experience of doing this and is there any U2 specific
software to facilitate the process?

Regards

Robin Smith
Reflex Data Systems Ltd



Scanned by MailDefender - managed email security from intY -
www.maildefender.net
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] Indexes

2008-03-17 Thread Eric Armstrong
You can also do the same with the LIST.DIFF, LIST.UNION, LIST.INTER, etc.
commands.

Eric


-Original Message-
From: Tom Dodds [mailto:[EMAIL PROTECTED]
Sent: Friday, March 14, 2008 6:38 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Indexes


I recently put together a Tech Tip for a monthly news Letter about the Merge
List process.  That might help with your situation, take a look.

http://www.ashwoodcomputer.com/TechTip.html

This is not an ad for Ashwood Computer Company

Tom Dodds
[EMAIL PROTECTED]
630.235.2975


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Symeon Breen
Sent: Friday, March 14, 2008 5:38 AM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] Indexes

I would use the SAVING clause on a select of the repairs file to build a
list of stock id's then use a merge list command to see what stock ids do
not have a repairs record.



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Dennis Bartlett
Sent: 14 March 2008 10:04
To: u2-users@listserver.u2ug.org
Subject: [U2] Indexes

My dumb question for the day (just cant remember how to... and the manual's
example is too simplistic...)

How do I programmatically get an index value out, 
eg
I have a STOCK file, and a REPAIRS file. Whoever designed this needs their
head read, but the repairs file only has the stock code as a reference in
the record. I have indexed the repair file on stock code, and need to create
a report on the stock file of how many items are under repair.

1. UniverseBASIC code?

2. is this possible from an Itype?
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/





LOBEL FINANCIAL PRIVACY NOTICE: 
This communication may contain confidential company information that is 
protected by federal law. Federal regulations prohibit the disclosure (or 
re-disclosure) of confidential information without the written consent of the 
person(s) to whom it pertains. Additionally, the views or opinions presented in 
this email are solely those of the author and do not necessarily represent 
those of the company.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Universe/SB+ printing including images

2008-03-17 Thread Scott Ballinger
Hi Robin,

I use Onmerge (www.onmerge.com) to print embedded images from a Word
mail-merge document (the image filenames are one of the "merge" fields). I
costs $79US. The biggest drawback is that you are now relying on Word
mail-merge processing in an automated production environment, and there is
lots that can go wrong there with compatibility issues among different
Windows versions, Office/Word versions, and our friend windows update; but
all in all it works pretty well. (I use an Accuterm script to drive Word
from the [linux] host in both UV and D3 environments.)

/Scott Ballinger
Pareto Corporation
Edmonds WA USA
206 713 6006

On Mon, Mar 17, 2008 at 5:17 AM, Robin Smith <[EMAIL PROTECTED]>
wrote:

> We use Universe with SB+ on both Windows and Unix.
>
> We have a customer who is looking to print documents to a colour laser
> printer that not only include normal textual output but also incorporate
> a grahical image embedded within the document.  The graphical image is
> variable per document and will be specified at run time and picked up
> from a link to an image file e.g. C:\images\picturexx.jpg.
>
> Has anyone any experience of doing this and is there any U2 specific
> software to facilitate the process?
>
> Regards
>
> Robin Smith
> Reflex Data Systems Ltd
>
>
>
> Scanned by MailDefender - managed email security from intY -
> www.maildefender.net
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Tomcat is snailing

2008-03-17 Thread Kevin King
Write a quick JSP page that returns the amount of server memory available
and monitor this when the system starts to dog; sounds like maybe the Java
garbage collector might need to be run more frequently.

On Mon, Mar 17, 2008 at 5:58 AM, Charles Barouch <[EMAIL PROTECTED]>
wrote:

> All,
>I've got an installation with php calling tomcat5 to serve JSP pages
> with UniVerse BASIC in the back. ::sigh:: Since I can't change any of
> that, I'm looking to get it running smoothly.
>
>Every time I restart Tomcat, the speed comes up to acceptable levels
> and stays there for as much as a few hours. Anything more than that and
> the process is either too slow for the browser timeout or it is actually
> hung. I don't see anything obvious in the tomcat logs and I can confirm
> that nothing is reaching UniVerse in timeframe when the problem occurs.
>Any thoughts on how to investigate this or solve it?
>
>- Chuck "Too Monogamous to Tomcat Around" Barouch
> ---
> u2-users mailing list
> u2-users@listserver.u2ug.org
> To unsubscribe please visit http://listserver.u2ug.org/
>



-- 
-Kevin
http://www.PrecisOnline.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] Skype cannot connect

2008-03-17 Thread Helen Chenoby

Tony,

I have turned off ASPM and it did not help
I have contacted network support people - I still didnt get it working.
I am going to Clean Registry - and a full reinstall

Thanks

Helen

- Original Message - 
From: "Tony G" <[EMAIL PROTECTED]>

To: 
Sent: Wednesday, March 12, 2008 10:48 AM
Subject: RE: [U2] Skype cannot connect



I agree that a full reinstall isn't the right solution.

Helen wrote:

c:\Program Files\ASUS Security Center\ASUS Security Protect
Manager\bin...



Helen, the ASUS Security Protect Management (ASPM) screams "port blocking"
to me.  The fact that your browsers stopped working after you installed
Universe suggests something locked up a lot of your network access, not
just Skype.  If you aren't using biometric/fingerprint authentication, 
turn

off ASPM and see if that helps.  If you have anyone providing network
support you might want to ask them to see if there is some service running
in the background that prevents programs from opening ports for inbound 
and

outbound communications.  I'm fairly certain turning off one key service
will fix the problem.

Good luck,
T

Tony Gravagno
Nebula Research and Development
TG@ remove.pleaseNebula-RnD.com
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/ 

---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Universe/SB+ printing including images

2008-03-17 Thread Robin Smith
We use Universe with SB+ on both Windows and Unix.

We have a customer who is looking to print documents to a colour laser
printer that not only include normal textual output but also incorporate
a grahical image embedded within the document.  The graphical image is
variable per document and will be specified at run time and picked up
from a link to an image file e.g. C:\images\picturexx.jpg.

Has anyone any experience of doing this and is there any U2 specific
software to facilitate the process?

Regards

Robin Smith
Reflex Data Systems Ltd



Scanned by MailDefender - managed email security from intY -
www.maildefender.net
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] Tomcat is snailing

2008-03-17 Thread Charles Barouch

All,
   I've got an installation with php calling tomcat5 to serve JSP pages 
with UniVerse BASIC in the back. ::sigh:: Since I can't change any of 
that, I'm looking to get it running smoothly.


   Every time I restart Tomcat, the speed comes up to acceptable levels 
and stays there for as much as a few hours. Anything more than that and 
the process is either too slow for the browser timeout or it is actually 
hung. I don't see anything obvious in the tomcat logs and I can confirm 
that nothing is reaching UniVerse in timeframe when the problem occurs.

   Any thoughts on how to investigate this or solve it?

   - Chuck "Too Monogamous to Tomcat Around" Barouch
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/