- Community Home
- >
- Servers and Operating Systems
- >
- Operating Systems
- >
- Operating System - HP-UX
- >
- Re: Oracle 8.0.5 export -> 8.1.6 import
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-28-2000 01:07 PM
12-28-2000 01:07 PM
Oracle 8.0.5 export -> 8.1.6 import
exp system/manager full=Y file='/oracle/qts1.exp' log='/oracle/qts1.exp.log'
imp system/manager full=y commit=y ignore=y constraints=n feedback=10 file='/oracle/qts1.exp' log='/oracle/qts1.imp.log'
But I get loads and loads of errors/warnings in the import log file:
Connected to: Oracle8i Enterprise Edition Release 8.1.6.0.0, 64 bit - Production
With the Partitioning option
JServer Release 8.1.6.0.0 - Production
Export file created by EXPORT:V08.00.05 via conventional path
import done in US7ASCII character set and US7ASCII NCHAR character set
IMP-00017: following statement failed with ORACLE error 2221:
"CREATE ROLLBACK SEGMENT SYSROL STORAGE (INITIAL 106496 NEXT 122880 MINEXTEN"
"TS 2 MAXEXTENTS 2147483645) TABLESPACE "SYSTEM""
IMP-00003: ORACLE error 2221 encountered
ORA-02221: invalid MAXEXTENTS storage option value
IMP-00017: following statement failed with ORACLE error 2221:
"CREATE PUBLIC ROLLBACK SEGMENT RB0 STORAGE (INITIAL 57344 NEXT 57344 MINEXT"
"ENTS 2 MAXEXTENTS 2147483645) TABLESPACE "RBS""
IMP-00003: ORACLE error 2221 encountered
ORA-02221: invalid MAXEXTENTS storage option value
IMP-00017: following statement failed with ORACLE error 2221:
"CREATE PUBLIC ROLLBACK SEGMENT RB1 STORAGE (INITIAL 57344 NEXT 57344 MINEXT"
"ENTS 2 MAXEXTENTS 2147483645) TABLESPACE "RBS""
Any ideas? Many thanks in advance for any help...
Happy holidays,
Mike Taylor
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2000 06:37 AM
12-29-2000 06:37 AM
Re: Oracle 8.0.5 export -> 8.1.6 import
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-29-2000 11:18 AM
12-29-2000 11:18 AM
Re: Oracle 8.0.5 export -> 8.1.6 import
I've gotten a few emails from an Oracle Users Group distribution I am on. They would indicate that I should use the 8.1.6 export utility when I do the export from the 8.0.5 system. I still need to verify that.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-30-2000 03:50 AM
12-30-2000 03:50 AM
Re: Oracle 8.0.5 export -> 8.1.6 import
What you are trying is a difficult thing. The forms for 8.1.6 are different from those of 8.0.5. You cann't do a direct import/export as you have been doing. Get in touch with your DBA and oracle guys to help you sort things out
Happy New Year!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-10-2001 10:05 AM
01-10-2001 10:05 AM
Re: Oracle 8.0.5 export -> 8.1.6 import
You might find this article on the oracle maetalink website of interest:
Note:61949.1 - Overview of Import and Export.
To summerise, the procedures to import/export between different versions are as follows:
Source database is newer than the target database:
1. Run the older "CATEXP.SQL" script on the database to be exported.
2. Use the older EXP utility to create the dump file.
3. Use the older IMP utility to import to the target database.
4. Run the newer "CATEXP.SQL" script on the exported database to
restore its export views to the original (correct) version.
It is also possible to have a situation where the source database is older
than the target, but you do not have access to the original Export utility. If
you must use an export executable from one version against an older Oracle
database version, it may be necessary to change the export views.
Source database is older than the target database:
1. Run the newer "CATEXP.SQL" script on the database to be exported.
2. Use the newer EXP utility to create the dump file.
3. Use the newer IMP utility to import to the target database.
4. Run the older "CATEXP.SQL" on the exported database to restore its
export views to the original (correct) version.
cheers,
John