[U2] [UV] Size Limit in a Dynamic Array

2005-03-03 Thread Sunny Matharoo
Hi, I wonder if anyone would know what the size limit of data that can be handled within a dynamic array from within UniObjects. We came across a limit whereby a customer had just over 14000 items in an array that was being returned from UV. The application threw an error when it came back with

Re: [U2] [UV] making 00001 our of 1

2005-03-03 Thread CWNoah2
Mark, I'm one of those programmers who use the overly grand way of spacing you describe. I believe that ASDTFY = '' AS = '' DRT = 0 is much more readable than ASDTFY='' AS='' DRT=0 especially when there is a lot more code than in this example, and everything else around

RE: [U2] [UV] Size Limit in a Dynamic Array

2005-03-03 Thread Adrian Matthews
Pretty sure the limit on any argument to a UniObjects call is 16k. Been a while since I used it though so that limitation may have gone by now. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Sunny Matharoo Sent: 03 March 2005 10:21 To:

Re: [U2] [UV] making 00001 our of 1

2005-03-03 Thread CWNoah2
Chuck, Now if only Jbase had something like VLIST (sigh...). Regards, Charlie Noah [EMAIL PROTECTED] (mailto:[EMAIL PROTECTED]) writes: Speaking of Y2K-related programs, I too wrote one, but it searched the VLIST of the program. That way I didn't care about spacing, etc.. You might

Re: [U2] [UV] making 00001 our of 1

2005-03-03 Thread Marco Manyevere
...and also watch out for: 3: A = FMT(5, '60R') 3 0 : 09C format 5 60R = A 4: B = FMT(5, 6'0'R) 4 8 : 09C format 5 6'0'R = B [EMAIL PROTECTED] wrote: Chuck, Now if only Jbase had something like VLIST (sigh...). Regards, Charlie Noah [EMAIL PROTECTED]

[U2] RE: ODBC driver for accessing MS-SQL from AIX running unix

2005-03-03 Thread Metherall, Arthur
Stuart, We're currently running 5.2 on an HP Tru64 system currently, and we are upgrading to 6.x on an IBM AIX system shortly. We already have all the programs written using a DataDirect ODBC interface, which was proved free of charge from HP. IBM does not make the same offer. So we're

[U2] UniVerse/AIX/SB+ Printer Forms

2005-03-03 Thread Dave Schexnayder
Hi Gals and Guys, We are trying to deploy our application on UniVerse/AIX/SB+ and we use SB+ stationeries (forms). Using the /PM menu Maintain Printers, I can change which printer is currently assigned each form, however, we can only change the form if I am the root user. Since our users do

RE: [U2] [UV] making 00001 our of 1

2005-03-03 Thread Adrian Matthews
Personally I find well spaced and structured code easier to read. Consider the following: BEGIN CASE CASE V=5 TOTAL = AMT*RATE CASE V=6 TOTAL = AMT*RATE2 CASE 1 ERR = 14 END CASE Is much better as: Begin Case

Re: [U2] [UV] making 00001 our of 1

2005-03-03 Thread Mike Rajkowski
noteI get the digest, am not replying with the actual post/note It may be that the length is setup as a variable. i.e R%:ID.LEN I would search for R%, and the other formats suggested with the thought that the length is not a constant. i.e. STR('0', ID.LEN - LEN(ID)) search for STR('0',

RE: [U2] [UV] making 00001 our of 1

2005-03-03 Thread Kevin King
Spacing is overly grand? Though I can't cite specifics, I do recall a study done several years ago that talked about the ergonomic value of whitespace in code. At the risk of misquoting, it seems the brain interprets whitespace as a natural terminator when reading through code, and makes it

RE: [U2] [UV] making 00001 our of 1

2005-03-03 Thread Marilyn Hilb
That is until you have to add a line and the new lines words are longer which means all the old lines need to be spaced out.. I have better things to do with my time :). I try to follow any acceptable pattern that is already there when changing existing code. But beyond 'tabbing' in if/end

RE: [U2] UniVerse/AIX/SB+ Printer Forms

2005-03-03 Thread Marilyn Hilb
You must be on a different version that we are. I can add as many stationeries as I want to any single printer in /PM - Physical Printer Definition. No need to change them on any regular basis. We are on NT. The menu selection that you mentioned only assigns the NT printer name to the SB

RE: [U2] [UV] making 00001 our of 1

2005-03-03 Thread Les Hewkin
I don't like to disagree with people BUT.. I like the first example best. Why not compare like with like This is how I would write it BEGIN CASE CASE RATE.INDICATOR = 5 TOTAL.AMT = AMOUNT * MAIN.RATE CASE RATE.INDICATOR = 6 TOTAL.AMT = AMOUNT * SECONDARY.RATE

RE: [U2] [UV] making 00001 our of 1

2005-03-03 Thread Kevin King
A number of years ago I knew a guy who avoided using = as both assignment and conditional, preferring to use = only for assignment and EQ for conditions. His rationale, which I agree with, was that it removes ambiguity and forces spaces around the EQ to improve readability. That was probably 12

[U2] [UV] making 00001 our of 1 - THANKS AND SORRY

2005-03-03 Thread iggchamp
I just wanted to say thanks to everyone who responded to my question. Basically, I was looking to find any code in our system that could possibly be adding leading 0's to our item number since we are converting from a fixed 5 digit item number to a variable length number. With the help of the

RE: [U2] [UV] making 00001 our of 1 - THANKS AND SORRY

2005-03-03 Thread Marilyn Hilb
I don't think he was referring to himself. He was just stating what the research on this issue determined.. referring to the brain as simply the human brain. Not his in particular. :). Thanks, Marilyn A. Hilb Value Part, Inc Direct: 847-918-6099 Fax: 847-367-1892 [EMAIL PROTECTED]

RE: [U2] Unirpc error on AIX

2005-03-03 Thread Michael Polak
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 Anthony, Thanks. That was it. Mike - -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Anthony Dzikiewicz Sent: Wednesday, March 02, 2005 9:05 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Unirpc

[U2] Uniobjects and UV/Windows 2003 Server.

2005-03-03 Thread Bob Kim
Hello, Has anyone noticed problems with using Uniobjects and UV (version 10.1.0) running on Win2003 servers? Specifically, we wrote a VB app. that uses uniobjects to create pick flavored accounts and type 18 data files on the fly and copies records from a D3 server. We had relatively minimal

RE: [U2][UV] and FoxPro?

2005-03-03 Thread Nick Cipollina
ODBC seems to be too slow for what we are trying to do. We need to access a file that has almost 300,000 records. Is there a way to make this faster? Thanks, Nick Cipollina -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Ray Wurlod Sent: Wednesday,

RE: [U2] [UV] making 00001 our of 1 - THANKS AND SORRY

2005-03-03 Thread Pingilley, Ron
Folks, snip refer to themselves in the third person (ie. the brain). Or... Did I misunderstand yet another e-mail. Haha JK Did ya notice the Haha JK (as in just kidding)? He was intentionally misunderstanding so as to be funny. --Ron P. P.S. an End-of-thread is probably

Re: [U2] looking for Joe Toledo, Toledo Assoicates Inc.

2005-03-03 Thread Cooper, Rudy
I believe Joe runs a golf tournament in memory of his late father and for the City of Hope. If you go here, http://www.lusogolf.org/ , you may find his email address referenced somewhere. rudy Rudy Cooper Sage Publications I.T Development Thousand Oaks, California (805) 499-0721 #7724

Re: [U2] [UV] making 00001 our of 1 - THANKS AND SORRY

2005-03-03 Thread Moderator
Agreed, Ron. END OF THREAD. - Charles Barouch, Moderator Pingilley, Ron wrote: P.S. an End-of-thread is probably in order :) --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] [UD] D3 Filesave Load on Unidata

2005-03-03 Thread Alfke, Colin
Generally, I would see char(0) problems when the block sizes were different between the devices. I don't recall seeing any char(211)'s though. You may want to try a different block size. It may solve the problem - and be faster. I had a Aix box that I restored the data onto and then I did the

[U2] [UD] Aix filesystem

2005-03-03 Thread Alfke, Colin
Does anyone know if there is a limit on the size of a filesystem in Aix? Aix 5.1 UD 6.0.8 Thanks Colin Alfke Calgary, AB --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

RE: [U2] [UD] import fixed-width file

2005-03-03 Thread Alfke, Colin
Here is a quick example that should get you started. This is assuming that the records in the file are delimited with a line feed. If not you would have to look at the osopen and osbread commands. OS.FILE = C:\DATA\MYFILE.TXT NUM.COLUMNS = 5 COLUMN.WIDTH = 10 UD.FILE = MYFILE * OPEN UD.FILE TO

RE: [U2] [UD] D3 Filesave Load on Unidata

2005-03-03 Thread Ken Wallis
Doesn't D3 do something stupid like default to a 500 byte block size, while UniData assumes 512? Seems a bit suspicious that you have 12 bytes of garbage to get rid of ... HTH, Ken -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Alfke, Colin

RE: [U2] [UD] Aix filesystem

2005-03-03 Thread Ken Wallis
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Alfke, Colin Does anyone know if there is a limit on the size of a filesystem in Aix? Aix 5.1 UD 6.0.8 http://publib16.boulder.ibm.com/doc_link/en_US/a_doc_lib/aixbman/admnconc/fs _types.htm#jfs_under

RE: [U2] [UD] D3 Filesave Load on Unidata

2005-03-03 Thread Kevin King
Yes, but the guy who created the files swears it was created with a 512 byte blocksize. I agree, though, it does sound a bit fishy, like maybe D3 is overriding 512 with it's own ideas? -Kevin [EMAIL PROTECTED] http://www.PrecisOnline.com -Original Message- From: [EMAIL PROTECTED]

RE: [U2] [UV] making 00001 our of 1 - THANKS AND SORRY

2005-03-03 Thread iggchamp
w I was trying to make a joke. Sorry. Not about the extemely sharp individual part though - I was sincere. I would never insult anyone on this list as it is an incredibly valuable resource for me. And... I enjoy reading from people who have great knowledge and a passion for what

RE: [U2] [UD] D3 Filesave Load on Unidata

2005-03-03 Thread Josh Volosov (3)
Hi, I will be visiting a customer on Friday, 3/4/04, and will return on Monday 3/7/04. I will have limited or no access to e-mail or voice mail. If a you need an immediate response to your e-mail please e-mail [EMAIL PROTECTED] or you can call Frank at extension 467. Thanks and have a great

RE: [U2] [UD] Aix filesystem

2005-03-03 Thread Dan Fitzgerald
It's according to the size you choose for number of bytes per inode (nbpi). From the man on chfs (change file system): http://publib.boulder.ibm.com/infocenter/pseries/index.jsp?topic=/com.ibm.aix.doc/cmds/aixcmds1/chfs.htm The maximum size of a JFS file system is a function of its fragment size

[U2] Happy Odd Day (Unclassified)

2005-03-03 Thread HENDERSON MIKE, MR
Dear U2 Listers I'd like to wish you all a very Happy Odd Day for tomorrow! Tomorrow Saturday 5th March 2005 is, in the U2 / Pick calendar Day Number 13579 Days don't come any odder than that (only and all the odd digits, in ascending order) Enjoy! :-) Mike Henderson

RE: [U2] Raising errors through ODBC

2005-03-03 Thread Hona, David S
I'm not sure what need to be able to raise an error similar to the way the odbc raises error. means. You don't mention if you're using BCI, just odbc. Can we assume you are? Platform? OS? Do you want UniVerse to read the ODBC errors raised by the SQLServer stored proceedure call? Or Do you