CISAM file usage in AIX4.3


 
Thread Tools Search this Thread
Operating Systems AIX CISAM file usage in AIX4.3
# 1  
Old 05-26-2008
CISAM file usage in AIX4.3

As we know CISAM files can be used up to 2G in UNIX. But I am failed to write record to file below:

-rw-rw-rw- 1 bit profit 1073741312 20 Apr 06:38 pfszzzzz.dat
-rw-rw-rw- 1 bit profit 151461888 20 Apr 06:38 pfszzzzz.idx

my ulimit setting is like below:

# ulimit -a

time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 131072
stack(kbytes) 32768
memory(kbytes) 32768
coredump(blocks) unlimited
nofiles(descriptors) 2000

So, my question is the maximum file size for CISAM file is 2G for .dat and 2G for .idx? Or 1G for .dat and 1G for .idx?

Thanks.
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Memory usage per user,percent usage,sytem time in ksh

Let's say i have 20 users logged on Server. How can I know how much memory percent used each of them is using with system time in each user? (2 Replies)
Discussion started by: roy1912
2 Replies

2. AIX

How to monitor the IBM AIX server for I/O usage,memory usage,CPU usage,network..?

How to monitor the IBM AIX server for I/O usage, memory usage, CPU usage, network usage, storage usage? (3 Replies)
Discussion started by: laknar
3 Replies

3. Solaris

current CPU usage, memory usage, disk I/O oid(snmp)

Hi, I want to monitor the current cpu usage, monitor usage , disk I/o and network utlization for solaris using SNMP. I want the oids for above tasks. can you please tell me that Thank you (2 Replies)
Discussion started by: S_venkatesh
2 Replies

4. HP-UX

how can I find cpu usage memory usage swap usage and logical volume usage

how can I find cpu usage memory usage swap usage and I want to know CPU usage above X% and contiue Y times and memory usage above X % and contiue Y times my final destination is monitor process logical volume usage above X % and number of Logical voluage above can I not to... (3 Replies)
Discussion started by: alert0919
3 Replies

5. UNIX for Advanced & Expert Users

File Usage for CISAM file in UNIX

As we know CISAM files can be used up to 2G in UNIX. But I am failed to write record to file below: -rw-rw-rw- 1 bit profit 1073741312 20 Apr 06:38 pfszzzzz.dat -rw-rw-rw- 1 bit profit 151461888 20 Apr 06:38 pfszzzzz.idx my ulimit setting is like below: # ulimit -a ... (0 Replies)
Discussion started by: alice@qrra.com
0 Replies

6. AIX

HELP PLEASE ! Seraching Update CD AIX4.3.3

Hello, :( Iīm in trouble - im searching for the AIX-Update-CD LCD4-0995-14. My System is out of order and I have to reinstall it. But this CD of my AIX-Set is defective - So I canīt reinstall the Filesets for my 6203-SCSI-Controller... Has someone of you this CD and can send me an Image... (1 Reply)
Discussion started by: yanham
1 Replies

7. AIX

openssh on aix4.3.3

Hi, where can I get openssh-server-3.6.1p2-1.aix4.3.ppc.rpm? Thanks (1 Reply)
Discussion started by: heliopaixao
1 Replies

8. AIX

can anybuddy tell me what bootloader is used in AIX4.3

hi this is fani working as jr system administration on unix flavours so please help waht bootloader is used in AIX 4.3 ver now LILO is using in AIX 5 help me to find the answer and there configuration file also tankzz.............. (0 Replies)
Discussion started by: phanifani
0 Replies

9. UNIX for Dummies Questions & Answers

How to configure sendmail on AIX4.3.3.

Hi! I want to enable sendmail facility on my AIX 4.3.3 box. I know that the configuration sendmail.cf must be populated with the necessary info according to my needs. Question is what are those, and what is the syntax? Other than sendmail.cf, are there any configuration files i need to edit? ... (1 Reply)
Discussion started by: jolobets
1 Replies

10. UNIX for Dummies Questions & Answers

problem when install apache in AIx4.2

when i run #./configure --prefix=/usr/local/apache then have an error Creating Makefile in src + configured for IBM AIX 4.2 platform Error: could not find any of these C compilers anywhere in your PATH: gcc cc acc c89 Configure terminated How could i find c compilers? help... (3 Replies)
Discussion started by: chiyx
3 Replies
Login or Register to Ask a Question
TM(4)							     Kernel Interfaces Manual							     TM(4)

NAME
tm - TM-11/TU-10 magtape interface DESCRIPTION
The files mt0, ..., mt7 refer to the DEC TU10/TM11 magtape. When closed it can be rewound or not, see below. If it was open for writing, two end-of-files are written. If the tape is not to be rewound it is positioned with the head between the two tapemarks. If the 0200 bit is on in the minor device number the tape is not rewound when closed. A standard tape consists of a series of 512 byte records terminated by an end-of-file. To the extent possible, the system makes it possi- ble, if inefficient, to treat the tape like any other file. Seeks have their usual meaning and it is possible to read or write a byte at a time. Writing in very small units is inadvisable, however, because it tends to create monstrous record gaps. The mt files discussed above are useful when it is desired to access the tape in a way compatible with ordinary files. When foreign tapes are to be dealt with, and especially when long records are to be read or written, the `raw' interface is appropriate. The associated files are named rmt0, ..., rmt7. Each read or write call reads or writes the next record on the tape. In the write case the record has the same length as the buffer given. During a read, the record size is passed back as the number of bytes read, provided it is no greater than the buffer size; if the record is long, an error is indicated. In raw tape I/O, the buffer must begin on a word boundary and the count must be even. Seeks are ignored. A zero byte count is returned when a tape mark is read, but another read will fetch the first record of the new tape file. FILES
/dev/mt?, /dev/rmt? SEE ALSO
tp(1) BUGS
If any non-data error is encountered, it refuses to do anything more until closed. In raw I/O, there should be a way to perform forward and backward record and file spacing and to write an EOF mark. TM(4)