To transfer oracle 8i database to oracle 7.3 or 8

Hi
is it possible to import oracle8i database into previous version like 7.3 or oracle 8?
please help !
Regards,
Alpesh Shah

You can do an export from 8 (not sure about 8i, but should be the same) with the exp73.exe export utility. This will then be in the correct character set to import into 7.3.

Similar Messages

  • How can i transfer oracle table's

    Hi there
    can anybody help?, i wana use my oracle table's ( that i created in system) and wana to use those table in another system (it doest have oracle software ). is ther any possible way to use entire oracle table's in a system without installing oracle s/w .. (i wana use these table to create a website).
    please suggest how i can use those table to connect with a front end tool without installing oracle and , and how i can transfer oracle database table( how can i save and take it out from my system .
    Thank you

    if you are trying to access the tables in oracle database from web application (J2EE) or some other using JDBC you can access oracle tables
    you can query/modify the data

  • How to release FSG reports without using Program - FSG Transfer across a database link

    Hi,
    Our project development team have built some reports to meet the requirements of the business customer using Financials Statement Generator (FSG) as part of an implementation of Oracle E-Business Suite (EBS) release 12.1.3.
    We know we can use the Program - FSG Transfer across a database link to move the reports from development to another environment.
    Oracle General Ledger User's Guide
    Copying Report Objects From Another database (FSG Transfer Program)
    http://docs.oracle.com/cd/E18727_01/doc.121/e13627/T312864T313620.htm#I_tx2Dfsgx2Dimpex78
    However our production environment is on a different network. Therefore this solution will not work since a database link cannot be created from production to the non production databases. Obviously I am asking the network solution architects to consider how to join the networks but do'nt hold out much hope. Has anyone got an alternative solution?
    FYI We have considered extracting the report definition, row sets, column sets etc from the back end database tables then transforming that into end user key strokes to simulate what someone would do to create such a report from scratch using the front end forms using a tool such as data loader which I believe has no licence cost implications. We dont have a lot of time so would be interested to know if anyone had any success with an alternative method such as this.
    P.S. I had found this question asked already by someone else but without an answer so i am trying again today.
    Transfer FSG Report without using FSG Transfer program.

    Look here for a potential way: Re: Calling table function on remote server - possible?

  • How do I transfer my stickies database from my lion computer to my mountain lion computer?

    How do I transfer my stickies database from my lion computer to my mountain lion computer?

    No, the Notes app.
    But I just checked and didn't see any option there. But I could swear there was an import from stickies option...
    Anyways stickies works in ML. At least it does in my system, which was updated from Lion.
    So if you don't have the stickies app you can just copy it from your Lion installation.

  • IS THERE ANY WAY TO TRANSFER SQLSERVER 2012 DATABASE TO SQLSERVER 2005

    IS THERE ANY WAY TO TRANSFER  SQLSERVER  2012 DATABASE TO SQLSERVER 2005?
    Any Way?

    IS THERE ANY WAY TO TRANSFER  SQLSERVER  2012 DATABASE TO SQLSERVER 2005?
    Any Way?
    Hello,
    Please refer to the following article regarding how to downgrade SQL Server 2012 database to lower version:
    How to migrate a SQL Server database to a lower version:
    http://www.mssqltips.com/sqlservertip/2810/how-to-migrate-a-sql-server-database-to-a-lower-version/
    Regards,
    Elvis Long
    TechNet Community Support

  • HOWTO Transfer Oracle Database Tables to SAP

    hi
    I need to import some Oracle Database Tables to the SAP Dictionary, i was wondering that id there is a short way to do this. If there is a progrm to be written then could any one send me the code.
    And if there is another way then plz  do guide me.
    Thanx in Advance.
    Zahid

    Dear vasmi VaraPrasad!
    I am grateful for ur time. I perfectly understand the logic you told me.
    Now let me tell you what i have done so for in this regard by doing some googling and with the help of my respected teacher.
    I made a connection entry in the DBCON table and specify all required things
    like
         NAME      =  MYCONNECTION
         DBMS      =  ORA
         USER      =  SABRO <my db user>
         PASSword  =  *********/********* <my db password>
         INFO      =  FIRS <TNS Name to my db>
    afte that i tried the following code.
    ===========================================
    REPORT Z_DB_1 .
    *Declaration
    DATA: WA TYPE <SAP_TABLE>.
    Init connection
    EXEC sql.
    connect to 'MYCONNECTION' as 'MYDB'
    ENDEXEC.
    Open connection
    EXEC sql.
    SET CONNECTION 'MYDB'
    ENDEXEC.
    Do your trick
    EXEC sql PERFORMING your_form.
    SELECT * INTO :WA FROM <DB_TABLE>.
    ENDEXEC.
    Stop connection
    EXEC sql.
    disconnect 'MYDB'
    ENDEXEC.
    FORM your_form.
    WRITE: / wa-deptno, wa-dname, wa-loc.
    ENDFORM.
    ======================================================
    now when i run this program it terminates with a runtime error that is:
    "An error occured while setting up a connection to MYCONNECTION".
    This  seems that there is some problem with the connection i don't know how to figure out what is wrong with this connection.
    I think the problem is that SAP does not know the TNSNAMES file, or there might be some environment variables to be set so that SAP recognize or read that TNS NAME "FIRST".
    Regards
    Zahid Kareem.

  • How to transfer oracle payroll costing data to GL that is not oracle

    we have oracle UKHRMS implemented in our company but we donot have Oracle Financials so can some one kindlly assist us in the script that can help us transfer data from Oracle HRMS to Computeron Software (http://www.computronsoftware.com) which is a financial package that is being used by our company.
    Please help!

    Hi ;
    I belive its hard to get answer for your issue in forums... I Suggest contact wiht your Computron's Customer Support System and take support from them.
    Regard
    Helios

  • How to transfer oracle payroll costing data to a legacy financial system

    can some 1 help me with the select query that can pick the exact data of oracle payroll costing for the pay period and dump into my Financial system that is not an oracle product??

    Condition 1.
    ppa.action_type = 'C'  
    and ppa.payroll_id = :p_payroll_id
    and ppa.EFFECTIVE_DATE between to_date('01-'||:PMON || '-'||:PYEAR,'dd-Mon-yyyy') and last_day(to_date('01-'||:PMON || '-'||:PYEAR,'dd-Mon-yyyy'))Above 3 conditions give the 'Costing' processes for the particular payroll that is processed for the given date range.
    Condition 2
    and ppa.PAYROLL_ACTION_ID = paa.PAYROLL_ACTION_IDthis condition restricts the assignment_action_id selected from pay_assignment_actions to the assignment_action_id for the payroll action selected by condition 1. ie result includes those assignments which are a result of costing process for the particular period.
    Hope this has explained the query. You can also try checking the correctness of your result by including ppa.EFFECTIVE_DATE in the select statement.

  • How to transfer Oracle table into XML?

    Hello all,
    Can anyone give some inputs on this issue of transferring the Oracel table/database in XML?
    Thanks in advance
    Himanshu

    start with select xmlElement((xmlforest()) from your tables. The docs have detailed explanations on these and other xml functions and packages.
    ben

  • HOW to use xml to transfer data from database?

    Hi,
    Would you please give me some suggestion on how to use xml connect with a table in oracle/MS_access database?
    Thanks a lot
    Zhao

    Have you already had a look at our online documentation here on OTN, or at a book like Building Oracle XML Applications? There are lots of examples in those.
    If you have a specific question about using the API's that's not working for you, we can help out here.

  • Best way to transfer a 10g database from HP9000 to Linux Redhat?

    What is the best way to transfer a 10g databasse from HP9000 to Linux Redhat?

    Hi Bill,
    What is the best way to transfer a 10g databasse from HP9000 to Linux Redhat?Define "best"? There are many choices, each with their own benefits . . .
    Fastest?
    If you are on an SMP server, parallel CTAS over a databaee link can move large amnunts of tables, fast:
    http://www.dba-oracle.com/t_create_table_select_ctas.htm
    I've done 100 gig per hours . . .
    Easiest?
    If you are a beginner, data pump is good, and I have siome tips on doing it quickly:
    http://www.dba-oracle.com/oracle_tips_load_speed.htm
    Also,, make sure to check the Linux kernel settings. I query http://www.tpc.org and search for the server type . . .
    The full disclosure reports show optimal kernel settings.
    Finally, don't forget to set direct I/O in Linux:
    http://www.dba-oracle.com/t_linux_disk_i_o.htm
    Hope this helps . . .
    Donald K. Burleson
    Oracle Press author
    Author of "Oracle Tuning: The Definitive Reference" http://www.rampant-books.com/book_2005_1_awr_proactive_tuning.htm

  • Transfer of a database + applications

    Hi,
    I have to transfer a database from A computer to B computer + applications. I did a full export and import I tested the applications, everything ok. For the final passing of database (there are 7 tables which modify in time, there are dependencies between these tables) how to do: to delete the database to recreate it and again continue with full export and import or there is also another method?
    Thank you,
    Mihaela

    My understanding of your question is that there are referential integrity between these tables and while you were doing your export, the tables where changing, hence inconsistency in the export data.
    If so, you do not need to drop and recreate database. You can export only those 7 tables (specifying parameter CONSISTENT=Y) from A computer, drop (or truncate) the those 7 tables already import in B computer, import only those 7 table to B computer.
    Hope this helps.

  • Transfer OVI Suite database to new PC

    HI,
    I need to transfer my OVI suite database (SMS and contacts) to a new Laptop.
    I have over 4700 sms's backup'd up on my OVI suite (current PC) ... On my E72 i only keep the current months SMS's.
    Now i am getting a new Laptop and cannot loose the 4700 sms's.
    How do i move the OVI database with sms's to the new Laptop.
    Thank you

    just do one thing make a backup of the folders inside the
    "C:\Documents and Settings\<username>\Local Settings\Application Data\Nokia\Nokia Data Store"
    And put them again in the same location on your laptop after installing NOS.
    Username is the login name of the computer
    This will definitely solve your issue.
    If you like my post then Plz click on Green Star on left side to add Kudos
    Also, if you find my this post suitable to answer then plz click on "Add to Solution" tab on right

  • Marketing Documents Transfer to New Database

    Hey all,
    We have been using Copy Express to copy most of the information from one database to another in preparation for a COA overhaul.  It's worked pretty well so far, but we realized that this tool does not bring over marketing documents.
    I am curious if importing a complete set of marketing documents (with links eg Sales Order -> Delivery -> A/R Invoice) is possible or reasonable.  Having spent some time importing Service Invoices, I know how to import them, but I'm not so sure that importing linked documents would be a reasonable expectation on a two year old database.
    Does anyone have any feedback on this?
    Thanks,
    Kevin

    Hi Kevin,
    Copy express is used to copy the database setting and master data (items, COA and BP) and so on (pls read the copy express help file).
    The marketing documents will not be imported to the new database since it will make a big effort and the result will not 100% correct.
    you just do opening balance (A/R invoice, A/P invoice, stock and G/L account opening balances, all of the documents mentioned are open status), meanwhile the opening document in the old database is still maintaining until invoices created. If the time for invoices created are coming, you do that in the new database and just use document type service and not item. I always suggest that to our clients if they want to make a database cut off due to some certain reasons. The new database go live date is the new document date that created on the go live date.
    Rgds,

  • JSP press hyperlink to display a text transfer from the database

    I have a JSP file, and it display a text from the database.
    but now I want to change it into a hyperlink, when I press the hyperlink then the text display.
    and my code is here:
    <tr>
    <td>
    <%=rs.getString("internal_ans").replaceAll("\n","<br>")%>
    </td>
    </tr>
    and I add a hyperlink:
    <tr><td>display</td></tr>
    How to write the onClick event to display the text.

    489joe wrote:
    I have a JSP file, and it display a text from the database.
    but now I want to change it into a hyperlink, when I press the hyperlink then the text display.
    and my code is here:
    <tr>
    <td>
    <%=rs.getString("internal_ans").replaceAll("\n","<br>")%>
    </td>
    </tr>
    and I add a hyperlink:
    <tr><td>display</td></tr>
    How to write the onClick event to display the text.Are you want to display in that table data cell or in any control like textbox...

Maybe you are looking for