- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- system table free space 0 and pct free also 0
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
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
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
тАО08-30-2004 05:40 AM
тАО08-30-2004 05:40 AM
system table free space 0 and pct free also 0
application ovo
oracle 9i
when i get qurey dba_free_space igot
system tablespace zero space
it impact to database
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2004 05:46 AM
тАО08-30-2004 05:46 AM
Re: system table free space 0 and pct free also 0
Isn't this something controlled by the oracle database sid init parameter file.
Hope this helps.
regds
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2004 01:50 PM
тАО08-30-2004 01:50 PM
Re: system table free space 0 and pct free also 0
If your qurey from dba_free_space shows zero space for System tablespace, increase the SYSTEM tablespace's space immediately. There is no hard & fast rule for how much free space a system tablespace should have, keep monitoring for sometime, you will have an idea on it's growth rate.
Increase the size by adding new datafile or using the resize the current datafile.
Add a datafile to system (example): alter tablespace system add datafile 'path/name_system02.dbf' size ???M; Resize a tablespace (example): alter database datafile 'path/name_system01.dbf' resize ???M;
The system tablespace contains the data dictionary. Whenever you create any database object including views, the structure information goes into the data dictionary. This obviously uses the space in SYSTEM TABLESPACE. And the other reason system tablespace gwos is during migration.
You should not have user data / objects in system tablespace. It is always better to have all your users other than ├в sys├в point away from the system tablespace. Make sure that the users are not creating objects in system tablespace. Check the default and the temporary tablespace of the users. If you do not specify the tablespace name while creating the users then any objects that the users create will be going to system tablespace.
Rollback segments should always be in a different tablespace other tbale system. Only your system RBS should be there in the System Tablespace.
I hope this helps.
Ind
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2004 03:28 PM
тАО08-30-2004 03:28 PM
Re: system table free space 0 and pct free also 0
alter tablespace system add datafile 'datafile-path' size 200M autoextend on maxsize 400M;
Just do a
select username,default tablespace from dba_users;
Make sure that normal users do not use the tablespace 'SYSTEM'
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2004 03:53 PM
тАО08-30-2004 03:53 PM
Re: system table free space 0 and pct free also 0
attached a script to query free space on a database.
if the free space on system tablespace has reach 100%, which should not be the case, you should do either of the following:
a. move all "user owned" objects to another tablespace
b. add more datafiles to the tablespace as mentioned by previous posters.
with best regards
Yogeeraj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО08-30-2004 03:53 PM
тАО08-30-2004 03:53 PM