Download data Other databases to Oracle

Hi,
Currrently I am following a process through MS Access to A) download the data from other databases, B) truncate Oracle tables to delete all the data and C) to upload the data to Oracle Tabes...
Can you please advice if there is a way I can download the data directly from other databases to Oracle... I am looking for details as I am new bee with Oracle...
Thanks

I am just curious about your word "database".
Is this in Oracle terms, MS terms, MYSQL terms?
Please clarify.
Can you please advice if there is a way I can download the data directly from other databases to Oracle...Yes, depending upon exactly which flavor of other databases may be.
I am looking for details as I am new bee with Oracle..Details are database specific, but since we don't anything about other databases, I won't guess at which details you may require.

Similar Messages

  • Creating table in other databases than Oracle

    Hi
    It would be nice to be able to create tables in a JDBC Connection in other databases than Oracle. Why limit it to Oracle when there is a SQL standard to work with?
    Regards,
    Fredrik

    Generic SQL isn't really as generic as people would like to believe.
    In any case, we're working on that for an upcomming release, but with the current time constraints, we just got the Oracle table creation support done.
    (The time is more on testing than writing the feature)
    It'll get in there, but probably not in the next release.
    Rob

  • Db-cascade-delete for other databases than Oracle?

    I have two entity beans with a one to many relationship. The database designers have implemented a cascading delete between the two tables for the entity beans. How should the deployment descriptors be written for this to work properly? From what I understand I will need to use the <cascade-delete /> tag in ejb-jar.xml and <db-cascade-delete /> in weblogic-cmp-jar.xml. However this document http://e-docs.bea.com/wls/docs81/ejb/entity.html states that <db-cascade-delete /> only works for Oracle, and I'm using DB2. Does this mean that I have to remove the cascading delete in the database and only enable it in ejb-jar.xml, or will <db-cascade-delete /> work for other databases than Oracle?
    /Björn

    To get the certified answer I'd ask a tech support rep. Unofficially, if DB2 supports cascade delete then I would expect that the EJB container will work with that. There are issues surrounding certification of features against specific databases and I'm not up on all of these so I'd check with support.

  • Error not send data a database of oracle please

    I cannot send data from a variable a the database of oracle.
    variables they are = unot,dost,trest but it does not recognize its values......
    it does not insert anything in the fields of the data base
    this code:
    con = DriverManager.getConnection(url,"ora1", "oracle");
    stmt = con.createStatement();
    String uprs = "insert into anexo (cod_ane,codigo,desc_anexo)
    values(" + unot + "," + dost + "," + trest +")";
    stmt.executeUpdate(uprs);
    this error:
    SQLException: ORA-00936: missing expression

    Are they text fields? Try surrounding them with quotes:
    String uprs = "insert into anexo (cod_ane,codigo,desc_anexo)
    values('" + unot + "','" + dost + "','" + trest +"')";Try displaying uprs before the executeUpdate() and make sure it's really valid SQL.

  • How to download Data from Database directly into excel

    I have a requirement to download very large quantity of data from database into Excel file.
    But condition is excel file should have only 65,536 rows in a single spread sheet(that's the limit i suppose),if i have more data points(rows) than it should be stored into different spreadsheet.......this continues so there can be many spread sheets in a single excel file.
    Data size can be 1 GB or more.
    Also specific naming conventions need to be followed for giving name to excel as well as different spread sheets in it.
    Please see if someone could help me out.

    Thanks for ur reply,
    But my requirement is to call "download to excel" method,in a java program on click by user for downloading an excel sheet on his machine.
    This is be done as part of a web application which is to be made (so can't open the excel first)

  • Data Files for new Oracle 11.2g install

    Hi,
    I have installed Oracle 11.2g on Windows 7 Professional 32 bit environment. I would like to download data files to run queries. Could you tell me where I can download data files/database files/scripts?
    Could you also tell me which Oracle manual can be used to practice Oracle database for Systems Admin.
    Thanks for your help.

    Fallow complete oracle documentation Library.
    Oracle Database Online Documentation 11g Release 2 (11.2)
    Thanks,
    <moderator edit  - delelted link signature - see FAQ on top right>

  • Can I use Other database as the repository, Sybase/SQL Server? Urgent!!!

    Hi all,
    Can I use Other database as the repository, Sybase/SQL Server? Urgent!!!
    And Can I use other database store business data and sync with lite?
    Thanks ahead!!!

    Jonathan,
    No, it is not possible to use any other database than Oracle (8.1.7) or later .
    Oracle Lite will only work with Oracle.
    Regards

  • Download data to html format

    hi
    i want to download data from database tables to the html format what is function module for that.
    regards
    srinivas.

    HI USE fm
    LIST_DOWNLOAD_HTML
    OR CALL FUNCTION 'RSPO_RETURN_SPOOLJOB'
           EXPORTING
                RQIDENT              = SPOOL_NUMBER
           IMPORTING
                REAL_TYPE            = G_DOC_TYPE
           TABLES
                BUFFER               = COMPRESSED_LIST
      CALL FUNCTION 'TABLE_DECOMPRESS'
           TABLES
                IN                   = COMPRESSED_LIST
                OUT                  = LISTOBJECT
      CALL FUNCTION 'WWW_HTML_FROM_LISTOBJECT'
           TABLES
                HTML       = IT_HTML
                LISTOBJECT = LISTOBJECT
    then you get a HTML include the content of your report in IT_HTML.
    You can use the function LIST_DOWNLOAD_HTML to download a list in HTML format
    Demonstrate various things that can be done with lists
    The first example shows how to have a list go to memory instead of the
    screen or a spool, and how to write out that list.
    The second set of examples shows how to save the screen list in
    various formats
    REPORT ZKBTST31.
    DATA: MTAB_REPORT_LIST LIKE ABAPLIST OCCURS 0 WITH HEADER LINE.
    DATA: MTAB_REPORT_HTML LIKE W3HTML OCCURS 0 WITH HEADER LINE.
    DATA: BEGIN OF MTAB_REPORT_ASCII OCCURS 0,
            LINE(255) TYPE C,
          END OF MTAB_REPORT_ASCII.
    START-OF-SELECTION.
    *-- Submit a report.  This one is the chart of accounts
      SUBMIT RFSKPL00
        EXPORTING LIST TO MEMORY           " Save list in memory
        AND RETURN.    " Return control to this program
    END-OF-SELECTION.
    *-- Get the list from memory
      CALL FUNCTION 'LIST_FROM_MEMORY'
           TABLES
                LISTOBJECT = MTAB_REPORT_LIST
           EXCEPTIONS
                NOT_FOUND  = 1
                OTHERS     = 2.
    *-- Write the list out
    *-- This is a trivial example.  A better use would be when the
    *-- requirement is to have one report print out several different
    *-- reports on the same list level.
    CALL FUNCTION 'WRITE_LIST'
           TABLES
                LISTOBJECT = MTAB_REPORT_LIST
           EXCEPTIONS
                EMPTY_LIST = 1
                OTHERS     = 2.
    The examples below this line do not require that the report be       *
    submitted to memory when run.  All that they require is that the     *
    report has been written to the screen.           *
    *-- Take the current list that has been written to screen, and format
    *-- as an HTML file.
      CALL FUNCTION 'WWW_LIST_TO_HTML'
           TABLES
                HTML   = MTAB_REPORT_HTML
           EXCEPTIONS
                OTHERS = 1.
    *-- Save the list.  Same as using System->List->Save->Local File or
    *-- entering %pc in the OKCODE box.  This function does not need the
    *-- include <%_LIST> in a program.
    *-- Method can be:
    *--   NOCO - No conversion
    *--   RTF  - Rich Text Format
    *--   DAT  - Tab delimited Format
    *-- When no method is given, a selection screen is presented for the
    *-- user to choose the method.
      CALL FUNCTION 'LIST_DOWNLOAD'
         EXPORTING
              METHOD     = 'NOCO'
           EXCEPTIONS
                OTHERS     = 1.
    rEWADS IF HELPFUL

  • MDM vs other database

    Hi Friends,
                         Could anyone give me some inputs regarding the comperison between MDM and other databases like oracle or Sql.
    With Regards,
    Vinay Yadav

    Hi Vinay,
    sql is not a database but a query language to insert/update/select/delete data from/in a DataBase.
    MDM is a Master Data Management, so it has a lot of functionalities in order to manage Data, but physically data are in a below database like Oracle or others.
    MDM has a lot of features that a typical RDBMS hasn't, for example attributes management, hierachies, etc. etc. and the it permits integrations in SAP world. Please, refers to these page, to see more deeply about MDM:
    http://www.sap.com/platform/netweaver/components/mdm/index.epx
    Hoper this help you.
    Regards,
    Vito

  • Different ways to download data into a Oracle database

    Apart from the below are there any other ways to download data into an Oracle database ?
    1. Import data using import/export features.
    2. Oracle external tables.
    3. Data Pump
    4. SQL Loader.
    5. PL/SQL => utl_file package.
    6. Oracle SQL developer tool - it was a nice surprise this morning to know that this tool can be used to import data into Oracle database.
    Thanks
    Gony

    I will be able to do that once I complete my transition into an Oracle DBA
    Next Great DBA
    I downloaded oracle to my laptop today.
      I will become the next great DBA.
    No need for education or taking a course,
      I'll use the forum and learn by brute force.
    The guru's won't mind, they know it all
      They are so profound, their ego's enthrall.
    They have it written by steps 1 through 10.
      If I don't get it once, I'll just ask it again.
    I won't write it down, seems simple enough
      After all, I've used Access with SQL and stuff.
    Why you upset? Why you tell me to read?
      I've no time for a manual, No Sir, Indeed!
    Why waste my time with a book or a link,
      I have this forum, no need to think.
    I have no work history, just out of college,
      But I'm smarter than those who are three times my age.
    I'll become certified with an OCP,
      Have you the answers, just give them to me.
    Then we'll be equal just wait and see!
      But, Why are you paid 100K more than me?Edited by: sb92075 on Jul 12, 2009 7:57 AM

  • Extracting date from oracle/other databases exactly to java

    Hello Friends,
    Iam creating a simple program which extracts data from any database and stores it in an XML file and also it can extract data from an XML file and updates the database.
    My program is just getting the tablename as an input and from that it builds the query (select * from tablename). Through ResultSet, Iam extracting date fields with getDate() method of ResultSet, which is yeilding converted dates [In oracle if date is 23-DEC-1980, Im getting it as 1980-12-23 in java]. Even getString() method of ResultSet doesn't work.
    I want my program to work with any database engine, which may have their own date formats. Kindly can anyone suggest me a way to extract date from any database exactly as it is to java.
    NOTE:: I can't use to_char(datefield) type commands in SQLQUERY as the only input to my program is tablename and my query is, select * from tablename.
    Regards,
    Ch.Praveen.

    HI Friends,
    Thanks for your fast replies. My program is extracting data from a database and generating an XML file for it, which is as follows.
    <?xml version="1.0" encoding="UTF-8"?>
    <table tableName="EMP">
    <row>
    <column columnName="EMPNO" columnType="NUMBER">7369</column>
    <column columnName="ENAME" columnType="VARCHAR2">'SMITH'</column>
    <column columnName="JOB" columnType="VARCHAR2">'CLERK'</column>
    <column columnName="MGR" columnType="NUMBER">7902</column>
    <column columnName="HIREDATE" columnType="DATE">'1980-12-17'</column>
    <column columnName="SAL" columnType="NUMBER">800</column>
    <column columnName="COMM" columnType="NUMBER" />
    <column columnName="DEPTNO" columnType="NUMBER">20</column>
    </row>
    <row>
    <column columnName="EMPNO" columnType="NUMBER">7499</column>
    <column columnName="ENAME" columnType="VARCHAR2">'ALLEN'</column>
    <column columnName="JOB" columnType="VARCHAR2">'SALESMAN'</column>
    <column columnName="MGR" columnType="NUMBER">7698</column>
    <column columnName="HIREDATE" columnType="DATE">'1981-02-20'</column>
    <column columnName="SAL" columnType="NUMBER">1600</column>
    <column columnName="COMM" columnType="NUMBER">300</column>
    <column columnName="DEPTNO" columnType="NUMBER">30</column>
    </row>
    </table>
    Here you can observe that HIREDATE column is having date in different format than in oracle. We are getting an error while we are extracting data from an XML file and updating the database, as dateformats differ. Can anyone provide a solution, which extracts date from database to java exactly as per the dateformat in database.

  • Is oracle data mining support to other databases to work datamining

    Dear CB,
    I am using oracle data mining and i have some doubts please clarify my doubts
    1) Is ODM talk to other database or not ,like can we use ODM to prepare data mining work using other database
    2) Is ODM supports social analytics
    Thanks inadvance
    thanks & regards
    Suresh

    Suresh,
    1) Is ODM talk to other database or not ,like can we use ODM to prepare data mining work using other database
    Yes, you can use Oracle Data Mining to talk to other databases, but ODM will need to "have" the data inside the Oracle Database during model build and model apply. You can use DB links to pull/push data to/from other Oracle and non-Oracle DBs, but all the data mining work and data transformations occur in-DB by our Oracle design. You can perform data prep, data transformation, build models and then compute dm predictions inside Oracle DB and then publish ODM results to any other dashboard/Q&R tool that can make a SQL call to Oracle to query results or ask ODM predictive model to make a real-time prediction based on current input data.
    2) Is ODM supports social analytics
    Depends on what you mean, but probably Yes. For example, we can mine unstructured data e.g. Twitter feeds and get 80% accurate Sentiment analysis. See http://www.google.com/url?sa=t&rct=j&q=mining%20twitter%20data%20clasification%20stanford&source=web&cd=1&ved=0CCMQFjAA&url=http%3A%2F%2Fwww.stanford.edu%2F~alecmgo%2Fpapers%2FTwitterDistantSupervision09.pdf&ei=Pk3VTsPOFYaIsQLknuiGDg&usg=AFQjCNGSErmPAa-n6kc_gVCCdxMRMKTeOw paper for a published tech paper that describes an approach that we have successfully replicated in-DB using ODM's text mining capabilities & Oracle Text. Add additional structured data, e.g. # purchases, $amount of purchases over time, etc. and you can have better Sentiment analysis or other types of predictive models.
    Also, ODM can perform e.g. churn analysis and include as input to the model the "friends & family" usage, activities, and demographics as enriched input data to mine. We mine Star Schemas so we can pull together a 360 degree view of customer include "social" type data e.g. # links from a friend, etc. Broad topic.... hope this helps.
    cb

  • Exporting data from SQL Server database to Oracle database

    Hello All,
    We need to replicate a table's data of SQL Server database to Oracle database.
    Can this task be accomplished using Import/Export wizard or Linked servers?
    Can help me regarding which Oracle data access components should i download to do this?
    I am using SQL Server 2012.
    And i have Oracle 11g release 2 client installed in my system.
    Thanks in Advance.
    Thanks and Regards, Readers please vote for my posts if the questions i asked are helpful.

    Yes you can definitely transfer data from SQL server to Oracle Have a look at below links
    Export SQL server data to Oracle Using SSIS
    Use OLEDB data provider to transfer data from SQL server to Oracle
    Using Import Export Wizard
    Similar thread
    Please mark this reply as answer if it solved your issue or vote as helpful if it helped so that other forum members can benefit from it.
    My TechNet Wiki Articles

  • How can i convert the data from mutiple-table to the other database(MSSQL)?

    Dears,
    How can i convert the data from mutiple-table to the other database such as MS-SQL?
    I have a third party system based on MS-SQL 2000.
    Now we want to make a integration between SAP R/3(Oracle) and SQL server.
    When my user releases the purchase order in R/3, the application we coded will convert the releated data to the temp database on the SQL server.
    But i don't know which tools will help me reach the purpose.  BAPI, LSMW, IDoc... ???
    Would anybody tell me which way is better and how to do?
    Thanks a lot!
    Kevin Wang

    Hello Kevin,
    The question to use which method depend on your detail requirements. If you use BAPI, you need to find which Bapi can provide the data you want. Bapi normally use as a function called by external system. So you need to develop an external program like VB/Java to call this Bapi and move it to SQL. LSMW is use when you want to upload data from an external system to SAP. So it does not serve your requirement. Idoc can be use to export data to an external system. Again like Bapi, you need to find what Idoc can provide the data you want. However, it does not any programming from the external system. If I were you, based on your requirements, I think writing an Abap program that read the data you want and download it to NT/SQL server will be faster and easier.

  • Download between Oracle 9i Database and Oracle 9i DS

    I have download the files for Windows 2000.
    Oracle 9i Database version 9.0.2.1
    Oracle 9i DS version 9.0.2
    Download Date: June 7, 2002
    These from what I can tell are the lates versions on the website. I installed the database and everything went in fine. I can work with the database and everything. When I use the Universal Installer for Oracle 9i DS, I get an error when it hits 31% that states that this version of DS will not work with a database that is of version 9.0.2.1 or greater.
    If anyone can help me it would be a great help,
    Greg

    Hi,
    Your question is the answer. Oracle9i Database manages all your eBusiness data and Oracle9iAS runs all your eBusiness
    applications. In a 3 tier architecture, Oracle9i Database fits in the Database tier where as Oracle9iAS fits in the middle
    tier. Oracle9iAS provides an infrastructure to run different types of applications(J2EE thru OC4J, Forms applns, Portal
    based applns, Wireless applns etc..)
    Cheers !
    -- Rajesh
    Can any one brief in detail the difference between Oracle 9i database and 9ias application server.

Maybe you are looking for

  • Problems with the tag error-page in web.xml

    hi all, here is my code in my web.xml: <error-page> <exception-type>java.sql.SQLException</exception-type> <location>/ex.html</location> </error-page> it seems not to work, because my JavaBean where its the code to connect to my database and execute

  • File access privilege problem when copying from 9.2.2 to 10.5.6

    Hello, I have two Macs (one running MacOS 9.2.2, the other running 10.5.6) connected with an ethernet crossover cable. FileSharing over TCP/IP is enabled on both machines. When copying files from the 9.2.2 machine to the OS X one (initiated from the

  • Development environment for 10g R2

    Guys, I need to setup a development environment for oracle 10g r2 forms development. I am a new to oracle and due to downsizing we lost our DBAs so I am on my own and need your huge support......... Current settings: Oracle on the server: Oracle 10g

  • Failure to registered in blackberry network

    Hi, I have a Q10 SQN-3 and use Korean KT 3G network with data plan. Today i restore the device system with blackberry link. Now the device OS is 10.2.0.1767. Here is how i try to register to blackberry network for BIS and BBM: Setting -> About -> thr

  • Run Time Engine Web Service

    Hello Gents, Anybody knows why I can't access to VI (*.exe) on remote PC. On remote PC has been installed only standard 8.6 Run Time Engine. Do I need to install additional parts like NI LabVIEW Run-Time Engine Web Server or/and LV Web Server? And is