[U2] Does UniDynArray of UOJ behave differently in Unix/Linux?

2007-07-23 Thread waivic
We have a Unidata 7.1 runing on a Redhat Linux server. I build a subroutine X.SUB1(XL.INPUTS, X.OUTPUT). XL.INPUTS is a dynamic array list; X.OUTPUT is the output. I need to call X.SUB1 through UniObject for Java, I have the following codes (_uniSession is a UniSession Object): UniSubroutine

RE: [U2] Does UniDynArray of UOJ behave differently in Unix/Linux?

2007-07-23 Thread Bob Little
I wonder if your LANG environment is set right on the Linux box. I know I have seen unexpected results with UV on Linux when the LANG environment variable is not set to C. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of waivic I have two questions: 1.

[U2][UV] List-type Item File

2007-07-23 Thread Perry Taylor
I have a need to store records which are lists of record ids, much like those in SAVEDLISTS, and I'm been trying to find the best file type to use. There will be millions of records in this file, with the number of attributes varying from just a few to thousands. This file will only be accessed

RE: [U2][UV] List-type Item File

2007-07-23 Thread Jeff Fitzgerald
Sounds like a cross reference file... I would investigate the type 25 file, which is a B-Tree. I don't know much about UV's implementation but in general B-Tree files are good for this sort of thing. Additionally, there are functions in UV BASIC that allow B-Tree file navigation, BSCAN for

Re: [U2] Does UniDynArray of UOJ behave differently in Unix/Linux?

2007-07-23 Thread Jeff Powell
On Linux I have found the UOJ needs LANG=en_US.iso885915 On Mon, 2007-07-23 at 00:05 -0700, waivic wrote: We have a Unidata 7.1 runing on a Redhat Linux server. I build a subroutine X.SUB1(XL.INPUTS, X.OUTPUT). XL.INPUTS is a dynamic array list; X.OUTPUT is the output. I need to call

[U2] universe/unidata question

2007-07-23 Thread Doug Chanco
Hey all, I was wondering if anyone can tell me (or knows of any good sites/articles that talk about) the benefits of universe over unidata (and visa versa). From my universe days I recall that they had lots of file types you could use (if your keys right mostly characters, left heavy with

RE: [U2] Redback problem with opening a pipe

2007-07-23 Thread Doug Farmer
John, Thanks for the response. Of course it was user error. The pipe names use the account name in the rgwresp.ini file. For some reason, I had included a space in the account name. So the pipe name ended up as \\.\pipe\to_Manage 2000 7_2_3820 (Notice the spaces!, I sure didn't even in

RE: [U2] universe/unidata question

2007-07-23 Thread Brutzman, Bill
Approx seven years ago, for my company at the time, www.Epicor.com recommended UniData for WinServers and UniVerse for Unix. --Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Doug Chanco Sent: Monday, July 23, 2007 4:24 PM To:

RE: [U2] Unidata 7.1 / RedBack 4.2.6 / Connections dropping?

2007-07-23 Thread John Jenkins
Andy Stopping while the dbpause is in effect and a RedBack request hits the system at the time? Otherwise - are you hitting a sync bottleneck with RFS? Of course - I hope you are not starting RedBack as root. Regards JayJay -Original Message- From: [EMAIL PROTECTED]

[U2] Dictionary Help!

2007-07-23 Thread Al DeWitt
UniData 6.0.12. I'm trying to remember where there is list of subroutines I can use when creating v-descriptors/i-descriptors. Since I don't do it very often I have forgotten which manual they can be found in. Can anybody enlighten me? Thanks. Albert DeWitt Sr. Programmer Analyst

[U2] Move data files from Unidata to Universe

2007-07-23 Thread Scott Ballinger
I have a Unidata demo on my pc that I installed along the the PE version of Unidata. I want to test in my Universe/Linux environment. How does one convert a Unidata account to Universe? (I am ok with the ud style dicts, so I just need to convert the data files, indexes? etc.) It has been suggested

Re: [U2] Does UniDynArray of UOJ behave differently in Unix/Linux?

2007-07-23 Thread waivic
I need to set LANG=en_US in order for the codes working in our system. Wai waivic wrote: We have a Unidata 7.1 runing on a Redhat Linux server. I build a subroutine X.SUB1(XL.INPUTS, X.OUTPUT). XL.INPUTS is a dynamic array list; X.OUTPUT is the output. b b When I run the above