HPE GreenLake Administration
- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: performance impact of large "X.dbf" file in or...
Operating System - HP-UX
1830931
Members
2282
Online
110017
Solutions
Forums
Categories
Company
Local Language
back
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
back
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
Blogs
Information
Community
Resources
Community Language
Language
Forums
Blogs
Go to solution
Topic Options
- 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-08-2003 10:05 AM
12-08-2003 10:05 AM
One of our DBAs wants to create a LARGE file on the order of 6 GB on one of our filesystems.
(We have the "largefiles" bit set. We already have several "xxx.dbf" files bigger than 2 GB..)
They need a "Temp" table with a LOT of "extents", and he wants it in one big file.
My question is, is there any significant performance impact to creating a file that big? Either way - faster or slower?
(We have the "largefiles" bit set. We already have several "xxx.dbf" files bigger than 2 GB..)
They need a "Temp" table with a LOT of "extents", and he wants it in one big file.
My question is, is there any significant performance impact to creating a file that big? Either way - faster or slower?
Solved! Go to Solution.
2 REPLIES 2
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2003 12:12 PM
12-08-2003 12:12 PM
Solution
The thing with Oracle is tablespaces not files. Since your DBA wants only a temp table, then a temporary tablespace should be created. Ideally, on a seperate filesystem from your other datafiles so you can tune the fs differently.
One large file, or multiple smaller files, shouldn't make a big difference. But if you have the room you might as well make it one big file.
The create statement will look something like this...
CREATE TEMPORARY TABLESPACE TEMPX
TEMPFILE '/path/tempx.dbf' SIZE 6217728K AUTOEXTEND OFF
EXTENT MANAGEMENT LOCAL UNIFORM
/
One large file, or multiple smaller files, shouldn't make a big difference. But if you have the room you might as well make it one big file.
The create statement will look something like this...
CREATE TEMPORARY TABLESPACE TEMPX
TEMPFILE '/path/tempx.dbf' SIZE 6217728K AUTOEXTEND OFF
EXTENT MANAGEMENT LOCAL UNIFORM
/
Remember, wherever you go, there you are...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-08-2003 12:58 PM
12-08-2003 12:58 PM
Re: performance impact of large "X.dbf" file in oracle database ?
This file may seem large, but its really not that large.
How the database peforms depends more on the parameters in the init.ora file and how much memory there is on the OS.
Tuning issues such as shmseg and shmmax will also have an impact.
The biggest impact on performance is how the underlying disk is set up. If there are going to be a lot of transactions and the underlying disk is raid 5, its going to stress disk i/o and bandwith on your fiber channel if thats what kind of disk you are using.
If the underlying disk is raid 1 or raid 10, the impact will be less.
The best advice I can give you is to accommodate the dba and make the underlying disk as fast as practical for this operation.
SEP
How the database peforms depends more on the parameters in the init.ora file and how much memory there is on the OS.
Tuning issues such as shmseg and shmmax will also have an impact.
The biggest impact on performance is how the underlying disk is set up. If there are going to be a lot of transactions and the underlying disk is raid 5, its going to stress disk i/o and bandwith on your fiber channel if thats what kind of disk you are using.
If the underlying disk is raid 1 or raid 10, the impact will be less.
The best advice I can give you is to accommodate the dba and make the underlying disk as fast as practical for this operation.
SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
The opinions expressed above are the personal opinions of the authors, not of Hewlett Packard Enterprise. By using this site, you accept the Terms of Use and Rules of Participation.
Company
Events and news
Customer resources
© Copyright 2025 Hewlett Packard Enterprise Development LP