Oracle 10g import question

Hi,
Is it possible to import oracle 7.3.3.5 export file into oracle 10g? I created user tablespaces manually, and then tried to import but I see strange errors.

Did you read the metalink note specified above?.
Please read the same and it has the information.
Example: export from 7.3.4 and import into 11.1.0
use the 7.3.4 Export client to export the data from the 7.3.4 source database,
use the 11.1.0 Import client to import the data into the 11.1.0 target database,
Note that a migration with export FULL=Y & import FULL=Y is not supported.
that's what mentioned above. Try show=y option and use fromuser/touser
HTH
Anantha

Similar Messages

  • Oracle 10g installation questions

    Hi,
    I tried to install Oracle 10g (Enterprise Edition) on Windows 2000 server, and encountered the following error when I used the Database Upgrade Assistance to ugrade one of my existing Oracle 8 database TEST.
    ORA-01658: Unable to create INITIAL extent for segment in tablespace USERS.
    I searched the forum, and seems that there is not enough space for my USERS tablespace. Is it the right solution?
    If I clicked Ignore for the above erro, another error appeared:
    ORA-00942: table or view does not exist.
    I don't have table or view in TEST database, it is just a database instance created by Oracle 8. Do I have to create tables or views in order to upgrade it to Oracle 10g database?
    I tried to upgrade an existing Oracle 8 database TEST1 which has data in it, and got the following error:
    ORA-01119: error in creating database file D:\oracle\oradata\test1\sysaux01.dbf.
    ORA-27044: unable to write the header block of file.
    One last question is that after the failing of the DBUCA, I was told that the 10g was successfully installed on my server while no orcl database was created even if I chose
    to create a database orcl during my installation.
    The following are services running for 10g after the installation.
    OracleCSService Started
    OracleOraDb10g_home1iSQL*Plus Started
    OracleOraDb10g_home1SNMPPeerEncapsulator
    OracleOraDb10g_home1SNMPPeerMasterAgent
    OracleOraDb10g_home1TNSListenerLISTENER10 Started
    Anybody has any idea what went wrong?
    Your early reply is greatly appreciated.
    Jane

    I believe the answers are:
    1. the Oracle client needs to be the same bits as the TimesTen server. i.e. if you have 64b TimesTen, then you will need 64b Oracle client. If you have 32b TimesTen then you will need 32b Oracle client.
    2. Yes. I believe you can install 64b TimesTen with 64b Oracle client and connect this to a 32b Oracle server. I dont have any idea about performance overhead of this configuration.

  • Oracle 10g Install Question

    Hi All,
    I have to install oracle 10g onto a server where there is existing oracle 9i software.
    Is it safe to go ahead with the install, while the 9i databases are up?? what are the consequences of doing this?
    OS patches and kernel parameters as required for oracle 10g have already been changed.
    10g is being installed into a different oracle home and i would choose not to overwrite any of the files as asked by root.sh script.
    OS is hp-ux 11i (11.11).
    Thanks & Regards
    Chandar
    Edited by: chandark on Dec 9, 2008 9:50 PM

    Hi,
    Thanks for your reply.
    Sorry for not being clear in my question earlier.
    I am planning to install Oracle 10g on a server with existing 9i software. My question is whether we should shutdown all 9i databases for the duration of the install or we can leave them running as long as we do not overwrite any 9i files including files in /usr/local/bin directory that contains oranev etc...
    To be on the safer side it is always recomended to shutdown any oracle instances running before we start the install. Wanted to know the consequences if we have them up and running for the duration of the install.
    Thanks & Regards
    Chandar

  • Oracle 10g Licensing question for Dataguard

    Could some one please let me know if a 10g database with a 10g logical standby database and a 10g Physical standby database requires a dataguard license.
    thanks heaps

    Hello
    if you have Oracle enterprise editon you can use dataguard free
    but dont mind if you have 1 Prod 1 phy standby you must have 2 Oracle license
    Regards
    Zekeriya Besiroglu

  • Oracle 10g import data

    I have a problem.
    Could you help me?
    I have two tables 'customers' and 'customers_old' there are the same columns and I'll have import data with 'customers_old' to 'customers'
    How to do it?
    thx

    I have a problem.
    How import data with table BAEVENT_OLD to BAEVENT ?
    I would like to use command SQL.
    -- DDL for Table BAEVENT
    CREATE TABLE "BA_SYSTEM"."BAEVENT"
    (     "ID" NUMBER(19,0),
         "DESCRIPTION" VARCHAR2(255 BYTE),
         "TIMESTAMP" DATE,
         "PRINCIPAL" VARCHAR2(255 BYTE),
         "BAOBJECT" VARCHAR2(255 BYTE),
         "NAMESPACE" VARCHAR2(255 BYTE),
         "RESULT" VARCHAR2(255 BYTE),
         "CHANNEL" VARCHAR2(255 BYTE),
         "REQUEST_ID" NUMBER(19,0),
         "ARCHIVE_ID" NUMBER(19,0)
    ) PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "BA_SYSTEM_DAT" ;
    -- DDL for Index SYS_C0020270
    CREATE UNIQUE INDEX "BA_SYSTEM"."SYS_C0020270" ON "BA_SYSTEM"."BAEVENT" ("ID")
    PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "BA_SYSTEM_DAT" ;
    -- Constraints for Table BAEVENT
    ALTER TABLE "BA_SYSTEM"."BAEVENT" MODIFY ("ID" NOT NULL ENABLE);
    ALTER TABLE "BA_SYSTEM"."BAEVENT" ADD PRIMARY KEY ("ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "BA_SYSTEM_DAT" ENABLE;
    -- Ref Constraints for Table BAEVENT
    ALTER TABLE "BA_SYSTEM"."BAEVENT" ADD CONSTRAINT "FK1649C99B631EE188" FOREIGN KEY ("ARCHIVE_ID")
         REFERENCES "BA_SYSTEM"."BAEVENTARCHIVE" ("ID") ENABLE;
    ***********************************************************************************************************************************************8
    -- DDL for Table BAEVENT_OLD
    CREATE TABLE "BA_SYSTEM"."BAEVENT_OLD"
    (     "ID" NUMBER(19,0),
         "BAOBJECT" VARCHAR2(255 BYTE),
         "CHANNEL" VARCHAR2(255 BYTE),
         "DESCRIPTION" VARCHAR2(255 BYTE),
         "NAMESPACE" VARCHAR2(255 BYTE),
         "PRINCIPAL" VARCHAR2(255 BYTE),
         "RESULT" VARCHAR2(255 BYTE),
         "TIMESTAMP" DATE,
         "REQUEST_ID" NUMBER(19,0)
    ) PCTFREE 10 PCTUSED 0 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "BA_SYSTEM_DAT" ENABLE ROW MOVEMENT ;
    -- DDL for Index SYS_C007023
    CREATE UNIQUE INDEX "BA_SYSTEM"."SYS_C007023" ON "BA_SYSTEM"."BAEVENT_OLD" ("ID")
    PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "BA_SYSTEM_DAT" ;
    -- Constraints for Table BAEVENT_OLD
    ALTER TABLE "BA_SYSTEM"."BAEVENT_OLD" MODIFY ("ID" NOT NULL ENABLE);
    ALTER TABLE "BA_SYSTEM"."BAEVENT_OLD" ADD PRIMARY KEY ("ID")
    USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS
    STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645
    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    TABLESPACE "BA_SYSTEM_DAT" ENABLE;
    -- Ref Constraints for Table BAEVENT_OLD
    ALTER TABLE "BA_SYSTEM"."BAEVENT_OLD" ADD CONSTRAINT "FK1649C99B495C1452" FOREIGN KEY ("REQUEST_ID")
         REFERENCES "BA_SYSTEM"."BAREQUEST_OLD" ("ID") ENABLE;

  • Oracle 10g update question

    Hello,
    I have a production database server with oracle 10.2.0.1 and 3 instances running on it. I want to update it to 10.2.0.3. What are the steps involved? Do i need to update all instances at once?

    What are the steps involved? Follow instructions that come with the patch set.
    Do i need to update all instances at once?Since you will be updating the shared directory, the answer is YES.

  • Importing a few Oracle 10g schemas into oracle 11g database

    Hi,
    I have the task to import a few schemas that are on oracle 10g database (10.2.0.4) into oracle 11gR2 database (11.2.0.2). Now I have only oracle 10g export and import utility (the 11g server is in not where I am given the import rights).
    Can I do the export of the 10g schemas using the 10g export utility and then import into 11g database using the 10g import utility? I ran a test to do that and found it works but would also like to have expert opinion on it.
    Also another question is: if the source schema is 11g - suppose- in that case can the 10g export/import utility still work? I mean export the schema from say db1 (which is 11g) using 10g export utility and import them into 11g database db2 (which is again 11g) using 10g import? I am asking because I don't have access to 11g server and trying to find what I can do with the 10g utilities.
    Thanks,

    set up a database link to the 10gR2 version database in the 11gR2 database.
    Now using the 11gR2 client impdp utility use
    impdp network_link=<link to 10gR2 database>
    Done.
    Your 'objection' you don't have access to 11gR2 doesn't count as you can install a 11gR2 client.
    Also generally speaking you should not use a lower version imp to imp to a higher version database
    Also exp and imp are deprecated in 10g and higher.
    Sybrand Bakker
    Senior Oracle DBA

  • Very Urgent - Export Oracle 10G and Import Oracle 9i

    Dear Friends,
    I am in a very tense sitution. Please help to sort out this problem. I am running an application against Oracle 10G. Now I want the the data of the application running under 10G(server A) to be imported to Oracle 9i (another Server B) and run the same application. What should I do so that i can export the data from Oracle 10G and import in Oracle 9i.
    Please treat this as very urgent.

    You need to post your question in the database forum. This forum is for Oracle Forms. There are database tools such as SQL Developer that let you move data back and forth between databases.

  • General question on SQL Server 2000 to Oracle 10g

    Hello all,
    I just have a general question on migration from SQL Server 2000 to Oracle 10g using SQL Developer.
    How does it migrate Users with proper privileges from SQL Server to Oracle? Follow the interface steps? Or should the users be created on destination Oracle side?
    Thank you.

    Hi,
    It depends which type of migration you are making.
    For a 'Standard' migration when you migrate data a 'create user' statement is created as part of the migration and you will see this in the generated code.
    If you are using the 'Quick' migration option then you need to create the Oracle user or use an existing user to receive the data.
    Your best option is to review the documentation available from -
    http://www.oracle.com/technology/tech/migration//workbench/index_sqldev_omwb.html
    or directly from -
    http://download.oracle.com/docs/cd/E12151_01/index.htm
    and then get back with specific questions if this does not give you the information you need.
    Review the chapter -
    2. Migrating Third-Party Databases
    in -
    Oracle® Database SQL Developer User’s Guide Release 1.5
    Regards,
    Mike

  • Steps to export and import oracle 10g databse from AIX to AIX and LINUX

    Hi,
    I need the steps to export the oracle 10g database from AIX server to AIX server and LINUX server.
    Please give me all the steps as this is my first exort an import activity.
    thanks,

    For 10g there exist two ways to do so.
    1) Regular exp/imp.
    2) Data pump expdp/impdp.
    As this is your first export and import activity, relevant concept understanding is mandatory for you.
    Documentation Link
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14215/toc.htm
    Read the chapters 1,2,3 (Data pump expdp/impdp) and 19 (regular exp/imp). Good luck.

  • Question on replication in Oracle 10G Release 2

    Good day,
    I have a few questions on setting up replication that fits my scenario described below. Thank you in advance for reading and answering my post.
    Scenario
    I need to replicate 100-200 tables from the first OLTP server to the second DSS server that is read-only. The servers are physically located in different countries. Both servers use Oracle 10G Release 2. Required frequency of refreshes is 1-3 hours.
    Questions
    1. Is it optimal to use materialized views with fast/force refreshes for implementation of this scenario? If no, what are the better options?
    2. How do network interruptions and latency affect stability of work of replication with materialized views?
    3. How big is additional performance overhead at OLTP (source) server due to setting up replication with materialized views?

    1) I guess it depends on how you define "optimal". It's certainly a reasonable option. You might also look at Streams or even logical standby databases. There are various trade-offs involved, so it really depends on your environment.
    2) What does "stability of work of replication" mean, exactly? Obviously, if the network fails, the replication job(s) will generate errors. Depending on how you set things up, the replication process will be retried after increasing intervals until it succeeds.
    3) Maintaining materialized view logs on the OLTP system could certainly impact performance-- the logs have to be maintained synchronously with the OLTP transactions. That may or may not noticably impact OLTP transaction performance-- it's probably roughly equivalent to putting a trigger on each of the 100-200 tables. Something like Streams is designed to put less load on the source system because changes are captured asynchronously.
    Justin

  • Important differences between oracle 10g and 11g

    Hi friends, can anyone tell me (pointwise) what are the major (and minor) differences between Oracle 10g and 11g.
    Please point me to some documents if possible.
    Thanks in advance

    The name of the link says it all: "top_features."
    In short it is Oracle's list of what they have for marketing and sales reasons designated "top features."
    It is not intended to be, and is not, a complete list of features. Often the features Oracle does not
    talk about are the most important.
    Let me give you some examples. I have never seen Oracle announce DBMS_XPLAN as a new feature
    yet you should not run an explain plan without it. Neither have I ever seen Oracle announce the new
    NO_DATA_NEEDED predefined exception. I have listed literally hundreds of new features you will not
    find in Oracle's new features docs.
    I did a presentation at OpenWorld this year as part of the unconference titled "New Features in
    Database 11gR2 that Oracle will not announce." It was easy to prepare a one hour presentation with
    little fear of being proved incorrect. As I turned out only one of the features I presented was mentioned
    by Oracle.
    You can find the presentation slides here:
    http://www.morganslibrary.org/pres/oow09_ucnf.pdf

  • Oracle 11g- Straing behaviour of query after importing from Oracle 10g

    Hi,
    I have a table in Oracle 10g as follows:
    Create Table xyz (col1 varchar2(50), col2 varchar2(50));
    With following Data
    Col1     Col2
    A     320
    A     110
    A     290
    A     380
    B     ABC
    B     256
    B     LMN
    I am running following Query
    select * from xyz
    Where Col1='A' and Col2=110
    It works fine. But when I export this table and import it in Oracle 11g. It says invlid identifier.
    But if I enclose 110 in single quotes. It works fine.
    Also If I recreate this table in Oracle 11g like
    Create table xyz1
    as select * from xyz;
    Now alos I am able to run this query smoothly.
    select * from xyz1
    Where Col1='A' and Col2=110
    What is wrong exporting this table from 10g to 11g.
    Any comments/suggestion??
    Aarbi

    The check in your where clause
    Col2=110Is comparing a string (Col2 is defined as a VARCHAR) with a numeric literal, so there will be an implicit conversion taking place from character to number. The query then fails due to the B LMN row when 'LMN' fails number conversion.
    I'm guessing there was there an index on the table in your 10g installation which would allow the query to be satisfied without checking the B ABC or B LMN rows but is not present or not used in the 11g installation so a full table scan results in an attempt to convert 'ABC' and 'LMN' to a number. Check the explain plans.
    Or it could even just be a difference in the order in which the two conditions in the where clause are evaulated between the two versions.
    The solution, as you have already found is to do a string comparision
    Col2='110'Edited by: Cyn on Dec 7, 2009 12:38 PM

  • Problem in importing data in oracle 10g from 9i backup

    Hi ,
    Am trying to import data in oracle 10g..but it does not importing constraints, and stop doing anything by the msg.
    About to enable constraints.....
    after this msg it does not work.
    plz help,
    Regards,
    Neha

    Hi Neha,
    You have a lot of options. I'll supose you can test first, and you're using an export file.
    First forget about the data, think in your database structure. So you can do this:
    exp userid=... file=exp_norows.dmp full=y rows=n statistics=none
    Now you have the structure of your database. Create the database, in 10g, empty, check you have all filesystem, etc. for you new datafiles. And do the import with parameter ignore=y, you'll see a lot off errors on SYSTEM schema, don't worry about it.
    Now you have the structure of you database in 10g. You can take a look in the import log file, looking for some possible errors come from your schemas. so check the objects, and check the schemas.
    Bear in mind things like CONNECT role in 9i it's different in 10g, you can't create db_links in 10g with "IDENTIFIED BY VALUES" because you'll get an ORA-00600, etc.
    Well, fix all problems on source database (9i) and repeate this procedure until you don't recieve any more errors (not a SYSTEM schema errors).
    When you have everything solved, you can try to import the data.
    I hope, this method can help you. If you have any problem do not hesitate to ask me.
    John Ospino Rivas

  • Need help for importing oracle 10G dump into 9i database

    hi, Someone help me to import oracle 10G dump into 9i database. I'm studying oracle . Im using oracle 10G developer suite(downloaded from oracle) and oracle 9i database. I saw some threads tat we can't import the higher version dumps into lower version database. But i'm badly need help for importing the dump...
    or
    someone please tell me the site to download oracle 9i Developer suite as i can't find it in oracle site...

    I didnt testet it to import a dump out of a 10g instance into a 9i instance if this export has been done using a 10g environment.
    But it is possible to perform an export with a 9i environment against a 10g instance.
    I am just testing this with a 9.2.0.8 environment against a 10.2.0.4.0 instance and is working so far.
    The system raises an EXP-00008 / ORA-37002 error after exporting the data segments (exporting post-schema procedural objects and actions).
    I am not sure if it is possible to perform an import to a 9i instance with this dump but maybe worth to give it a try.
    It should potentially be possible to export at least 9i compatible objects/segments with this approach.
    However, I have my doubts if this stunt is supported by oracle ...
    Message was edited by:
    user434854

Maybe you are looking for

  • USB Mouse autosuspends after 2 seconds

    Hello dear Community I have a problem with my USB mouse on my laptop. It autosuspends after 2 seconds when my laptop is on battery power. When AC is plugged in, the mouse works without problems normally. But sometimes (I couldn't find any underling r

  • Itunes and converting video's

    Can anyone help me? I have some movies (Quicktime and Media Player movies) and I want to convert them to AAC so I can use them for my Ipod. Problem is I don't know how to do that. I've tried a lot of convertingprograms, but I couldn't find AAC conver

  • PCA: Transfer Payables/Receivables

    Hi, I would like to know, if it is possible to exclude accounts payables / receivables from the transfer to PCA(Transaction 1KEK)? What settings in the customizing have to be changed for individual accounts?

  • Jsf 2.0 functionality in Jsf 1.2

    Hi Team, I am using Jdev version 11.1.1.7 so JSF Version : JSF 1.2 I need to use the functionality which presents in the JSF 2.0. i.e., FacesContext.getAttributes() and UIViewRoot.getViewRoot() Any suggestions how to achieve the above functionalityin

  • Can the new watch be worn in either the surf or pool?

    Can the new watch be worn in either the surf or pool? There seems to be no community for the watch as yet, so thought I'd put it to this forum. A bread trail has to start somewhere. Rob