- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: oracle 1562 error
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 04:58 AM
тАО09-12-2003 04:58 AM
I just increased the tablespace by adding a datafile to it. THe users have a new run but while they tried to import a lot of data they receive a oracle 1562 error. The error claims that it cannot extent the rollback segment because the max extents are reached. What to do next?
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 05:12 AM
тАО09-12-2003 05:12 AM
Re: oracle 1562 error
I can think of a couple of options.
If the users are using the Oracle "imp" utility then you can specify the "commit=y" option on the command line. This will commit the data every so often rather than for each whole table, cutting down the amount of rollback required.
If they are not, you need to alter the storage parameters on your rollback segments. Check the current settings from sqlplus when logged on as the system user with:-
select * from dba_rollback_segs;
You can then alter the storage parameters with commands like :-
alter ROLLBACK SEGMENT RBS03 STORAGE (MAXEXTENTS 249);
You may also have to extend the size of your rollback tablespace.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 06:20 AM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 06:24 AM
тАО09-12-2003 06:24 AM
Re: oracle 1562 error
alter ROLLBACK SEGMENT RBS03 STORAGE (MAXEXTENTS UNLIMITED);
SEP
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 07:31 AM
тАО09-12-2003 07:31 AM
Re: oracle 1562 error
Tune it . Change extent size.
As said, you can use commit=Y .
Also change the buffer parameter
BUFFER=
That will reduce the number of commits.
Rgds,
JL
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
тАО09-12-2003 01:05 PM
тАО09-12-2003 01:05 PM
Re: oracle 1562 error
Take a look in the v$rollstat view. There is a column called "AVEACTIVE". A good idea is to double this column (try to keep it in round 1m or 500k sections though) for your initial extent, with 8-10 minextents for each segment.
If that doesn't work, 50m extents with 8 minextents normally works. =)
Brian