Re: [U2] Help needed..

2013-05-07 Thread Tom Whitmore
...@listserver.u2ug.org] On Behalf Of Sathya Sent: Tuesday, May 07, 2013 12:36 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Help needed.. Wjhonson wjhonson at aol.com writes: That's interesting John, but the del *does* in fact *shift* the entire array forward each time. It really does

Re: [U2] Help needed..

2013-05-07 Thread Israel, John R.
Users List Subject: Re: [U2] Help needed.. Hi, Personally, I would use OPENSEQ and READSEQ. Each READSEQ would read the next field in the record. The file needs to be a type 1 or type 19 for OPENSEQ. An example of this is: OPENSEQ FILE.NAME2, KEY.TXT TO SOURCE.FN ELSE STOP 'Unable to open

Re: [U2] Help needed..

2013-05-07 Thread Aaron Titus
, May 07, 2013 7:46 AM To: U2 Users List Subject: Re: [U2] Help needed.. Hi, Personally, I would use OPENSEQ and READSEQ. Each READSEQ would read the next field in the record. The file needs to be a type 1 or type 19 for OPENSEQ. An example of this is: OPENSEQ FILE.NAME2, KEY.TXT

Re: [U2] Help needed..

2013-05-07 Thread Wjhonson
...@daytonsuperior.com To: U2 Users List u2-users@listserver.u2ug.org Sent: Tue, May 7, 2013 4:55 am Subject: Re: [U2] Help needed.. Note that if the file was built in Windows, it may have a CR:LF combination at the end of each line. Reading it in, PICK will cleanly distinguish one as a line delimiter

Re: [U2] Help needed..

2013-05-06 Thread Sathya
. -Original Message- From: Israel, John R. JohnIsrael at daytonsuperior.com To: 'U2 Users List' u2-users at listserver.u2ug.org Sent: Tue, Apr 30, 2013 9:27 am Subject: Re: [U2] Help needed.. Here is some fast and loose code that I often use. READ TXT.REC FROM F., KEY.TXT LOOP

Re: [U2] Help needed..

2013-04-30 Thread Allen Egerton
On 4/30/2013 11:21 AM, Sathya wrote: Hi all,.. I have a requirement here. Need guidance in doing that. Any help will be useful. TIA. I have a flat file with tab delimited records and the file looks like below: abcd 1234 cdef 3478 ghae 6284 ... I have to fetch the data 'abcd'

Re: [U2] Help needed..

2013-04-30 Thread George Gallen
OPENPATH directory-of-tab-delimited-file TO F.PATH ELSE STOP Can not find directory OPEN ,Name-of-file-with-keys TO F.KEYFILE ELSE STOP CAN Not find file * READ XDATA FROM F.PATH,flat-file-name ELSE STOP Can not find flat filename MAXLINES=DCOUNT(XDATA,CHAR(254)) FOR T=1 TO MAXLINES LIN=XDATAT

Re: [U2] Help needed..

2013-04-30 Thread George Gallen
I never used UFD before - I like that one. -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Allen Egerton Sent: Tuesday, April 30, 2013 11:57 AM To: U2 Users List Subject: Re: [U2] Help needed.. OPEN , UFD

Re: [U2] Help needed..

2013-04-30 Thread Israel, John R.
Here is some fast and loose code that I often use. READ TXT.REC FROM F., KEY.TXT LOOP ROW = TXT1 WHILE ROW # DEL TXT1 ;* Make the TXT file smaller and smaller and not traversing deeper and deeper CONVERT CHAR(9) TO @FM IN ROW KEY = ROW1;*

Re: [U2] Help needed..

2013-04-30 Thread Manu Fernandes
30 avril 2013 17:57 À : U2 Users List Objet : Re: [U2] Help needed.. On 4/30/2013 11:21 AM, Sathya wrote: Hi all,.. I have a requirement here. Need guidance in doing that. Any help will be useful. TIA. I have a flat file with tab delimited records and the file looks like below

Re: [U2] Help needed..

2013-04-30 Thread Wjhonson
@listserver.u2ug.org Sent: Tue, Apr 30, 2013 9:27 am Subject: Re: [U2] Help needed.. Here is some fast and loose code that I often use. READ TXT.REC FROM F., KEY.TXT LOOP ROW = TXT1 WHILE ROW # DEL TXT1 ;* Make the TXT file smaller and smaller and not traversing

Re: [U2] Help needed..

2013-04-30 Thread Israel, John R.
Sent: Tuesday, April 30, 2013 12:48 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Help needed.. That's interesting John, but the del *does* in fact *shift* the entire array forward each time. It really does :) You can traverse without re-scanning by using the SELECT or SELECTV to transform

Re: [U2] Help needed..

2013-04-30 Thread Wjhonson
But the shifting is more expensive than the traversing :) -Original Message- From: Israel, John R. johnisr...@daytonsuperior.com To: 'U2 Users List' u2-users@listserver.u2ug.org Sent: Tue, Apr 30, 2013 10:02 am Subject: Re: [U2] Help needed.. Yes, I understand it shifts

Re: [U2] Help with REVISE (AKA ENTRO/ENTROC)

2013-01-24 Thread Brian Leach
-boun...@listserver.u2ug.org] On Behalf Of Gregor Scott Sent: 24 January 2013 05:35 To: U2 Users List Subject: Re: [U2] Help with REVISE (AKA ENTRO/ENTROC) According to the UV11 System Description manual: --snip-- Inserts a new line item above the current line item. ReVise displays an explanation

Re: [U2] Help with REVISE (AKA ENTRO/ENTROC)

2013-01-24 Thread Clif Oliver
Thanks, Gregor. Yes. Single not double does it. The System Description was one place I forgot to check. I would have thought it would be in the Reference manual with the REVISE documentation. Silly me. I appreciate the assist. Regards, Clif -- W. Clifton Oliver, CCP CLIFTON OLIVER

Re: [U2] Help with REVISE (AKA ENTRO/ENTROC)

2013-01-24 Thread Clif Oliver
configurable and functional. Brian -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Gregor Scott Sent: 24 January 2013 05:35 To: U2 Users List Subject: Re: [U2] Help with REVISE (AKA ENTRO/ENTROC) According

Re: [U2] Help with REVISE (AKA ENTRO/ENTROC)

2013-01-23 Thread Gregor Scott
According to the UV11 System Description manual: --snip-- Inserts a new line item above the current line item. ReVise displays an explanation and prompts you to enter the new set of associated multivalues. #n Copies all associated multivalues of line item n and puts it above the current line

Re: [U2] Help in removing erroneous character from data file {Unclassified}

2010-09-19 Thread HENDERSON MIKE, MR
-Original Message- From: u2-users-boun...@listserver.u2ug.org On Behalf Of ggayat...@in.ibm.com Sent: Friday, 17 September 2010 8:39 p.m. To: u2-users@listserver.u2ug.org Subject: Re: [U2] Help in removing erroneous character from data file Another application had problem processing the file

Re: [U2] Help in removing erroneous character from data file

2010-09-17 Thread Mecki Foerthmann
More information would be helpful. On 17/09/2010 06:10, ggayathri wrote: I have a data file that is sent from my application(on UniVerse) to an interfacing application. In the huge amount of data, an erroneous character has been introduced. Can someone suggest a way to remove that

Re: [U2] Help in removing erroneous character from data file

2010-09-17 Thread ggayathri
Another application had problem processing the file that it had pulled from my application with the data. In Line Number : 2506 a field(field comes from a UniVerse table) had a value of 11 and the application is looking for time (XX:XX:XX format) After this field all data is incorrect. Also, the

Re: [U2] Help with encryption

2009-08-12 Thread m3p
- Original Message From: m3p jr...@go.com To: u2-users@listserver.u2ug.org Sent: Tuesday, 11 August, 2009 20:36:25 Subject: Re: [U2] Help with encryption Hello all, The code below: RESULT = '' STATUS = DIGEST('MD5','THIS IS A TEST',1,RESULT) PRINT 'STATUS = ' : STATUS PRINT 'RESULT

Re: [U2] Help with encryption

2009-08-11 Thread m3p
Hello all, The code below: RESULT = '' STATUS = DIGEST('MD5','THIS IS A TEST',1,RESULT) PRINT 'STATUS = ' : STATUS PRINT 'RESULT = ' : OCONV(RESULT,'MX') works fine, except... I keep getting binary data displayed, despite the OCONV(RESULT,'MX') Anyone have an idea how to turn the RESULT

Re: [U2] Help with encryption

2009-08-11 Thread Henry Unger
Subject: Re: [U2] Help with encryption Hello all, The code below: RESULT = '' STATUS = DIGEST('MD5','THIS IS A TEST',1,RESULT) PRINT 'STATUS = ' : STATUS PRINT 'RESULT = ' : OCONV(RESULT,'MX') works fine, except... I keep getting binary data displayed, despite the OCONV(RESULT,'MX') Anyone

Re: [U2] Help with encryption

2009-08-11 Thread IT-Laure Hansen
email: Click here to register/subscribe -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of Henry Unger Sent: Tuesday, August 11, 2009 12:38 PM To: 'U2 Users List' Subject: Re: [U2] Help with encryption Try MX0C. Best

Re: [U2] Help with encryption

2009-08-11 Thread Dan McGrath
-boun...@listserver.u2ug.org] On Behalf Of IT-Laure Hansen Sent: Wednesday, 12 August 2009 5:44 AM To: U2 Users List Subject: Re: [U2] Help with encryption Actually, you need to parse character by character: NB.CS = LEN(HASHED.TEXT) NEW.TEXT = FOR THE.C = 1 TO NB.CS

Re: [U2] Help with encryption

2009-08-11 Thread Dan McGrath
, MX) END Not sure if that helps you or not -Original Message- From: u2-users-boun...@listserver.u2ug.org [mailto:u2-users-boun...@listserver.u2ug.org] On Behalf Of IT-Laure Hansen Sent: Wednesday, 12 August 2009 5:44 AM To: U2 Users List Subject: Re: [U2] Help with encryption Actually

Re: [U2] Help with encryption

2009-08-11 Thread andy baum
:25 Subject: Re: [U2] Help with encryption Hello all, The code below: RESULT = '' STATUS = DIGEST('MD5','THIS IS A TEST',1,RESULT) PRINT 'STATUS = ' : STATUS PRINT 'RESULT = ' : OCONV(RESULT,'MX') works fine, except... I keep getting binary data displayed, despite the OCONV(RESULT,'MX

RE: [U2] Help with encryption

2009-05-13 Thread Joshua Gallant
[mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of IT-Laure Hansen Sent: Tuesday, May 12, 2009 5:17 PM To: 'u2-users@listserver.u2ug.org' Subject: RE: [U2] Help with encryption Thanks. These seem to only handle symmetrical encryption, not one-way hashing (like MD5), but maybe I am missing something

RE: [U2] Help with encryption

2009-05-13 Thread IT-Laure Hansen
: Wednesday, May 13, 2009 6:14 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with encryption I know someone already mentioned it but since there are so many responses trying to do something more difficult I figured I'd throw it out there again. Won't the DIGEST() function do what

Re: [U2] Help with encryption

2009-05-13 Thread Bill Haskett
example of what you appear to be looking for. HTH, Bill __ From: Joshua Gallant jgall...@cbd.com Sent: 5/13/2009 6:14 AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Help with encryption I know someone

Re: [U2] Help with encryption

2009-05-12 Thread Rex Gozar
FUNCTION MD5SUM(TEXT) * Return an MD5 hash * CVS $Revision: 1.2 $ $Date: 2009/04/14 17:13:27 $ ** EQU ALGORITHM$MD5 TO MD5 EQU DATALOC$STRING TO 1 EQU DATALOC$FILE TO 2 RESULT = ERRCODE = DIGEST(ALGORITHM$MD5, TEXT, DATALOC$STRING, RESULT) RESULT =

RE: [U2] Help with encryption

2009-05-12 Thread Dave Greer
I'm only aware of RC5 and some des. See ENCRYPT function in Basic Ref. -Original Message- From: IT-Laure Hansen [mailto:lhan...@redwoodcity.org] Sent: Tuesday, May 12, 2009 2:48 PM To: 'u2-users@listserver.u2ug.org' Subject: [U2] Help with encryption Does anyone know how to cause MD5

RE: [U2] Help with encryption

2009-05-12 Thread IT-Laure Hansen
...@listserver.u2ug.org] On Behalf Of Dave Greer Sent: Tuesday, May 12, 2009 12:43 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with encryption I'm only aware of RC5 and some des. See ENCRYPT function in Basic Ref. -Original Message- From: IT-Laure Hansen [mailto:lhan

RE: [U2] Help with encryption

2009-05-12 Thread jpb-u2ug
...@ntn-bower.com Sent: Tuesday, May 12, 2009 3:38 PM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Help with encryption Hello, This is to the moderator. I will be going on vacation next week for two weeks and will set my out of office message before I go. How do I stop from sending

RE: [U2] Help with encryption

2009-05-12 Thread Tom Whitmore
: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of IT-Laure Hansen Sent: Tuesday, May 12, 2009 5:17 PM To: 'u2-users@listserver.u2ug.org' Subject: RE: [U2] Help with encryption Thanks. These seem to only handle symmetrical encryption, not one-way hashing (like

RE: [U2] Help with encryption

2009-05-12 Thread Tony G
From: Tom Whitmore We use gpg to provide a level of one-way encryption. It's not the best, but it is the only option we could find. Does Universe or Unidata have a way to link custom functions into the monitor? This would facilitate in-process execution of code directly from BASIC. For

RE: [U2] Help with encryption

2009-05-12 Thread Dan McGrath
In Unidata there is a CALLC function -Original Message- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2-us...@listserver.u2ug.org] On Behalf Of Tony G Sent: Wednesday, 13 May 2009 10:27 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with encryption From: Tom

RE: [U2] Help with encryption

2009-05-12 Thread Henry Unger
: Tuesday, May 12, 2009 5:27 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with encryption From: Tom Whitmore We use gpg to provide a level of one-way encryption. It's not the best, but it is the only option we could find. Does Universe or Unidata have a way to link custom

RE: [U2] Help with sockets

2009-05-04 Thread Glen Batchelor
-Original Message- From: owner-u2-us...@listserver.u2ug.org [mailto:owner-u2- us...@listserver.u2ug.org] On Behalf Of Joshua Gallant Sent: Monday, May 04, 2009 9:33 AM To: u2-users@listserver.u2ug.org Subject: [U2] Help with sockets Hi Folks, Maybe one of you can help...

RE: [U2] Help!

2008-08-24 Thread David Jordan
Hi Laura Have they check the temp directory access rights, users require read write access to the temp directory. Regards David Jordan --- u2-users mailing list u2-users@listserver.u2ug.org To unsubscribe please visit http://listserver.u2ug.org/

Re: [U2] Help!

2008-08-24 Thread Susan Lynch
versions on the db server. Susan Lynch F.W. Davison Company, Inc. - Original Message - From: David Jordan [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: 08/24/2008 7:46 AM Subject: RE: [U2] Help! Hi Laura Have they check the temp directory access rights, users require read write

RE: [U2] Help diagnosing mysterious database hangs (UV 10.1.25, HP-UX 11.11)

2008-08-01 Thread Tom Dodds
We recently had an issue on a Window 2003 server that would seem to hang just on one secession, but not always the same secession. It was not on any specific program, file, subsystem, just completely random. What we, think, we found is that it had recently been added to an additional domain and

RE: [U2] help!

2007-10-08 Thread Anthony Youngman
Is it possible your work server is subscribed and you're on the internal distribution list? See if you can look at the email header to find out if it's been forwarded from somewhere. Cheers, Wol -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of doug

RE: [U2] help!

2007-10-08 Thread Larry Hiscock
Doug, You're not subscribed to any of the lists with an activant.com email address. It is possible that you're just seeing a trickle of emails that were already in the queue at the time you unsubscribed. Larry Hiscock Moderator -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL

Re: [U2] help!

2007-10-08 Thread Doug Chanco
Thanks Larry I bet that was the issue dougc Larry Hiscock wrote: Doug, You're not subscribed to any of the lists with an activant.com email address. It is possible that you're just seeing a trickle of emails that were already in the queue at the time you unsubscribed. Larry Hiscock

RE: [U2] Help in creating Retrieve statement for a multivalue field

2007-06-06 Thread Anthony Youngman
You can use an EVAL or an i-descriptor. For example, assuming your field is the ID, then EVAL @ID[2] will give you the year, and EVAL FIELD(@ID, '*', 4, 1) will give you the route. (or you could use field(5) for the year :-) Cheers, Wol -Original Message- From: [EMAIL PROTECTED]

RE: [U2] Help in creating Retrieve statement for a multivalue field

2007-06-05 Thread Dave Davis
You want BY-EXP not BY -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, June 05, 2007 1:42 PM To: u2-users@listserver.u2ug.org Subject: [U2] Help in creating Retrieve statement for a multivalue field My retrieve statement

Re: [U2] Help in creating Retrieve statement for a multivalue field

2007-06-05 Thread Allen Egerton
[EMAIL PROTECTED] wrote: My retrieve statement produced below is not formatting properly. I want the first column to be repeated for each period. SORT SACM.AOS.P BY FDX.Period FDX.Period FMT 30L @ID FMT 35L FDX.NumOfDel LPTR SACM.AOS.P Period ##.

RE: [U2] Help with File Pointers

2007-03-18 Thread Bernard Lubin
- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Bob Woodward Sent: Friday, 16 March 2007 3:40 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with File Pointers But doesn't the locking let the same session set the same lock many times? BobW -Original Message

RE: [U2] Help with File Pointers

2007-03-16 Thread Don Verhagen
So Simple, yet effective. Regards, -- Donald Verhagen Application Development Manager [EMAIL PROTECTED] Tandem Staffing Solutions, Inc. 5901 Broken Sound Parkway NW, Suite 450 Boca Raton, FL 33487 USA Voice Phone: 561.226.8261 Fax Phone: 561.226.8115 On 3/15/2007 at 10:52 am, in message

RE: [U2] Help with File Pointers

2007-03-15 Thread Michael Rajkowski
If you are trying to determine that two files are pointing to the same thing, you could set a lock on one and try to set it on the other. If it will not let you do it, then you have the same file. ( note that my first thought was to write an item, but that could cause problems if anyone else was

RE: [U2] Help with File Pointers

2007-03-15 Thread Bob Woodward
@listserver.u2ug.org Subject: RE: [U2] Help with File Pointers If you are trying to determine that two files are pointing to the same thing, you could set a lock on one and try to set it on the other. If it will not let you do it, then you have the same file. ( note that my first thought

RE: [U2] Help with File Pointers

2007-03-15 Thread Michael Rajkowski
@listserver.u2ug.org [EMAIL PROTECTED] cc stserver.u2ug.org Subject RE: [U2] Help with File Pointers 03/15/2007 10:40

RE: [U2] Help with File Pointers

2007-03-15 Thread Michael Rajkowski
] cc stserver.u2ug.org Subject RE: [U2] Help with File Pointers 03/15/2007 10:40 AM Please respond

RE: [U2] Help with File Pointers

2007-03-13 Thread brian
Oh and one more thing came to mind. Windows still supports the old DOS SUBST command. Brian Susan Joslyn wrote: On help with file pointers thanks to everyone who has pitched in. So far I'm no joy. FILEINFO doesn't return just a hard path. --- u2-users mailing list

RE: [U2] Help with File Pointers

2007-03-13 Thread [EMAIL PROTECTED]
Susan Joslyn wrote: On help with file pointers thanks to everyone who has pitched in. So far I'm no joy. FILEINFO doesn't return just a hard path. STATUS doesn't seem to return anything. Ls -I might do the trick on UNIX but I need a Windows solution, too (and first). I think I can do the

RE: [U2] Help with File Pointers

2007-03-13 Thread Rod Hills
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Monday, March 12, 2007 1:19 PM To: [EMAIL PROTECTED] Cc: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with File Pointers quote who=Susan Joslyn Hi Karl, Thanks! The thing is, I can

Re: [U2] Help with File Pointers

2007-03-12 Thread karlp
quote who=Susan Joslyn Hi group. I'm trying to compare two file pointers to see if they are the same. Like this example: ../../this.path/that.path/BANANA And /u1/ud/this.path/that.path/BANANA I think what I'd want to do is start by resolving a path that had the relative path indicators

RE: [U2] Help with File Pointers

2007-03-12 Thread Brian Leach
Susan UniVerse thankfully doesn't have the @ variable insertion. Remember that on Windows, forward and backward slashes can be generally used indiscrimiately, e.g. C:\data\myaccount/myfile Then of course there are symbolic links under UNIX, case insensitivity in Windows.. Brian

RE: [U2] Help with File Pointers

2007-03-12 Thread Susan Joslyn
Hi Karl, Thanks! The thing is, I can figure out where I am, but I need to figure out where two Fpointers are pointing. Say I have two Fpointers (VOC entries): 001 F 002 ../../this.path/that.path/BANANA 003 ../../this.path/that.path/D_BANANA And another 001 F 002

RE: [U2] Help with File Pointers

2007-03-12 Thread Susan Joslyn
to the same place. Susan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Monday, March 12, 2007 4:19 PM To: [EMAIL PROTECTED] Cc: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with File Pointers quote who=Susan Joslyn Hi Karl, Thanks! The thing is, I

RE: [U2] Help with File Pointers

2007-03-12 Thread Mark Eastwood
Try opening the two files, then comparing using FILEINFO(filename,2); this gives the path to file. -Original Message- Thanks again. It is clear -- I think. But unless I'm still misunderstanding, you are giving me tools that I could use with my fingers on a keyboard and I'm wanting to

RE: [Spam-Low] RE: [U2] Help with File Pointers

2007-03-12 Thread Lee H. Burstein
-Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Susan Joslyn Sent: Monday, March 12, 2007 4:09 PM To: [EMAIL PROTECTED]; u2-users@listserver.u2ug.org Subject: [Spam-Low] RE: [U2] Help with File Pointers Hi Karl, Thanks! The thing is, I can figure out where I am, but I

RE: [U2] Help with File Pointers

2007-03-12 Thread David Wolverton
I like this answer even better!! I forget about FILEINFO! -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mark Eastwood Sent: Monday, March 12, 2007 3:31 PM To: u2-users@listserver.u2ug.org; [EMAIL PROTECTED] Subject: RE: [U2] Help with File

RE: [U2] Help with File Pointers

2007-03-12 Thread David Wolverton
\ or / to be whichever you'd rather work with since they behave the same in UniData... DW -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Susan Joslyn Sent: Monday, March 12, 2007 3:23 PM To: [EMAIL PROTECTED] Cc: u2-users@listserver.u2ug.org Subject: RE: [U2] Help

Re: [U2] Help with File Pointers

2007-03-12 Thread Jeff Schasny
This: ../.. means the directory above the directory above the one I'm in right now, so by knowing where you are right now (pwd) you can fill in the complete path.and compare apples to apples Susan Joslyn wrote: Hi Karl, Thanks! The thing is, I can figure out where I am, but I need to figure

RE: [Spam-Low] RE: [U2] Help with File Pointers

2007-03-12 Thread Bob Wyatt
Re: Susan, You can execute an ls -i for each path (ls -i ../../blahblah). This returns the inode for the file. If the inode is the same, the files are the same (one inode for each file). Lee H. Burstein Lee, this is on face value okay, but technically wrong; there is a chance that filea in

RE: [U2] Help with File Pointers

2007-03-12 Thread Baakkonen, Rodney A (Rod) 46K
Just to add one more possible complication to your scenario. Depending on the software or the UNIX admin people, you may need to worry about symbolic links at a UNIX level. For example, lets say you are in Unidata in the directory /usr/ud/ROD. In the VOC for this directory is a file called

RE: [U2] Help with File Pointers

2007-03-12 Thread Susan Joslyn
The FILEINFO idea is a good one -- but it will not serve. [SJ] Here's one file pointer PRCPROCESS: F PRCPROCESS D_PRCPROCESS Here's the other: DEMO.DOTS: F ..\PRC\PRCPROCESS ..\PRC\D_PRCPROCESS They actually do point to the same file. But the output of FILEINFO IS THIS: FILE

RE: [U2] Help with File Pointers

2007-03-12 Thread karlp
That's a pain. Have you dont the STATUS test to see if it points out the correct file path? I will guess it will produce the same results as FILEINFO, however am curious. We use nothing but Q-pointers for just this reason. This, however, brings me to what I think is an undocumented feature of

RE: [U2] Help with File Pointers

2007-03-12 Thread David Wolverton
. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Wolverton Sent: Monday, March 12, 2007 3:49 PM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help with File Pointers If you have the current 'path' then .. is always the path before... So

Re: [U2] Help with File Pointers

2007-03-12 Thread Don Verhagen
Susan, I noticed that err..that other software...had problems with relative paths. With SB Installed (and maybe without) you can get the base path of the ACCOUNT that the VOC from DMACCOUNTS1. You can then work with what the VOC entry from the path ACCOUNT in the account. I think you're

RE: [U2] Help with File Pointers

2007-03-12 Thread Bob Woodward
It looks like !VOC.PATHNAME will work to return the fully qualified path of two VOC F file pointer entries. Here's what I did: ED BOBW.BP TEST.VOC.PATH 8 lines long. : P 0001: CALL !VOC.PATHNAME(,TESTFILE,VOC.PATH,STATUS) 0002: IF STATUS = 0 THEN 0003: PRINT TESTFILE PATH=:VOC.PATH 0004:

RE: [U2] Help with File Pointers

2007-03-12 Thread Womack, Adrian
-users@listserver.u2ug.org Subject: RE: [U2] Help with File Pointers The FILEINFO idea is a good one -- but it will not serve. [SJ] Here's one file pointer PRCPROCESS: F PRCPROCESS D_PRCPROCESS Here's the other: DEMO.DOTS: F ..\PRC\PRCPROCESS ..\PRC\D_PRCPROCESS They actually do point

RE: [U2] HELP!!! with MVEnterprise and DigiPort Problem

2007-03-05 Thread u2
It's probably not mventerprise's fault. You need to debug the digiport from AIX. Do you have a file /dev/tty82 and does it have read/write permissions for the user that mventerprise runs as? You probably need to configure the digiport through smit to get the range of tty numbers that you want.

Re: [U2] Help ! UNIRPC

2007-02-16 Thread Adrian Merrall
On 2/17/07, Patricia Wilson [EMAIL PROTECTED] wrote: Has anyone experienced any issues with unirpc? Once we sorted the timeout issue as below using UOJ and the unirpc has been rock solid. - Has anyone experienced issues with setting the unirpc timeout parameter via the command line

Re: [U2] Help -- UD System hang...

2006-10-23 Thread Wally Terhune
ran out of message headers? kernel MSGTQL $UDTBIN/ipcstat -qonwill just show message queues with non-zero CBYTES or QNUM or 'ipcs -qop' - look at QNUM total and compare to kernel MSGTQL Wally Terhune U2 Support Architect IBM Information Management 4700 South Syracuse Street, Denver, CO

RE: [U2] Help -- UD System hang...

2006-10-23 Thread Larry Hiscock
AM To: u2-users@listserver.u2ug.org Subject: Re: [U2] Help -- UD System hang... ran out of message headers? kernel MSGTQL $UDTBIN/ipcstat -qonwill just show message queues with non-zero CBYTES or QNUM or 'ipcs -qop' - look at QNUM total and compare to kernel MSGTQL Wally Terhune U2 Support

RE: [U2] Help -- UD System hang...

2006-10-23 Thread Wally Terhune
Subject RE: [U2] Help -- UD System hang... 10/23/2006 11:56 AM Please respond to [EMAIL PROTECTED] er.u2ug.org Hi Wally, Thanks for the suggestion. Here's what I've currently got

RE: [U2] Help! Uniobjects for .NET Users

2006-08-14 Thread Nick Cipollina
C# or VB? Thanks, Nick Cipollina -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Patricia Wilson Sent: Monday, August 14, 2006 10:38 AM To: u2-users@listserver.u2ug.org Subject: [U2] Help! Uniobjects for .NET Users Ok - here's the deal fellow board

RE: [U2] Help! Uniobjects for .NET Users

2006-08-14 Thread Patricia Wilson
C# - Are you my white in shining armor? -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Nick Cipollina Sent: Monday, August 14, 2006 11:23 AM To: u2-users@listserver.u2ug.org Subject: RE: [U2] Help! Uniobjects for .NET Users C# or VB? Thanks, Nick

Re: [U2] Help with non functional printer

2006-05-22 Thread Brian Leach
to add PCL interpretation as well. Anyone interested please contact me off-list. Brian prints windows - -Original Message- From: Louis Windsor[EMAIL PROTECTED] Sent: 22/05/06 03:53:25 To: u2-users@listserver.u2ug.orgu2-users@listserver.u2ug.org Subject: Re: [U2] Help

Re: [U2] Help with non functional printer

2006-05-22 Thread Louis Windsor
prints windows - -Original Message- From: Louis Windsor[EMAIL PROTECTED] Sent: 22/05/06 03:53:25 To: u2-users@listserver.u2ug.orgu2-users@listserver.u2ug.org Subject: Re: [U2] Help with non functional printer With further messing about using the GDI,DEFAULT addition I now can

RE: [U2] Help with non functional printer

2006-05-21 Thread brian
What kind of printer are you using and with which driver? You might need to either: install it using the generic/text only driver (won't work with some printer models) OR issue the GDI flag as part of your SETPTR to switch to graphic mode printing if not: SETPTR ,,AT

RE: [U2] Help with non functional printer

2006-05-21 Thread Paul Hamrick
The reported symptoms sounds as if you purchased a host-based printer...a printer with no inherent support for PCL. At this time UniVerse/Windows is not supporting these new printers. Warning.new host-based printers are hitting the main stream with attractive pricing.they are not compatible with

Re: [U2] Help with non functional printer

2006-05-21 Thread Louis Windsor
Message - From: [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, May 22, 2006 2:36 AM Subject: RE: [U2] Help with non functional printer What kind of printer are you using and with which driver? You might need to either: install it using the generic/text only driver (won't work

Re: [U2] Help with non functional printer

2006-05-21 Thread Bruce Nichol
Goo'day, Louis,At 06:56 22/05/06 +0800, you wrote: It's a Canon PIXMA iP4000 printer using the driver off the installation CD. Needless to say the printer works fine under windows. When I do a SPOOL -LIST UV lists:- Printer: Microsoft Office Document Image Writer no entries. Printer: Canon

Re: [U2] Help with non functional printer

2006-05-21 Thread Louis Windsor
so far, Louis - Original Message - From: Bruce Nichol [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, May 22, 2006 9:02 AM Subject: Re: [U2] Help with non functional printer Goo'day, Louis,At 06:56 22/05/06 +0800, you wrote: It's a Canon PIXMA iP4000 printer using

Re: [U2] Help with non functional printer

2006-05-21 Thread Bruce Nichol
it would but un UniVerse Bits vs characters... Thanks for the responses so far, Louis - Original Message - From: Bruce Nichol [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, May 22, 2006 9:02 AM Subject: Re: [U2] Help with non functional printer Goo'day, Louis,At 06

Re: [U2] Help with non functional printer

2006-05-21 Thread Louis Windsor
around them as you get very response from whomever is in control. Sad to say Back to the drawingboard. Thanks again Louis - Original Message - From: Bruce Nichol [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Monday, May 22, 2006 11:43 AM Subject: Re: [U2] Help with non

Re: [U2] help with multivalue and when

2005-10-11 Thread Mark Johnson
This is a classic MV situation that is over 25 years old. I don't know the platform and if it supports associated fields. But, traditionally, selects against 2 fields are often taken as 2 separate selects. The classic repair is to concatenate the requested pair into one dict item and select it

Re: [U2] help with multivalue and when

2005-10-11 Thread john reid
This is only a stab... if you make field 7 the name of a phrase, say ACT.ACT, for the dict item, with the phrase being in the same dict as PH ACTION ACT.DTE then do the same query? On 10/11/05, Jeff Powell [EMAIL PROTECTED] wrote: I am querying a file with multivalued fields but I am not getting

RE: [U2] help with multivalue and when

2005-10-11 Thread Piers Angliss
U2 is not a database. UniData or UniVerse ? On UniData try HELP WHEN and look at the explanation of the ASSOCIATED keyword I think you're looking for WHEN ASSOCIATED action = PCK AND act.date = (today) but you need to make sure the file dictionary is correctly set up also only works in ECLTYPE

Re: [U2] help with multivalue and when

2005-10-11 Thread Mats Carlid
Jeff Powell wrote: I am querying a file with multivalued fields but I am not getting a precise enough selection. I want to find only those records where the multivalues for two separate fields meet the criteria within the same index. The file is the order-log file. There is only one record for

RE: [U2] help with multivalue and when

2005-10-11 Thread Bill_H
Jeff: If you don't have the usual U2 dictionary types (you have Pick S/A types) try: LIST ORDER-LOG BY-EXP ACTION = pck BY-EXP ACT.DATE = 10/11/05 . That should do the trick. Hope this helps. Bill -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf

Re: [U2] help with multivalue and when

2005-10-11 Thread Ray Wurlod
WITH selects records. WHEN only suppresses display of multivalued fields that do not meet your selection criteria. UniVerse/SQL makes this clearer, since you must specify both the selection clause and the suppression clause. You can do this with LIST as well. LIST filename field_list WITH

RE: [U2] Help!

2005-08-14 Thread Charlie Rubeor
Dana: It's now Sunday, so hopefully Wally Terhune and U2 support helped you get your system back up and healthy. Off the top of my head, you may run into issues with the following: You may have to re-catalog any programs that were in the global catalog table. Of course, determining what the

RE: [U2] Help!

2005-08-14 Thread Dana Baron
It's now Sunday, so hopefully Wally Terhune and U2 support helped you get your system back up and healthy. Greetings, Thanks to everyone for their support, moral and technical, throughout this ordeal. The U2 support folks were GREAT!, especially Paul Chang and Jim Abshire. I'm not out of the

RE: [U2] Help!

2005-08-13 Thread Ross Ferris
JOLT may be better than coffee for Sunday :-( -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dana Baron Sent: Saturday, 13 August 2005 10:17 PM To: U2-Users (E-mail) Subject: [U2] Help! Hi folks, Here's your worst nightmare come true: your production

RE: [U2] Help!

2005-08-13 Thread Stephen O'Neal
: [U2] Help! JOLT may be better than coffee for Sunday :-( -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dana Baron Sent: Saturday, 13 August 2005 10:17 PM To: U2-Users (E-mail) Subject: [U2] Help! Hi folks, Here's your worst nightmare come true

  1   2   >