RE: [U2] [UV] is a file 32bit or 64bit?

2006-10-19 Thread Womack, Adrian
Well, I do think there should be a documented method of finding out
whether a file is 32 or 64bit. Surely that should be added to
ANALYZE.FILE. 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ray Wurlod
Sent: Thursday, 19 October 2006 1:28 PM
To: u2-users@listserver.u2ug.org
Subject: RE: [U2] [UV] is a file 32bit or 64bit?

So what you're really after is a list of the undocumented options?






DISCLAIMER:
Disclaimer.  This e-mail is private and confidential. If you are not the 
intended recipient, please advise us by return e-mail immediately, and delete 
the e-mail and any attachments without using or disclosing the contents in any 
way. The views expressed in this e-mail are those of the author, and do not 
represent those of this company unless this is clearly indicated. You should 
scan this e-mail and any attachments for viruses. This company accepts no 
liability for any direct or indirect damage or loss resulting from the use of 
any attachments to this e-mail.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV] is a file 32bit or 64bit?

2006-10-19 Thread Womack, Adrian
Something interesting I just noticed:

If I create a file and resize it to 64bit and then create alternate keys
(with CREATE.INDEX) the alternate key file (I_filename/INDEX.000) is
also created as 64bit.

BUT, if I add the alternate keys BEFORE resizing to 64bit, the AK file
is left as a 32bit file.

As a 64bit file, the data portion can now contain many, many more
records than a 32bit file. So if the file has a number of different
alternate keys, it could be possible to blow the size of the INDEX.000
file.

So, I guess it may be best to delete and re-create the AKs after
converting to 64bit. Thoughts?

Adrian





DISCLAIMER:
Disclaimer.  This e-mail is private and confidential. If you are not the 
intended recipient, please advise us by return e-mail immediately, and delete 
the e-mail and any attachments without using or disclosing the contents in any 
way. The views expressed in this e-mail are those of the author, and do not 
represent those of this company unless this is clearly indicated. You should 
scan this e-mail and any attachments for viruses. This company accepts no 
liability for any direct or indirect damage or loss resulting from the use of 
any attachments to this e-mail.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


[U2] [UV] is a file 32bit or 64bit?

2006-10-18 Thread Womack, Adrian
Is there a UV tool that shows whether a file is 64bit or 32bit? I've
tried the obvious ANALYZE.FILE with no success.

I ended up using the unix xd command to see the file's header, but I
expected there to be UV command to provide this function.

First bytes of a 32 bit file: 0xACEF010C
First bytes of a 64 bit file: 0xACEF020C

AdrianW








DISCLAIMER:
Disclaimer.  This e-mail is private and confidential. If you are not the
intended recipient, please advise us by return e-mail immediately, and delete
the e-mail and any attachments without using or disclosing the contents in any
way. The views expressed in this e-mail are those of the author, and do not
represent those of this company unless this is clearly indicated. You should
scan this e-mail and any attachments for viruses. This company accepts no
liability for any direct or indirect damage or loss resulting from the use of
any attachments to this e-mail.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


Re: [U2] [UV] is a file 32bit or 64bit?

2006-10-18 Thread iggchamp
Hi Adrian,

You could use the STATUS function in basic.

STATUS STATS FROM FILE ELSE ABORT
BIGFILE = (STATS32 = 5)



-- Original message -- 
From: Womack, Adrian [EMAIL PROTECTED] 

 Is there a UV tool that shows whether a file is 64bit or 32bit? I've 
 tried the obvious ANALYZE.FILE with no success. 
 
 I ended up using the unix xd command to see the file's header, but I 
 expected there to be UV command to provide this function. 
 
 First bytes of a 32 bit file: 0xACEF010C 
 First bytes of a 64 bit file: 0xACEF020C 
 
 AdrianW 
 
 
 
 
 
 
 
 
 DISCLAIMER: 
 Disclaimer. This e-mail is private and confidential. If you are not the 
 intended recipient, please advise us by return e-mail immediately, and delete 
 the e-mail and any attachments without using or disclosing the contents in 
 any 
 way. The views expressed in this e-mail are those of the author, and do not 
 represent those of this company unless this is clearly indicated. You should 
 scan this e-mail and any attachments for viruses. This company accepts no 
 liability for any direct or indirect damage or loss resulting from the use of 
 any attachments to this e-mail. 
 --- 
 u2-users mailing list 
 u2-users@listserver.u2ug.org 
 To unsubscribe please visit http://listserver.u2ug.org/ 
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV] is a file 32bit or 64bit?

2006-10-18 Thread Hona, David S
UniAdmin:
File Tool - Select Account/File - Properties - Header tab

UNIX shell:
uvfixfile -f VOC STATS

TCL:
UVFIXFILE VOC STATS


File Statistics
pathname= VOC, size = 101888 bytes

file revision   = 0xacef010c
modulo  = 0x0059 (00089)
separation  = 0x0001 (1)
file type   = 0x000c (00012)
free list   = 0x (0)
header size = 0x0400 (01024)
group size  = 0x0200 (00512)


Beginning TRACE of VOC.
TRACE of VOC completed.

Scanning overflow buffers.
Scan complete.

89 group(s) processed.
197 group buffer(s) processed.
910 record(s) processed.
Number of data bytes = 75284.

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Womack, Adrian
Sent: Thursday, October 19, 2006 11:57 AM
To: u2-users@listserver.u2ug.org
Subject: [U2] [UV] is a file 32bit or 64bit?

Is there a UV tool that shows whether a file is 64bit or 32bit? I've
tried the obvious ANALYZE.FILE with no success.

I ended up using the unix xd command to see the file's header, but I
expected there to be UV command to provide this function.

First bytes of a 32 bit file: 0xACEF010C First bytes of a 64 bit file:
0xACEF020C

AdrianW
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV] is a file 32bit or 64bit?

2006-10-18 Thread Womack, Adrian
That works well, thanks.

For some reason our BASIC help file only has attributes 1-30 defined for
the result of the STATUS statement. I just checked the BASIC pdf manual
and that documents from right up to attribute 33.

I never think of using the STATUS statement - but it certainly returns a
lot of useful information!

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of
[EMAIL PROTECTED]
Sent: Thursday, 19 October 2006 11:19 AM
To: u2-users@listserver.u2ug.org
Subject: Re: [U2] [UV] is a file 32bit or 64bit?

Hi Adrian,

You could use the STATUS function in basic.

STATUS STATS FROM FILE ELSE ABORT
BIGFILE = (STATS32 = 5)




DISCLAIMER:
Disclaimer.  This e-mail is private and confidential. If you are not the 
intended recipient, please advise us by return e-mail immediately, and delete 
the e-mail and any attachments without using or disclosing the contents in any 
way. The views expressed in this e-mail are those of the author, and do not 
represent those of this company unless this is clearly indicated. You should 
scan this e-mail and any attachments for viruses. This company accepts no 
liability for any direct or indirect damage or loss resulting from the use of 
any attachments to this e-mail.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/


RE: [U2] [UV] is a file 32bit or 64bit?

2006-10-18 Thread Ray Wurlod
So what you're really after is a list of the undocumented options?

 - Original Message -
 From: Womack, Adrian [EMAIL PROTECTED]
 To: u2-users@listserver.u2ug.org
 Subject: RE: [U2] [UV] is a file 32bit or 64bit?
 Date: Thu, 19 Oct 2006 12:49:58 +0800
 
 
 That works well, thanks.
 
 For some reason our BASIC help file only has attributes 1-30 defined for
 the result of the STATUS statement. I just checked the BASIC pdf manual
 and that documents from right up to attribute 33.
---
u2-users mailing list
u2-users@listserver.u2ug.org
To unsubscribe please visit http://listserver.u2ug.org/