- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- increase database size
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
Discussions
Discussions
Discussions
Forums
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
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
тАО09-12-2003 03:00 AM
тАО09-12-2003 03:00 AM
increase database size
My customer asks me to increase the size of a oracle database. How can i do this? Increase the tablespace which holds the data?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 03:19 AM
тАО09-12-2003 03:19 AM
Re: increase database size
Check for large file options if your datafile is to exceed 2Gb
e.g.
ALTER TABLESPACE USER_DATA
ADD DATAFILE 'filename1' SIZE 200M;
Rgds,
JL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 03:23 AM
тАО09-12-2003 03:23 AM
Re: increase database size
http://tahiti.oracle.com/
Select what you want and search
You do need to register for this one but it is good
This is a good oracle site for documentation then you can see for yourself
Steve STeel
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 03:24 AM
тАО09-12-2003 03:24 AM
Re: increase database size
Pete
Pete
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 03:28 AM
тАО09-12-2003 03:28 AM
Re: increase database size
SQL> alter tablespace ABC datafile '/u00/oradata/ABC01.dbf' resize 800M;
Or adding a datafile to a tablespace:
SQL> alter tablespace ABC add datafile '/u00/oradata/ABC02.dbf' size 300M autoextend off REUSE;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:43 AM
тАО09-12-2003 05:43 AM
Re: increase database size
There are two things.
Incearse Memory?
or
Increase Datafiles space?
What you want to do increase?
GSM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2003 04:59 PM
тАО09-14-2003 04:59 PM
Re: increase database size
When your customer says increase the database, they have to be more specific.
What is it they wanted to eb increased.
1. Is it a tablespace (datafile) to be increased. If so then you have to verify the following before you increase the datafile.
1.1 Check for available disk space.
1.2 Check the current size of the datafile. If you datafile is colse to 2 GB, then verify if your file system is defined for largefiles (> 2GB).
1.3 Then you can increase your datafile as
Alter database datafile '
or
you can add a datafile to an existing tablespace as
Alter tablespace
2. IF it was not to do with increasing the datafile size then may be increasing the storage parameters of a tablespace like (extent size (next) or maximum number of extents (maxextents).
This can be done by
Alter tablespace
3. If it is not the above two then may be adding a new redo log file or group.
4. It could be increasing the storage parameters of a particular table /index. This can be done as
Alter table
So find out what exactly is required and then apply the appropriate option.
IA
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-14-2003 08:01 PM
тАО09-14-2003 08:01 PM
Re: increase database size
If you are using Locally managed tablespaces (LMT), you should not be really concerned about "increasing the database size".
With the LMT and uniform extent sizes -- every extent will be exactly the same size. On top of that, configure your tablespace datafiles to autoextend to a defined MAXSIZE.
Hence, the size of the database should not be an issue (but available disk space on the system will be one!)
Maybe you are anticipating a growth in the number of users, processing, etc...
... then the appropriate action should be taken in reviewing the size of the SGA, rollback segments and temporary tablespace amongst others...
hope this helps!
regards
Yogeeraj