- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Oracle hitting 1gb file size limit - OUCH!
Categories
Company
Local Language
Forums
Discussions
Forums
- Data Protection and Retention
- Entry Storage Systems
- Legacy
- Midrange and Enterprise Storage
- Storage Networking
- HPE Nimble Storage
Discussions
Forums
Discussions
Discussions
Discussions
Forums
Discussions
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
- BladeSystem Infrastructure and Application Solutions
- Appliance Servers
- Alpha Servers
- BackOffice Products
- Internet Products
- HPE 9000 and HPE e3000 Servers
- Networking
- Netservers
- Secure OS Software for Linux
- Server Management (Insight Manager 7)
- Windows Server 2003
- Operating System - Tru64 Unix
- ProLiant Deployment and Provisioning
- Linux-Based Community / Regional
- Microsoft System Center Integration
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Discussion Boards
Community
Resources
Forums
Blogs
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 02:37 AM
12-09-2003 02:37 AM
Oracle hitting 1gb file size limit - OUCH!
We are seeing the same issue on HPUX 11.00 and Oracle 8.1.7.4. When files are going beyond 1gb (I stress one gig), the database is reporting:
*** SESSION ID:(2.1) 2003-12-01 00:57:14.611
KCF: write/open error block=0x10469 online=1
file=16 /ora/laxap01u.plaxsbo.u1000/oradata/plaxsbo/users_indexes_01.dbf
error=27072 txt: 'HP-UX Error: 27: File too large
Additional information: 66665'
Automatic datafile offline due to write error on
This is the second time this error has occured. 1st time on datafile, 2nd on index file.
.proto has ulimit set to unlimited. Oracle environment ulimit set to unlimited. Fstab is mounting the filesystem with largefiles option. mkfs reports largefiles. fstyp f_flag=16.
Help!
Thank you,
Wayne
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 02:47 AM
12-09-2003 02:47 AM
Re: Oracle hitting 1gb file size limit - OUCH!
alcatraz:root /root # fsadm -F vxfs /usr/openv
nolargefiles
You can turn it on with:
alcatraz:root /root # fsadm -F vxfs -o largefiles /usr/openv
alcatraz:root /root # fsadm -F vxfs /usr/openv
largefiles
alcatraz:root /root #
Dave
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 02:47 AM
12-09-2003 02:47 AM
Re: Oracle hitting 1gb file size limit - OUCH!
JL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 02:48 AM
12-09-2003 02:48 AM
Re: Oracle hitting 1gb file size limit - OUCH!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 02:49 AM
12-09-2003 02:49 AM
Re: Oracle hitting 1gb file size limit - OUCH!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 02:52 AM
12-09-2003 02:52 AM
Re: Oracle hitting 1gb file size limit - OUCH!
Someone else could confirm if I am just imagining things.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 03:03 AM
12-09-2003 03:03 AM
Re: Oracle hitting 1gb file size limit - OUCH!
Mirroring has no impact on this and is, in fact, completely invisible to the application.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 03:16 AM
12-09-2003 03:16 AM
Re: Oracle hitting 1gb file size limit - OUCH!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 03:18 AM
12-09-2003 03:18 AM
Re: Oracle hitting 1gb file size limit - OUCH!
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1048576
stack(kbytes) 40960
memory(kbytes) unlimited
coredump(blocks) 4194303
$ ulimit -Ha
time(seconds) unlimited
file(blocks) unlimited
data(kbytes) 1048576
stack(kbytes) 40960
memory(kbytes) unlimited
coredump(blocks) unlimited
Oracle and HPUX are both running 64bit. Shell is ksh.
Thank you everyone! I'm looking for the straw that's breaking the camel's back. A huge mystery that is stumping both Oracle and HP.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 03:35 AM
12-09-2003 03:35 AM
Re: Oracle hitting 1gb file size limit - OUCH!
it seems there was an issue with ksh at some stage cf. Metalink docid 360746.999
I would suggest try with POSIX sh .
Regards,
Jean-Luc
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 04:13 AM
12-09-2003 04:13 AM
Re: Oracle hitting 1gb file size limit - OUCH!
By any chance, is the database actually started by a process launched under cron or at?
I know that 2GB files work on 11.0 and 8.1.7.4 because I have instances like that running. I am guessing that you have autoextend on for your tablesspaces and the problem occurs when the tablespace needs to grow. In our case, the tablespaces are not allowed to autoextend but they do exceed 1GB with no problems. To help isolate the problem, I would do something like isuue a create tablespace dumbo specifying a size of , perhaps 2047M, with autoextend off. If that tablespace is created then ulimits and quotas shouldn't be the problem (again, unless the process itself is resetting ulimit). You can then drop tablespace dumbo.
If good so far then repeat the test with autoextend on and add a table and do some inserts to reproduce the problem.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 04:16 AM
12-09-2003 04:16 AM
Re: Oracle hitting 1gb file size limit - OUCH!
http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=1067314.6
Doc ID: Note:1067314.6
Subject: KCF: WRITE/OPEN ERROR, ORA-27072, HP-UX ERROR: 27 FILE TOO LARGE
Type: PROBLEM
Status: PUBLISHED
Content Type: TEXT/PLAIN
Creation Date: 15-MAR-1999
Last Revision Date: 19-JUN-2000
Problem Description: ==================== The database starts and is running normally. After a period of activity, an error appears in the alert.log: Mon Feb 8 16:33:02 1999 KCF: write/open error block=0x21ed2 online=1 file=30 /u09/oradata/midas/xsiteaud02.dbf error=27072 txt: 'HP-UX Error: 27: File too large
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-09-2003 04:55 AM
12-09-2003 04:55 AM
Re: Oracle hitting 1gb file size limit - OUCH!
I suspect oracle configuration.
Check your tablespace sizes...
Tim