How to import data into TimesTen from Oracle

I want to import data from Oracle into TimesTen,but not found tools provided by TimesTen. I hope TimesTen may convert Oracle's dump file(exp).
thanks for your suggest.

TimesTen cannot read Oracle's data pump export files.
If you are using Cache Groups to cache Oracle tables into TimesTen, then the LOAD CACHE GROUP statement will automatically load the data from Oracle into TimesTen for you.
If you are using TimesTen as a standalone database, then you can SPOOL out the Oracle table data into text files, and use them as data files to feed the TimesTen ttbulkcp command line utility. ttbulkcp is similar to SQL*Loader except it handles both import and export of data.
For example, the following command dumps the contents of the table foo from a TimesTen database mydb into a file called foo.dump.
ttbulkcp -o dsn=mydb foo foo.dump
The file foo.dump will give you an example of what the default ttbulkcp dump file format looks like. You can then generate a new dump file based on the above, but populate it using the data from Oracle.
The following command loads the rows listed in file foo.dump into a table called foo in database mydb, placing any error messages into the log file foo.err.
ttbulkcp -i -e foo.err dsn=mydb foo foo.dump
For more information on the ttbulkcp utility you can refer to the Oracle TimesTen API Reference Guide.
You can also use SQL Developer to export data from Oracle table into ttbulkcp file format, via the Export Data option. Please note that this option is meant for small tables say with a few thousand rows, exporting large tables can be slow in SQL Developer and could require a lot of client side memory.

Similar Messages

  • How to import data into JTable from a text file?

    thanks in advance!

    My guess is you will have to read the data in from the file, parse it, populate some vectors or something and use those vectors to instantiate the JTable. You could use FileReader to read in the data:
    FileReader in = new BufferedReader(new FileReader(file));then use StringTokenizer to parse it.
    m

  • How to bulk import data into CQ5 from MySQL and file system

    Is there an easy way to bulk import data into CQ5 from MySQL and file system?  Some of the files are ~50MB each (instrument files).  There are a total of ~1,500 records spread over about 5 tables.
    Thanks

    What problem are you having writing it to a file?
    You can't use FORALL to write the data out to a file, you can only loop through the entries in the collection 1 by 1 and write them out to the file like that.
    FORALL can only be used for SQL statements.

  • How to upload data into form of Oracle EBS R12 using ATS ver 9.0

    Hi experts,
    Could you please guide me how to upload data into form on Oracle EBS R12 using Oracle Application Testing Suite verson 9.(The simpliest way)
    For example: I need to create user account on Oracle EBS. Normally, I use Dataloader to upload the data, however it just can upload one by one record, cannot upload multi record at same time. Moreover if the performance of server is low, so I will get the issue when using dataloader.
    Thanks in advance
    Best Regards
    Hieu

    Hi you can create Virtual users to enter data. Note than you have to name the objects accordingly.
    For Example default recording provided by Open script is ObjectNAME_(Index No of the object).
    when you record one iteration the name of any object would be ObjectNAME_(0)
    You can then create virtual users so the index will increment as the total number of Virtual users increases. Also you have to handle which row of your test data would get mapped to which Virtual user in the script run session.
    Thanks

  • How to make data base link from oracle 11g r2 to microsoft sql 2008 express

    I need to make data base link from oracle 11g r2 to microsoft sql 2008 express to make replication between then
    please help me !
    I didn't know what is the user and password in the command which create database link

    To replicate data you can ude Database Gateway for ODBC or Database Gatewy for MS SQl Server. Please use the search engine of this forum if you ant to get more details about each product.
    Some SQl Servers are set up to use Windows authentication only. In this case you won't be able to connect to the SQL Server as Windows authentication isn't supported with the gateways. You have to make sure your SQL server is supporting username and password authentication - a common user is the "sa" user. Regarding the username/password, please get in touch with your SQL Server Admin.

  • How to import data into taxonomy tables

    Hi ALL,
    Can anybody suggest to import data into taxonomy tables.Please send me any documentation related this.
    Regards,
    Ravi.

    Hi,
    I hope following URL may help you.
    Taxonomy Import:
    http://help.sap.com/saphelp_mdm550/helpdata/en/09/322ad42c864bf79892af2123525b6f/content.htm
    Importing Hierarchy:
    http://help.sap.com/saphelp_mdm550/helpdata/en/36/c4c97f96484f438c2d5c96171cdd6f/content.htm
    Importing Attributes:
    http://help.sap.com/saphelp_mdm550/helpdata/en/bd/f768fd70d945ee873712304127493b/content.htm
    Importing Attribute text Values:
    http://help.sap.com/saphelp_mdm550/helpdata/en/52/2086075c584d96be102512036b9c0c/content.htm
    Importing Attribute Links:
    http://help.sap.com/saphelp_mdm550/helpdata/en/26/17f916867344afbdfcf7d629035c83/content.htm
    Regards
    Nisha

  • How to import data into taxonomy tables and qualified tables

    Hi ALL,
    Can anybody suggest to import data into taxonomy tables and qualified tables, when is value mapping neccessary and  what is partitioning? and what is the use of that partioning?

    Hello rehman
    even i am facing same issue regading import of data in taxonomy table
    . can we do it through import manager.
    please provide me some details i will be very very thankful to u
    my email - [email protected]
    Thanks & regards
    Himanshu

  • How to import data into a Z table from excel file?

    hi,
    i have a custom created Z table into which i want to import some data from an excel file. which function can i use to do so because SE16 allows me to insert data only one by one via a data entry screen. this is time consuming. i want to import data from excel file so that its faster.

    HI,
    this program uploads data from excel and modifies ztable,(inserts records into ztable), check this and modify according to ur requirement)
    This program uploads material number from excel sheet and does
    ******modifications to material number if required by the user
    ******and updates the table zmatnr with new material against the old material number
    REPORT  zmat_no message-id zebg.
    TYPE-POOLS  truxs.
    TABLES:zmatnr.
    DATA : itab LIKE alsmex_tabline OCCURS 0 WITH HEADER LINE.
    DATA row LIKE alsmex_tabline-row.
    data : g_matnr like mara-matnr.
    data : count type i.
    data : itab_count type i.
    data : gi_final like zmatnr occurs 0 with header line.
    *data : begin of gi_final occurs 0,
          mat_old like mara-matnr,
          mat_new like mara-matnr,
          end of gi_final.
    ***********************Selection Screen*************************
    SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.
    PARAMETER : pfname LIKE rlgrap-filename OBLIGATORY.
    select-options : records for count.
    SELECTION-SCREEN END OF BLOCK b1.
    *********************At Selection Screen*************************
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR pfname.
      PERFORM search.
    START-OF-SELECTION.
    perform process.
    form process.
      CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          filename                = pfname
          i_begin_col             = 1
          i_begin_row             = 2
          i_end_col               = 12
          i_end_row               = 65000
        TABLES
          intern                  = itab
        EXCEPTIONS
          inconsistent_parameters = 1
          upload_ole              = 2
          OTHERS                  = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
      describe table itab lines itab_count.
       row = 1.
      loop at itab.
        if itab-row <> row.
          append gi_final.
          clear gi_final.
        endif.
        case itab-col.
          when '1'.
          CLEAR G_MATNR.
          gi_final-OLD_MATNR = itab-value.
          CONCATENATE 'NEW' gi_final-old_matnr INTO itab-value.
            gi_final-new_MATNR = itab-value.
          endcase.
        row = itab-row.
      append gi_final.
      clear gi_final.
      endloop.
      CALL FUNCTION 'PROGRESS_INDICATOR'
      EXPORTING
        I_TEXT  = 'File Has Been Successfully Uploaded from Workstation ' .
      if not gi_final[] is initial.
        if not records-low is initial .
          if not records-high is initial.
            records-high = records-high + 1.
            DESCRIBE TABLE gi_final LINES count.
            IF records-high < count.
              DELETE gi_final FROM records-high TO count.
            ENDIF.
            IF records-low <> 1.
              IF records-low <> 0.
                DELETE gi_final FROM 1 TO records-low.
              ENDIF.
            ENDIF.
          endif.
        endif.
      endif.
      IF NOT GI_FINAL[] IS INITIAL.
        CALL FUNCTION 'PROGRESS_INDICATOR'
         EXPORTING
           I_TEXT  = 'Processing zmatnr table'
           I_OUTPUT_IMMEDIATELY = 'X'.
          if itab_count <> count.
             message i000 with 'records are not matching'.
             exit.
          else.
             modify zmatnr from table gi_final.
             message i000 with 'data base table modified successfully'.
          endif.
      endif.
    endform.
    *&      Form  search
          text
    -->  p1        text
    <--  p2        text
    FORM search .
      CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
        EXPORTING
          static    = 'X'
        CHANGING
          file_name = pfname.
    ENDFORM.                    " search
    regards
    siva

  • Import data into Numbers from web?

    Is there a way to import data from the internet directly into Numbers without programming/writing an applescript or using a different program?
    Can you do this while using only Numbers and the web?

    And how is Numbers to know how to extract the exact data you want from an external source, unless that source is in a format familiar to Numbers, which HTML isn't? For an automated process like this, you will need scripting, and that means learning to program/understand scripts.
    For example, here's some HTML code from a web page that includes volume data for one symbol:
    <td class="mbi_left" align="left" width="35%">BM&FBOVESPA SA</td><td align="right" width="10%">12.37</td><td align="right" width="10%">0.22</td><td align="right" width="10%">1.81</td><td align="right" width="20%">11,611,700</td><td align="right" width="15%">09/18</td>
    Numbers can't interpret this without being told exactly what to extract. Also, Numbers doesn't go out to the web on its own at fixed intervals (as I suspect you may want) without a program telling it what to do. This is just a spreadsheet after all.

  • How to store data in chinese from oracle and show it to jsp?

    hi, please help.
    i have design a jsp page for registeration of a website in chinese,
    but after the user have enter the chinses data throught the jsp~
    the jsp have shown some monster code~
    it can't show the valid date in chinese!!! how can i fix it????
    when i select data from SQL PLUS, monster code is showed. how to show the chinese data in the oracle.
    i am using tomcat 5.0 ~servlet 2.2 and oracle 9i for database~~
    thx thx thx~~~~~pls help me!!

    The how to at following url shows how to store, retrieve and display characters of different languages from Oracle database onto a JSP page.
    http://otn.oracle.com/sample_code/tech/java/codesnippet/jdbc/nls/Globalization.html
    HTH
    Chandar

  • How to insert Date into Database from workbench.

    Hi
    I have requirement where  I need to  insert the currentDate and Time to the database.   Here I am using  as
    At SQL Statement Info Editor ,have like these :
    Type     value
    Date     parse-dateTime(current-dateTime())
    At DB I have Datatype  as DateTime( Using MySQL). Here i am getting error like :
    Caused by: com.adobe.idp.dsc.jdbc.exception.JDBCIllegalParameterException: Type mismatch is found when preparing SQL statement. Expecting type 'date', but got type 'String'.
    Could  any one tell me where I can find  detailed log say hibernate type... where exatly we are  getting error.(Expect jboss's server log).
    Please tell how to  insert the date into the DB ASAP.
    Thanks
    Praveen

    Thanks for   all replies.
    Eventually I  got  the solution  the post
    From the Form (Using DatePicker) , we will get the DateTime  datatype to the Workbench. All  we need to  do is assign the  same to DateTime variable in the workbench and inserting the data to the DB.
    It works.
    Thanks
    Praveen.

  • How to import photos into iphoto from backup drive to new computer

    2008 "Vintage"  iMac recently died. Data was saved on external hard drive. Purchased new iMac, OS 10.9.4, how to get old iphoto library from hard drive to new computer. Iphoto 9.5.1. Thanks

    Data was saved on external hard drive. Purchased new iMac, OS 10.9.4, how to get old iphoto library from hard drive to new computer.
    Teresa, in what way way the data saved to an external hard drive?  Do you have a copy of your iPhoto library on that drive? Or is it a clone of your old system drive ? A Time Machine backup?
    And which iPhoto version did you have on your old Mac?
    If your external drive holds a copy of your iPhoto library, you can simply connect this drive your new mac and drag the library over.  It will depend in the version of your old iPhoto, how you can open the the old library. If it is an iPhoto '09 or '11 library, you can aunch iPhoto with the options key held down and select the library as your new iPhoto library.  If the iPhoto version is older, you will have to ru the iPhoto Library Upgrader first.
    iPhoto '11: About the Library Upgrader

  • How to import data into EXCELSIUS ?

    Hi experts & community,
    I'm new in using EXCELSIUS ENGAGE and have the following problem, not sure if there's a solution based on a tool like EXCELSIUS:
    I collected a set of personal data within an MS-EXCEL sheet call it a "PoolDB". This PoolDB consists of approx. 40 named fields (columns like "name", "birthdate" etc.) and many rows with personalized data. I designed a complex EXCELSIUS worksheet using this data for selection and certain calculations (result at http://partner.peritas.de). Everytime we changed some data, I have to cut'n'paste this XLS-Database into the EXCELSIUS worksheet, do a manual export of the flash file and upload the result to our website.
    Is there any (ease-of-use) way to import the database every time opening the worksheet automatically?
    Or just better, an opportunity to connect the database with the resulting flash file for an "all-time-automatic" update of the underlaying data?
    We experienced with certain ways of exporting/converting the data info more database-like formats (like XML, MS-ACCESS). But non of the built-in connections (EXCELSIUS connection manager) works or shows any results (and we have no idea how to configurate).
    Sorry for these simple kind of question, but we did'nt find any idea/hint/answer within the documentation and the included "data connection manager" looks to be not able of that simple kind of connection we're looking for (or maybe our question's too complex for the tool).
    Thanks in advance for any help & advisory ...
    Peter
    Edited by: Peter Riedel on May 13, 2009 11:34 AM
    No experts around with an idea how to solve the problem?

    Disclaimer: I'm relatively new at this, too. This what I have found.
    > Everytime we changed some data, I have to cut'n'paste this XLS-Database into the EXCELSIUS worksheet, do a manual export of the flash file and upload the result to our website. Is there any (ease-of-use) way to import the database every time opening the worksheet automatically?
    Look into Excel XML Maps. This allows you to import/export XML data to/from an Excel workbook. You can create an XC dashboard that will read the XML data exported from the workbook. You should be able to add a Refresh button to the dashboard to read the updated XML.
    Excel XML Maps are in Office 2003 Professional (not Standard) and in Office 2007 Standard.
    > Or just better, an opportunity to connect the database with the resulting flash file for an "all-time-automatic" update of the underlaying data?
    An XC dashboard cannot directly issue SQL to a database. It can use a web service to refresh data, or it can call a URL that returns the data.  The URL could be to a local file. Again you should be able to add a Refresh button to your dashboard.
    I haven't tried the web service.  I have used the XML Data connection to read an XML file. We have also used the XML Data connection to call a URL. The URL executed a query against the database and returned the results to the dashboard.
    Check out the chapter on XML and Data Connectivity in Xcelsius 2008 - Dashboard Best Practices.
    Hope this helps.
    Tim

  • Importing dates into Calendar from other Apps.

    Birthdays listed in Address Book can be brought into iCal. Is it possible to also bring in other dates such as Anniversaries etc. also from Address Book?

    Stan,
    Dates to iCal, by John Maisey offers that capability.

  • How to access data in sybase from oracle

    Can any one help me.
    I have a sybase database & i need some of the data of sybase database to be used by oracle database. How can i do that.

    Well, here's some instructions on setting up a link to an Excel spreadsheet via ODBC.
    http://asktom.oracle.com/pls/ask/f?p=4950:61:::::P61_ID:4406708207206#18830681837358
    I guess you'd just change the DSN to point to Sybase instead, and I think you have to change the username/password.
    Tak

Maybe you are looking for

  • Application Compatibility does not update the database.

    Hi,  I am using application compatibility manager 6.1, and SQL server 2012 as database. ACT run ok and it create the XML file but it does not update the database at "C:\Program Files\Microsoft SQL Server\MSSQL11.SQLEXPRESS\MSSQL\DATA" location. I can

  • Stuck on waiting for chnages to be made

    Trying to sync my music, and its stuck on the stage. waiting for changes to be made. shows it on the tab on this phone, but not synced. curious how do i fix that

  • DUMP ERROR FOR REPORT TO ASSIGN TCODE TO ABAP QUERY

    hi friends .. i did this smallreport by difernet type but its the error says dump_--report not found or status errror says maximum session reached ..i think there something wrong in my submit stmt .pls let me know ... also assign tcode to the report.

  • Server 2008 R2 RADIUS Server with a Cisco Aironet 1040 Wireless AP

    I am trying to get Server 2008 R2 RADIUS Server to work with a Cisco Aironet 1040 Wireless AP. I have installed the RADIUS server by MS standards and performed some searches on Google to configure the Cisco Aironet. I see others using a Wireless LAN

  • Need help for a quey

    I want to select columns from a table. Also I need one more record '-1' with the result. I should not use oracle specific keywords like rownum,Dual etc.. since we will be using the query with all DB types. create table test(a varchar(10)); Insert int