[U2] Tuning uvconfig parameters in universe 9.6

2004-10-12 Thread Jawed Akhtar - ISD
Hi, We are running universe 9.6 with GLobus on 64 bit HP-UX 11.0. I want to know; 1. How could I know if universe is running in 64 bit mode. 2. What parameters of uvconfig are exhausting in universe and how to tune them. Users are locked frequently once in a day. 3. What should be file system

Memo: Re: [U2] Tuning uvconfig parameters in universe 9.6

2004-10-12 Thread asvin . dattani
Hi Javed, 1. Universe does not have a 64 bit mode as you understand it. There is a uvconfig parameter that decided whether the default mode for newly created files is 64 bit or 32 bit, but I dont think that is what you are looking for. Individual files in Universe can be 64 bit or 32 bit. You

Re: [U2] [UD] BASIC COMPILE ERROR: Too many constants near line

2004-10-12 Thread Craig Bennett
Hi Wally, 32765 is the limit for contants. No, it is not configurable. Time for a subroutine? thats depressing, this IS a subroutine. I have a large amount of text in need to include in the program object which I would STRONGLY prefer not read from disk. There is a maximum line length too isn't

RE: [U2] Readu lock lost after 1 hour.

2004-10-12 Thread Adrian Matthews
Are you running the deadlock universe process? That could be doing it. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sibut Pascal Sent: 11 October 2004 17:12 To: '[EMAIL PROTECTED]' Subject: [U2] Readu lock lost after 1 hour. Dear all, I had problem

RE: [U2] [UD] BASIC COMPILE ERROR: Too many constants near lin e

2004-10-12 Thread Gordon Glorfield
Here's a dumb question but what is a constant? Do you mean an EQUate? Gordon J. Glorfield Sr. Applications Developer MAMSI (A UnitedHealth Company) 301-360-8839 Hi Wally, 32765 is the limit for contants. No, it is not configurable. Time for a subroutine? thats depressing, this IS a

RE: [U2] Readu lock lost after 1 hour.

2004-10-12 Thread Brian Leach
Do you have AUTOLOGOUT set? Issue an AUTOLOGOUT 0 (zero) to unset it, or AUTOLOGOUT to check it. Regards, Brian Leach -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sibut Pascal Sent: 11 October 2004 17:12 To: '[EMAIL PROTECTED]' Subject: [U2] Readu

Re: [U2] Readu lock lost after 1 hour.

2004-10-12 Thread Martin Phillips
Brian, This is absolutely horrendous (my personal opinion). See the email below dated a couple of years back from Charles Stevenson that describes the problem and the fix. This is so nasty that I kept the mail! Martin Phillips Ladybridge Systems 17b Coldstream Lane, Hardingstone, Northampton

[U2] Any work on UD 6.1 PE?

2004-10-12 Thread Noah Hart
Is there any news on the availability of the 6.1PE download? Thanks, Noah Hart --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] [UD] BASIC COMPILE ERROR: Too many constants near lin e

2004-10-12 Thread Mats Carlid
No it must be literals to make sense... -- mats Gordon Glorfield wrote: Here's a dumb question but what is a constant? Do you mean an EQUate? Gordon J. Glorfield Sr. Applications Developer MAMSI (A UnitedHealth Company) 301-360-8839 Hi Wally, 32765 is the limit for contants. No, it is

[U2] Report Writer

2004-10-12 Thread D Averch
Somebody mentioned in passing to me that there is a report writer written for Universe that was developed in Australia. Does any one know the name of the company and their web site? --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] Report Writer

2004-10-12 Thread Gordon Glorfield
It's a bit more than just a report writer but I think you may be referring to SB+. The report writer included in the SB+ product is pretty solid. Gordon J. Glorfield Sr. Applications Developer MAMSI (A UnitedHealth Company) 301-360-8839 -Original Message- From: [EMAIL PROTECTED]

RE: [U2] Any work on UD 6.1 PE?

2004-10-12 Thread Karjala Koponen
I asked at the IBM database conference. It's got to go through the release process (question to leaky memory self: were there outstanding non-technical issues?) and hoped to be available in November. I cannot recall what part of November but I'd assume later rather than earlier. No

[U2] Jackie Burhans is out of the office.

2004-10-12 Thread Jackie Burhans
I will be out of the office starting 10/12/2004 and will not return until 10/13/2004. I am out of the office on vacation. I will have limited access to email or voicemail and will return your message when I return. --- u2-users mailing list [EMAIL PROTECTED] To unsubscribe please visit

Re: [U2] Enforcing uniqueness of two fields per record?

2004-10-12 Thread Dan Eichholz
Wendy Smoak wrote: Timothy Snyder wrote: You can use the NO.DUPS keyword when creating the index, then check STATUS within your application after the write. Thank you! That does exactly what I need, it just refuses to write the record if there's already one there with that value.

RE: [U2] Report Writer

2004-10-12 Thread Kieran Clulow
You might be referring to Meier Business System's mvQuery? www.mbs.net.au They demo'd it at International Spectrum yesterday at the casino here in Sydney. Kieran Clulow System Architect University Co-Op Bookshops -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On

[U2] [UV] Typo leads to discovery of new feature

2004-10-12 Thread Barry Brevik
I was writing some test code when a slip of the fingers resulted in some wierd syntax, which then proceded to compile, and produced some interesting output. Anybody have any idea what this code thinks it is doing? PRINT 10.2 PRINT 10.'2' PRINT 10.'02' program output: 10.2 10.00 1000 ---

Re: [U2] [UD] BASIC COMPILE ERROR: Too many constants near line

2004-10-12 Thread Craig Bennett
Some of our software converts Adobe Type 1 font programs into BASIC programs and we have an issue on some larger fonts where I cannot fit the data from the font into the program because of the limit on the number of constants and the limit on line length. When you say: Is there any way to

RE: [U2] [UV] Typo leads to discovery of new feature

2004-10-12 Thread Kevin King
The 'xx' is masking. '2' is effectively similar to an OCONV(value,'MD2') ;* show 2 decimals, scale 2 '02' is effectively similar to an OCONV(value,'MD02') ;* show 0 decimals, scale 2 -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Barry Brevik Sent:

Re: [U2] [UV] Typo leads to discovery of new feature

2004-10-12 Thread Ray Wurlod
The stuff in quotes is a format specification. It's equivalent to using the Fmt function, for example Fmt(10.,'2') or Fmt(10.,'02'). '2' is the same as '2 decimal places', '02' is the same as '0 decimal places with a scaling factor of 2'. Originally from Pick, this shorthand is recognized in

RE: [U2] [UD] BASIC COMPILE ERROR: Too many constants near line

2004-10-12 Thread Stuart Boydell
Here's a dumb question but what is a constant? Do you mean an EQUate? I was dumbly wondering too so I downloaded the manual: A constant can be a numeric value, such as 25, or a string value, such as inventory. You must use quotation marks to enclose string values. You can use up to 32,765