RE: [U2] Best practice for Sequential IDs using TRANSACTION START COMMIT/RO...

2005-06-21 Thread Les Hewkin
Hi, Just got back from a short break camping so sorry for the late reply. What would you call a really big transaction? I look at it like this. You have to write the data away, you need the next seq number, so everyone else can wait. How long does it take to write away data to disk? We split

[U2] I can't delete a file.

2005-06-21 Thread César Riba Cervera
Hello Can help me I can't delete a file. Why? This is the message in Universe DELETE.FILE GCARECLAM Unable to DELETE file GCARECLAM Cisar. -- No virus found in this outgoing message. Checked by AVG Anti-Virus. Version: 7.0.323 / Virus Database: 267.7.9/23 -

Re: [U2] I can't delete a file.

2005-06-21 Thread harjinder . dhothar
Have you checked the OS/unix file permissions? h [EMAIL PROTECTED] Sent by: [EMAIL PROTECTED] 21/06/2005 10:49 Please respond to u2-users@listserver.u2ug.org To u2-users@listserver.u2ug.org cc Subject [U2] I can't delete a file. Hello Can help me I can't delete a file.

Re: [U2] I can't delete a file.

2005-06-21 Thread Mats Carlid
OS file doesn't exist or You don't have permissions either (not) write permissions on the file or write in the directory emediately above the file or list permissions somewhere higher up int the hierarchy. -- mats Cisar Riba Cervera wrote: Hello Can help me I can't delete a file.

Re: [U2] OCONV of no affect.

2005-06-21 Thread Mark Johnson
Yes. It also works on D3. Thanks again. - Original Message - From: Kevin King [EMAIL PROTECTED] To: u2-users@listserver.u2ug.org Sent: Tuesday, June 21, 2005 12:59 AM Subject: RE: [U2] OCONV of no affect. And that's what you were looking for, no? -Original Message- From:

RE: [U2] [UV] Disable UniObjects Access

2005-06-21 Thread David Jordan
You could just block the port on the firewall as UniObjects and ODBC all use the same port. Then you could still use UniAdmin within the firewall zone for administration David Jordan -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Craig Bennett Sent:

[U2] UVODBC driver 10.1.x and older on same machine?

2005-06-21 Thread Andy Moore
DISCLAIMER: This email and any files transmitted with it are confidential and intended solely for the use of the individual or entity to whom they are addressed. If you have received this email in error, please delete it and notify the sender immediately. Please note that there is no guarantee

[U2] Field Count from a Seq File

2005-06-21 Thread james . ronan
I hope someone can show me an easy way to get the number of lines from a sequential file - without looping through the file. I am running UV 10.x on a AIX box. I open the file using an OPENSEQ command and I am looping through the record using a READSEQ command. Either immediately after the

RE: [U2] Field Count from a Seq File

2005-06-21 Thread Gerral Hubbard
I've always used an execute to AIX its fast with very little overhead EXECUTE SH -c 'wc -l filepathandanme' CAPTURING RESULTS -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, June 21, 2005 2:38 PM To:

RE: [U2] Field Count from a Seq File

2005-06-21 Thread Lance Jahnke
How about : CMD='SH -c cat foo.txt|wc -l' EXECUTE CMD CAPTURING MYCOUNT MYCOUNT=TRIM(MYCOUNT) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, June 21, 2005 2:38 PM To: u2-users@listserver.u2ug.org Subject: [U2] Field

RE: [U2] Field Count from a Seq File

2005-06-21 Thread Brian Leach
James, Without knowing why you don't want to loop through it, these may or may not be helpful: 1. OpenSeq the file, get the size of it from a Status statement and ReadBlk the entire file in one go, depending on size of course. Then you can DCount. 2. Ditto, but loop through - not a line at a

Re: [U2] Field Count from a Seq File

2005-06-21 Thread Kent Walker
So doing: EXECUTE wc -l SOMEFILE CAPTURING LINEKOUNT wouldn't work for you? At 12:37 PM 6/21/2005, you wrote: I hope someone can show me an easy way to get the number of lines from a sequential file - without looping through the file. I am running UV 10.x on a AIX box. I open the file using

RE: [U2] Field Count from a Seq File

2005-06-21 Thread Perry Taylor
How about... EXECUTE sh -c\wc -l : FILENAME: \ CAPTURING LINE.COUNT Perry Taylor -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, June 21, 2005 1:38 PM To: u2-users@listserver.u2ug.org Subject: [U2] Field Count from a

RE: [U2] Field Count from a Seq File

2005-06-21 Thread Ian McGowan
EXECUTE !wc -l :PATH.TO.FILE CAPTURING NUM.LINES ;* or is is PCPERFORM on uv?) You *must* loop thru the file to get the number of lines, but at least this way you are looping in a compiled rather than interpreted language... Ian -Original Message- From: [EMAIL PROTECTED]

[U2] Status for READV?

2005-06-21 Thread Wendy Smoak
From the docs, (UniBasic Commands Reference) it doesn't look like READV sets STATUS() or @SYSTEM.RETURN.CODE. I have this... READV X.DATA FROM F.PERSON, X.NODE.ID, 12 THEN END I want to say... IF X.DATA = '' AND NOT(STATUS()) THEN INS X.NODE.ID BEFORE X.LIST1,1 END Otherwise I may

RE: [U2] Field Count from a Seq File

2005-06-21 Thread [EMAIL PROTECTED]
Jim wrote: I hope someone can show me an easy way to get the number of lines from a sequential file - without looping through the file. I am running UV 10.x on a AIX box. I open the file using an OPENSEQ command and I am looping through the record using a READSEQ command. Either

RE: [U2] [List] Long Subject Lines

2005-06-21 Thread [EMAIL PROTECTED]
Tony Gravagno wrote: Outlook users rejoice! :) I've been maintaining a small set of Outlook macros that fix subject mods made by Google, anti-spam programs, and various e-mail clients. These are available for free here: http://nebula-rnd.com/freeware/ Please read the README.txt to see

Re: [U2] Status for READV?

2005-06-21 Thread Ray Wurlod
In UniVerse (you didn't specify) READV sets STATUS() in the ON ERROR clause. The THEN clause is taken if the READV operation succeeded, the ELSE clause is taken (and the receiving variable is set to ) if the record does not exist. According to online help for STATUS() the function is not set in

[U2]Dynamic Connect on Linux platform

2005-06-21 Thread Ian Stuart
FYI, with Codeweaver's CrossOver, DynamicConnect installs and runs very nicely on Linux thin-client platform. I would imagine that Wintegrate would also work. Deploying Linux thin-client workstations and utilising older hardware (anything from a Pentium I 100Mhz with 64MB) can save