About importing data bases...

i want to import an access data base to an oracle bata base, but the data is in an "arabic" language
so when i converted the access, the data showed in the oracle was not readable...
so what to do to convert the data in the arabic language?

In what version and for what purpose?
If you are thinking that an export is a backup you
are sadly mistaken and should use RMAN.
If you are thinking about something else please
explain it.Well...Main office of our company sends updates of data every month. As I understand, they export data from their database to the dmp file. And right now i must import it to our base. So their changes will appear in our data.
Exp from 9i and imp to 10g

Similar Messages

  • How do you import data base dmp file in oracle 10g

    How do you run data base dmp file in oracle 10g

    Examples..
    Table Exports/Imports
    The TABLES parameter is used to specify the tables that are to be exported. The following is an example of the table export and import syntax:
    expdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=expdpEMP_DEPT.log
    impdp scott/tiger@db10g tables=EMP,DEPT directory=TEST_DIR dumpfile=EMP_DEPT.dmp logfile=impdpEMP_DEPT.log
    For example output files see expdpEMP_DEPT.log and impdpEMP_DEPT.log.
    The TABLE_EXISTS_ACTION=APPEND parameter allows data to be imported into existing tables.
    Schema Exports/Imports
    The OWNER parameter of exp has been replaced by the SCHEMAS parameter which is used to specify the schemas to be exported. The following is an example of the schema export and import syntax:
    expdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=expdpSCOTT.log
    impdp scott/tiger@db10g schemas=SCOTT directory=TEST_DIR dumpfile=SCOTT.dmp logfile=impdpSCOTT.log
    For example output files see expdpSCOTT.log and impdpSCOTT.log.
    Database Exports/Imports
    The FULL parameter indicates that a complete database export is required. The following is an example of the full database export and import syntax:
    expdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=expdpDB10G.log
    impdp system/password@db10g full=Y directory=TEST_DIR dumpfile=DB10G.dmp logfile=impdpDB10G.log

  • Need Information about TBD10 data base table

    Hi Gurus,
        Thanks in advance for looking at the issue.
      I require information for the below questions ;
      1.How is the data base table TBD10 populated i.e which transaction updates data
         into this table.
       2.How is this data base table used.
    Please send your replies.
    Thanks,
    Bhanu.

    HI,
    TBD10 --- Def., out of which IDOC fields a filter object is to be read
    BD59 maintains that table
    Rhea.
    Edited by: rhea on Nov 4, 2008 2:09 PM

  • How i can import  MS access Data base in Oracle 9i

    Dear ALL,
    i am feacing problem in import data base from MS ACCESS to Oracle 9i the procedure was very simple in oracle 8.0.5 but dont know what is in Oracle 9i pls i am in big tribble just boz of this problem pls tell me the solution of this prob with brief Steps would be very thank full to you
    Nauman Mirza

    Naumann,
    Have you checked out the Oracle Migration Workbench? You will find a lot of infromation about it here on OTN.
    Donal

  • Importing data from SQL Server

    I'm relatively new to Oracle, and my question is about importing data. I have an SQL 2000 server and I export a database using Microsoft OLE DB provider for Oracle. The process finished OK but when I tried to query the tables qith SQL Plus Worksheet, I get a message saying:
    select * from rwp_purge
    ERROR at line 1:
    ORA-00942: table or view does not exist
    but the table is there. I can see it using DBA Studio. So, what is happening? Do I have to commit transactions after importing data from SQL Server? Do I have to rebuild statistics?
    thanks in advance,
    Gonzalo Pellegrini

    Was the table created in the schema you are loggin as when trying to access the table? If not, you will have to grant access to the table logged in as the table owner.

  • Import data from a ooo.base to Derby

    Hi,
    I need to import data from a ooo.base to Derby.
    I am not an expert in this kind of work, but:
    - I prepared the data in a spreadsheet, exporting them from the ooo.base.
    - And I read in the documentation that Derby allow to import data with the statement:
    SYSCS_UTIL.SYSCS_IMPORT_DATA(.....);Now I am trying to do things in this way, but I am not able to write correctly the statement above.
    I tried it in some different way and always :
        exmples:
    CALL SYSCS_UTIL.SYSCS_IMPORT_DATA(NULL, 'STAFF', null, '1,3,4', 'data.del', null, null, null,0);
    CALL(" SYSCS_UTIL.SYSCS_IMPORT_DATA(NULL, 'STAFF', null, '1,3,4', 'data.del', null, null, null,0)");but the NetBeans IDE evidence shows that this statement is with error of syntax_.
    I spent much time to understand how to write this SQL procedure, so I would like some help to be able to do it.
    Thank you in advance
    Regards
    Angelo Moreschini

    Hi jshell,
    it is nice to hear from you again.
    After I read your suggestion I looked better on the manuals of Derby.
    Derby has such tools that you supposed they have; they are named ij, but they work from the command line and they are not easy to use.
    The procedure to import/export data of Derby can be used from the ij utility or inside a Java program.
    The procedure to import and export data of Derby are in the file derbytools.jar, and this file have to be in the classpath if you want to use them.
    Putting derbytools.jar in the classpath I could execute the code that I post down (to benefit of others that can be interested) without errors:
                PreparedStatement ps = connection.prepareStatement("CALL SYSCS_UTIL.SYSCS_EXPORT_TABLE (?,?,?,?,?,?)");
                ps.setString(1, null);
                ps.setString(2, "STAFF");
                ps.setString(3, "staff.dat");
                ps.setString(4, "%");
                ps.setString(5, null);
                ps.setString(6, null);
                ps.execute();Thank you for the advice
    regards
    Angelo.

  • Need a information about data base stastics

    hi all
    i need information about data base stastics how to implement the data base stastics what are steps involved in implementation and data base stastics and bw stastics bothare same or diffrent.
    any pointers helpful

    Hi,
    While you can collect/refresh the DB statistics thru the Performance tab or a Process Chain step, it's probably better to have the DBA schedule the run of BRCONNECT to collect statistics. This provides two key benefits, the statistics collection can be moved to off hours rather than during a load window, which is usually tight in most shops, and the other benefit is that it can collect statistics only on tables that have had significant changes in size. There is really no need to collect stats every day on every table - that is just wasted system effort.
    There have been several OS Notes to provide some settings in the recent couple of support packages to control options on statistics collection on ODSs that you might want to review too.
    Pls chk this links;
    Re: Question regarding the statistics.
    Re: DB statistics / Cube statistics
    Re: About DB statistics
    Hope this helps,
    Regards
    CSM Reddy

  • Brief about Console, data manager and Import manager

    Hi,
    Iam new to MDM we just started installing our MDM components and iam a MM functional guy Can you any one tell me about console, data manager and import manger i need to know the following,
    1. what is it
    2. How the 3 is interlinked
    3. can the data manager be loaded directly without a import
    4. is there a std way of creating repository
    5. I need to do samples on vendor, customer harmonisation and the spend analysis and matl master harmonisation..
    Iam asking too much in this forum but i knw you guys are there to help me out.
    Thanks in advance,
    Suresh

    MDM Console
    The MDM Console allows the system manager to administer and monitor the MDM Server, and to create, maintain the structure of, and control access to the MDM repositories themselves. Records are not entered or managed with the MDM Console, but rather with client apps such as the MDM Client.
    MDM Client(data manager)
    The MDM Client is the primary client of the MDM Server, and is the program most users see on their PCs. It allows users to store, manage and update master data consisting of text, images, and other rich content, and to create taxonomies, families, and relationships. Other clients include the Import Manager, the Image Manager, and the Syndicator.
    Import Manager
    Allows you to import master data from most types of flat or relational electronic
    source files (e.g. Excel, delimited text, SQL, XML, and any ODBC-compliant source),
    and to restructure, cleanse, and normalize master data as part of the import process.
    <i>2. How the 3 is interlinked</i>
    --->
    Suppose you are sending vendor information to MDM repository be sending IDOC from R/3. Then the whole process can go as... IDOC will be sent to XI, so XI will generate XML file that contains data. Then import manager can import this file and will so place the data in repository.
    Now if you want to send data in MDM repository, the process goes reverse way. Syndicator will generate flat/xml file. This file will be given to XI so that XI will generate IDOC out of it and will send it to XI. This whole process ensures data consistancy
    For details refer this link
    http://help.sap.com/saphelp_mdm550/helpdata/en/43/D7AED5058201B4E10000000A11466F/frameset.htm

  • Import data external system in PCUI SAP CRM install base Object fact sheet

    I want to import data from third party system to Object fact sheet of install base. Please let me know the possible way to do so. Do I need to import data in BI and then to Object fact sheet?

    Hi Pankaj,
    If you have seperate BI server also alongwith the CRM system as back end.Then IU can create two seperate iviews of the two fact sheets hitting different servers e.g.if this is telecom perspective then In one pcui screen you can give two iviews one will fetch data from CRM server and populate 360 degree view of the customer whereas the BI iview will have multiple line level display of the last bills generated which we can see in detail also by hitting the same iview.
    Regards,
    Priyadarshan

  • Need To know about iOS Data Storage Guidelines?is it a Data base?

    hey..Friends i need to know about iOS Data Storage Guidelines?is it a Data base?

    https://developer.apple.com/icloud/documentation/data-storage/
    Please refrain from mutliptle posts of the same question.

  • Importing music, artwork and data base from external hard drive

    I purchased a MacBook to use primarily as a music server. I have an external hard drive with over 300GB of music files ripped from CDs in Apple Lossless with a computer using Windows XP. I also have another external hard drive formatted for the Mac. My goal is to attach both drives to the MacBook via USB and transfer the music files, album art, and iTunes data base from the Windows system hard drive to the new Mac formatted hard drive. Then I am going to reformat the Windows system hard drive to the Mac format and use it as a back up for the other hard drive. Has anyone ever done something similar? If so, I would appreciate some guidance. If possible, I want to do the above so that the file names and artwork from the Windows itunes system do not get changed or left out when making the transfer to the Mac system. All music files will still be in ALAC. Thanks to all for your help.

    Lots of programs out there from which to choose. In the meantime, don't access the drive.
       18 Free Data Recovery Software Tools
    -Jerry

  • Something about web based data bases?

    am doing work at oracle forms 6i and data base 9i at local data bases. now i want to build my skills in online data bases.plzz give me suggesstions from wut i start.wut are the options that i design my front end for online data bases .wut i can use forms for my front end or i will learn asp php etc .

    Huseyin,
    Regarding WD books:
    http://www.sap-press.com/ search for NetWeaver
    http://www.amazon.com/exec/obidos/tg/detail/-/1592290388/ref=pd_bbs_null_1/002-0578868-8131203?v=glance&s=books -- "Inside WebDynpro" (the best one)
    Regards,
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com/

  • Creating a Crystal Report from a non-SAP data base

    I have the following scenario
    server1\myDataBase
    server1\SAP\sapDataBases
    in sapDataBases I have about 30 company databases. I am trying to create a report, that gets informatino from a table/view/SP from server1\myDataBase, when I try to PREVIEW or SAVE such report on SAP Business One, I always get errors as
    I understand that this eerror means taht I can't invoke the data from out of SAP; it needs to be inside SAP (at least the SP, incoking some other data bases and stuff..)
    Some bodies have told me that it is beacuase I can only create a report from a table/view/sp that resides in the running/currently SAP company database. Is this right?
    Also, If this is the case, this means that If I have an SP taht I use for a crystal report, and 30 companies, I have to create such SP in the 30 companies?
    This is my software details:
    SQL Server 2012
    SAP Business One 9 PL 11
    SAP BusinessObjects Crystal Reports 2013 Support Pack 2 version 14.1.2.1121
    What I want to do is to create a non-SAP data base to create all the SPs/Views for reports, to centralize it, and the just create one reporte and do the 30-imports in each company database, without the need of creating such sps/views in each company-database. Is this possible?
    Thanks

    Moved to Integration Kit forum.
    The people in this forum will know more about the data structure than the CR Design forum which typically doesn't know much about the SAP Data sources Structure.
    Don

  • PLEASE REPLY ASAP.Unbale to connect to oracle data base using JSP.

    hi,
    I am not able to connect to oracle data base using JSP. PFB the code and out put.
    <html>
    <!--Importing the Packages-->
    <%@ page import = "java.sql.*" %>
    <body>
    <%
    try
         out.println("hi<br>");
    Connection conn = DriverManager.getConnection("jdbc:oracle:oci:@xxx.xxx.xx.xxx:xxxx:flstr800","user","paswordd");
         out.println("connected<br>");
    catch (SQLException e)
    out.println("ERROR: failed to connect!");
    out.println("ERROR: " + e.getMessage());
    e.printStackTrace();
    return;
    %>
    </body>
    </html>
    OUTPUT:
    hi
    ERROR: failed to connect! ERROR: No suitable driver found for jdbc:oracle:oci:@host:port
    Please guide me on this issue.
    Edited by: user10997061 on Apr 10, 2009 4:27 AM

    I definitely do not know much about JSP but
    http://www.oracle.com/technology/tech/java/sqlj_jdbc/htdocs/jdbc_faq.html
    indicates
    <quote>
    This URL connects to the same database using the the OCI driver and the SID inst1 without specifying the username or password.
    jdbc:oracle:oci:@myhost:1521:inst1
    <quote>
    I do not see the port information in your connect string. Is that an issue?

  • Old g4 slow when entering data base

    I have an older g4 which I'm using as a data base with pictures.  I developed this data base out of apple works or like the old file maker pro.  The maching is old, but runs.  I've got 1100 pictures on it that I'm trying to organize and some are in iphoto, then moved to my data base once I take them out of a folder imported from iphoto.  I've attempted to clean up the other space, but un sure what I'm doing.  I've read some of the other threads about slow running machines and have done the basics.  So I'll start a new record, find the picture, drop it into the media window and the spinning color wheel appears and runs 45 seconds?
    Seems to be forever.  Even when I try to save or if I move between desktop and data base, the wheel comes up and I have to wait.  It's now to the point it spins every time and I'm not making process on my project.

    Hello and Welcome to the support Community
    What specification is the PowerBook your are running?
    You have said that you have done the basics, what have you already done so far?

Maybe you are looking for

  • HP G60-508 Drivers For XP

    Please help me to get the HP G60-508 Drivers For XP. Specially for sound card.

  • A question about foreign key to multiple tables

    Hello everybody, I have a question about creating foreign key and I would appreciate if you could kindly give me a hand. Here are my tables: CREATE TABLE TEAM1(team_id VARCHAR2(20), project_id VARCHAR2(20)); ALTER TABLE TEAM1 ADD CONSTRAINT PK_TEAM1

  • Schedule dbms_job are not runing

    Hi all, we have database link between two database ysccapps on IBM-AIX 5.2 and bmms IBM-AIX 4.3 before one month bmms database was on windows platform but i migrate from window to ibm aix 4.3 my probelm is some dbms_jobs are running and some are not

  • About the error control

    public static void main(String[] args) {           if(args.length == 0) {                System.out.println("Usage: java ChargenClient host [port]");                return; Above is a prt of my nio program at client side... while i try to connect to

  • Flex Builder 3....Not launching?

    Whenever I press F11 to launch my flex/air project it does not launch. The red square shows up in flex builder and flex builder seems to think it is open but there is nothing there. Also if I check my system processes, it says that adl is running, an