How to integrate 2 different database

hi..
how to integrate between 2 difference database?
between oracle 10g and sql server.
also in different pc.
thanx.

Ok ,
In topology create connection to ORACLE as well as SQL SERVER by Inserting dataserver .
Create physical schema , logical schema for Oracle and Sql Server and catalog for Sql Server .
In Designer create models by reversing using the logical schema defined in topology .
Create interface , you will be able to use Oracle and Sql Server as source as well as target .
Thanks,
Sutirtha

Similar Messages

  • How to compare 2 different database to get table name which are not present in second database

    How to compare 2 different database to get table name which are not present in second database

    Sorry cannot test it right now
    use db1
    go
    select * from sys.tables t where not exists
    (select * from db2.sys.tables s where t.object_id=s.object_id)
    Best Regards,Uri Dimant SQL Server MVP,
    http://sqlblog.com/blogs/uri_dimant/
    MS SQL optimization: MS SQL Development and Optimization
    MS SQL Consulting:
    Large scale of database and data cleansing
    Remote DBA Services:
    Improves MS SQL Database Performance
    SQL Server Integration Services:
    Business Intelligence

  • How to add two different database connections on Model

    Hi,
    In my application, I need to create View Objects on different databases. So I need to add two different database connections on the Model.
    But it seems like Model can be connected to only one database. I tried adding another project to add the second db connection. But after I created a read-only View Object in the second project, it didn't generate corresponding data control in the Data Controls panel.
    Could anyone help me on this?
    Thanks!

    Do you mean adding the second project folder in ViewController->Project Properties->Libraries and Classpath?Yes, either that or: ViewController -> Project Properties -> Dependencies
    And I didn't see the first Model project in the ViewController classpath. Otherwise it wouldn't work. The first model project IS in 'classpath'. Here's how:
    ViewController -> Project Properties -> Dependencies
    I tried this and recreated the View Object. Still didn't generate the datacontrol. No idea why you had to recreate the VO.
    Is your VO in an application module inside the SECOND project?
    After you are sure that everything is in the ViewController's classpath, just try restarting JDeveloper.
    This is very basic. has to work.

  • How to run two different databases on different ports?

    I just created a second database on my machine with SID=B on which there was already a database with SID=A.
    Currently, the listeners for both DB instances work on the same default port 1521. How can i configure my Oracle instances so that the listener for A remains on port 1521 and listener for B listens on port 1531? I am new to database stuff so this might be a dumb question. Apologies in advance!
    Jimit

    Jimit wrote:
    I want it because when i am trying to create an informatica repository on database B, i am getting the error
    TNS 12154 - could not resolve the connect identifier specified.
    And what research led you to believe that creating another listener was the solution?  With a 12154, the request never left the client process .. it never got to the listener for the listener configuration to even matter.
    see: http://edstevensdba.wordpress.com/2011/02/26/ora-12154tns-03505/ (ora-12154 TNS:could not resolve the connect identifier specified)
    The Listener service for database B is up and running, i am able to connect to database B through cmd and the tnsnames.ora file also has the TNS entry for database B.
    See the many previous comments regarding multiple listeners or listeners "dedicated" to a specific database.
    When i try to create my Informatica repository on database A which i installed earlier, it succeeds, however i cannot use database A because of certain restrictions.
    And what are those "certain restrictions"?  How can someone help if you hide the parameters under which you are working?
    Since there is no difference in database A and B except the SID, and the user ids i am using to create the repository have same privileges, i could not think of any other option.
    I can think of another option.  "Work the error message".   If you would research ora-12154 (tns-12154) you would find it has nothing whatsoever to do with listeners.
    Hence, do you think i should go for different ports for both listeners? Maybe it can help.
    It won't help.  It will just make matters worse.

  • How to integrate oracle 11GR2 Database with OEM 12C

    Dear experts,
    I have installed Oracle Enterprise Manager Cloud Control 12c Release 2 Plug-in Update 1 (12.1.0.2) on windows 2008 64-bit version.
    how can I integrate my Oracle 11G R2 database with OEM.
    Thanks.

    Refer the following documents for promoting (discovering/adding) target database to EM 12c.
    Understanding Database Discovery in Enterprise Manager 12c Cloud Control (Note 1400463.1)
    Cloud Control for Oracle Database Assistant: Setup of Cloud Control to Manage Database Targets (Search Helper) (Note 1569848.2)
    Discovering, Promoting, and Adding Targets:
    http://docs.oracle.com/cd/E24628_01/doc.121/e24473/discovery.htm#CBAEGHBH
    HTH
    Mani

  • How to use two different database Drivers in one application ????

    I want to select datas in a result set of a query on a ms access database table and insert these into a mysql table of a mysql database in one application.
    Now my problem is that only on database driver is acceptet in the same application even it`s instanciatet in a completely different class !!!
    Here's the structure of my program:
    class one:
    String database = "jdbc:odbc:Driver={Microsoft Access Driver (*.mdb)};DBQ=";
    database += filename.trim() + ";DriverID=22;READONLY=false}";
    java.sql.Driver driver0=new sun.jdbc.odbc.JdbcOdbcDriver();
    DriverManager.registerDriver(driver0);
    DriverManager.getDriver(database);
    con2=DriverManager.getConnection(database,"","");
    DatabaseMetaData dmd2;
    dmd2=con2.getMetaData();
    stmt2=con2.createStatement();
    rs2=("SELECT (.........
    until here all values can be selected correctly from ms access
    class2.get_gas_id(fla_gas);
    Now I want to insert these values into mysql.
    By despair i created a second class with another jdbc-method:
    class2:
    public class gas_select{
    public static int fla_gas_id;
    public static void get_gas_id(String fla_gas)
    java.sql.Statement stmt3;
    java.sql.Connection con3;
    java.sql.ResultSet rs3;
    FileWriter fout1;
    try
    java.sql.Driver driver1=new org.gjt.mm.mysql.Driver();
    DriverManager.registerDriver(driver1);
    DriverManager.getDriver(config.db_rge_stoffe); ==>
    config.rge_stoffe="jdbc:mysql://192.168.10.101:3306/rge_stoffe?user=<user>";
    con3=DriverManager.getConnection(config.db_rge_stoffe);
    java.sql.DatabaseMetaData dmd3;
    dmd3=con3.getMetaData();
    stmt3=con3.createStatement();
    rs3=stmt3.executeQuery("SELECT (Nr) from tblgaseliste where Gasart like "+"\'"+fla_gas+"\'");
    while(rs3.next())
    fla_gas_id=rs3.getInt("Nr");
    fout1.write(fla_gas_id);
    stmt3.close();
    con3.close();
    fout1.close();
    There's no result and no error message. Idon't know what to do !
    Has anyone an idea ???
    Edited by: goberger on Mar 27, 2008 3:35 PM

    Hi!
    If I understand your problem correctly, you can create connections to as many databases as you want in one class. In one of my programs I have connection to 3 separate databases, but here is an example:
    Connection mysql_con = DriverManager.getConnection("jdbc:mysql://localhost:3306/dbmysql", "root", "12345");
    Connection pg_con    = DriverManager.getConnection("jdbc:postgresql://127.0.0.1:5433/dbpgsql", "postgres", "12345");Then from mysql_con and pg_con create PreparedStatement or Statement then load selections into ResultSet and then use getString() to get a basic String type result that you want and so update table from each database.
    HTH
    Victor.
    BTW Here I use port 5433 for PostgreSQL connection because I SSH tunnel it from 5432 to 5433
    Edited by: vic_sk on Mar 27, 2008 4:23 PM

  • How to integrate four different avalable transactions????

    Hi
    I have to combine four different transactions- MB31, Ztransction, IQ02, Ztransaction
    in such a way that if any one of them fails, all the previous should be rolled back.
    Please suggest me what should i be doing.
    I have mb31 bapi but i cant proceed to the next step without commiting it. How will i roll back mb31 if any of the following transaction fails???????.
    Thanks

    HI,
    When you are using BAPI's and you use commit work and procced to next transaction and anything fails there then you need to reverse the process done by BAPI's.
    For example if you use BAPI to post a goods issue then if you want to reverse it you have to called another BAPI to do the reversal. This how you can do.
    YOU CANNOT ROLLBACK the changes after a BAPI has commited. You can only use another BAPI or FM or other process to reverse the process.
    Other example is if you create a delivery with a BAPI then you need to write a code to delete the delivery. You cannot simply roll back the delivery which has already been created.
    Hope this helps
    Cheers
    VJ

  • How to connect to different databases in hibernate and mysql

    I have a question maybe someone can help me, I need to MAKE A java Enforcement (Desktop) Using Hibernate Where can create a Database, and then allow me to open or connect to the database I want, let's say I have two databases schedules1 one call and another call Horarios2, if I give open Horario1 ps I load the records that database, if anyone can give me ideas, or some articles where I will be grateful I can hayar information, I am using Mysql

    http://hibernate.org/docs

  • How to link 2 different database

    Hi,
    I'm having a problem. I have two databases name FLARE and MP5PROD. When I execute the triggers from FLARE DB, error displayed.
    ORA-04052: error occurred when looking up remote object [email protected]
    ORA--12203: ":TNS unable to connect to destination
    TNSNAMES
    MP5PROD.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 172.16.2.222)(PORT = 1521))
    (CONNECT_DATA = (SID = MP5P))
    FLARE_PROD.WORLD =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.0.222)(PORT = 1521))
    (CONNECT_DATA = (SID = PROD))
    Here are the script for database links:
    FLARE_PROD
    Link Owner: MP5PROD
    Link Name: MP5PRODTOFIN.WORLD
    Host: PROD
    Username: MP5BAIM
    Link Owner: MP5BAIM
    Link Name: FINTOMP5.WORLD
    Host: MP5P
    Username: MP5PROD
    SCRIPT
    create database link "FINTOMP5.WORLD"
    connect to MP5PROD
    identified by "<pwd>"
    using 'MP5P';
    MP5PROD
    Link Owner: MP5PROD
    Link Name: MP5PRODTOFIN.WORLD
    Host: PROD
    Username: MP5BAIM
    SCRIPT
    create database link "MP5PRODTOFIN.WORLD"
    connect to MP5BAIM
    identified by "<pwd>"
    using 'PROD';
    Please help.
    Thanks,
    Regards,
    Diane

    I guess you should use
    using ' MP5PROD.WORLD' instead of using 'MP5P';and
    using 'FLARE_PROD.WORLD' instead of using 'PROD';during dblink creation.
    Edited by: viconstg on 26.04.2012 13:33

  • How to combine 2 different database value...

    Hi there!
    Good Day
    Can you help me with this?
    See image below.
    Your reply will be much appreciated.
    Thanks,
    Joe

    Hi Joe,
    Small correction in the formula :
    If {Flow_column} IN ['PRIMARY SLUDGE1', 'PRIMARY SLUDGE2'] then
    "PRIMARY SLUDGE"
    else
    {Flow_column}
    Thanks,
    Sastry

  • How to access a Cloudscpae database?

    I have problems setting up and accessing the J2EE RI built-in database Cloudscape.
    In the EJB tutorial (EJBIntro) some EJB are created during the exercises. There's
    also a file named MusicStoreDB.jar which contains a prepared Cloudscape database.
    In the turorial it's been told:
    "Sun's J2EE Reference Implementation comes with a built-in version of the
    Cloudscape RDBMS. If you are using J2EE RI, you should initially use Cloudscape as
    your database to avoid configuration problems. You can learn how to substitute a
    different database after you become comfortable with creating and deploying
    applications using Cloudscape."
    and:
    "For Cloudscape, simply copy the MusicStoreDB.jar archive into the directory
    %J2EE_HOME%\cloudscape and then unjar the database. (All files unjar into the
    directory MusicStoreDB within the current working directory.)
    One last step is needed when running with J2EE RI: You need to modify the
    %J2EE_HOME%\config\default.properties file to define the datasources available
    to J2EE RI. This is done by changing the line that reads:
    jdbc.datasources=jdbc/Cloudscape|
    jdbc:cloudscape:rmi:CloudscapeDB;create=true
    (with everything on one line)
    to be:
    jdbc.datasources=jdbc/Cloudscape|
    jdbc:cloudscape:rmi:CloudscapeDB;create=true|
    jdbc/MusicStore|jdbc:cloudscape:rmi:MusicStoreDB;create=false
    (with everything on one line)
    and then restarting both Cloudscape and J2EE RI."
    Rather than doing the changes in "default.properties" I did in "resources.properties"
    but it dooesn't work.
    What am I doing wrong? Can anybody help me to get the database run? How do I have to
    register the MusicStoreDB within resources.properties and how can I access this database
    using the DatabaseTool provided with the EJB tutorial?
    Thank you.
    Dirk Ulrich
    Berlin, Germany
    [email protected]

    I'm having the same problem with even the same
    MusicStore demo .
    I'm trying to solve it.
    please let me know if you have any solution.
    Joseph.

  • Different database connections at runtime

    How can I change different database connections at runtime on the same Application Module ?
    I use BC4J as business layer and uiXml as presentation layer.

    Does anyone know how to do this?
    I need the same, but i couldn't find any documentation about it.
    Looking forward to hearing good news.....

  • How to integrate different tables structures from different databases?

    Hi
    I'm new to oracle ..kindly help me with the below issue...
    I have same set of inter-related attributes (a,b,c,d) in two different databases A and B.
    The structure of tables in both the database are different but they carry same attributes in same relation.
    I have to integrate these attributes into single db object such that any update to base tables updates my object.How can i do this and what object will be helpful?
    Thanks

    Arun Rajesh wrote:
    Hi
    I'm new to oracle ..kindly help me with the below issue...
    I have same set of inter-related attributes (a,b,c,d) in two different databases A and B.
    The structure of tables in both the database are different but they carry same attributes in same relation.
    I have to integrate these attributes into single db object such that any update to base tables updates my object.How can i do this and what object will be helpful?
    ThanksWelcome to Forum!!!
    Please elaborate your question.
    Arun Rajesh wrote:
    I have same set of inter-related attributes (a,b,c,d) in two different databases A and B.1. What are the ATTRIBUTES?
    Arun Rajesh wrote:
    The structure of tables in both the database are different but they carry same attributes in same relation.2. Post the Table Structures.
    Arun Rajesh wrote:
    I have to integrate these attributes into single db object such that any update to base tables updates my object.How can i do this and what object will be helpful?3. What is the end result that you desire? A sample output shall help in our understanding.
    PS:- Please go through this to understand SQL and PL/SQL FAQ.
    Regards,
    P.

  • How to integrate different creator projects

    We have 3 diff creators installed on 3 diff machines we are developing diff modules on these 3 creators. Now we want to integrate all the modules in 1 project(my creator). we cant move classes from 1 project to another as it is time consuming (less RAM)
    I have tried copying all jsps on my web folder, added managed beans.xml,navigation rules tags frm 2 diff machines on my managed-beans.xml, navigation rules
    also copied respective java packages frm 2 diff creator in my src.
    when i deployed my prj then my module is running fine but other modules are giving errors as "error getting property from xxx.Button"

    Arun Rajesh wrote:
    Hi
    I'm new to oracle ..kindly help me with the below issue...
    I have same set of inter-related attributes (a,b,c,d) in two different databases A and B.
    The structure of tables in both the database are different but they carry same attributes in same relation.
    I have to integrate these attributes into single db object such that any update to base tables updates my object.How can i do this and what object will be helpful?
    ThanksWelcome to Forum!!!
    Please elaborate your question.
    Arun Rajesh wrote:
    I have same set of inter-related attributes (a,b,c,d) in two different databases A and B.1. What are the ATTRIBUTES?
    Arun Rajesh wrote:
    The structure of tables in both the database are different but they carry same attributes in same relation.2. Post the Table Structures.
    Arun Rajesh wrote:
    I have to integrate these attributes into single db object such that any update to base tables updates my object.How can i do this and what object will be helpful?3. What is the end result that you desire? A sample output shall help in our understanding.
    PS:- Please go through this to understand SQL and PL/SQL FAQ.
    Regards,
    P.

  • How to integrate android application with oracle database using oracle mobile database server.

    Hi,
    I developed one web application using oracle database. I want to implement same web application in android. My problem is how to integrate android application with existing oracle database using oracle database mobile server. Can u please guide me how to install oracle database mobile server and how to integrate android app with existing oracle database..
    Thank you.

    In the Database Mobile Doc set there is an entire book that covers the Installation of Oracle Database Mobile Server.   Chap 4 of that book contains screen shots and all kinds of information that will help guide you through the installation.   We also have a doc on the different mobile clients.  Chap 2 of that guide covers installs and integration of an android app. 
    thanks
    mike

Maybe you are looking for

  • Problem with Beansbinding as separated class

    Hello, I used beansbinding together with a JTextfield and usually it works, which means that if I do it like the following;   /// the class that I use implements a binding listener binding = Bindings.createAutoBinding(AutoBinding.UpdateStrategy.READ_

  • How do I delete Photo Stream from Win XP PC

    I have turned off Photo Steam on one of my 2 iPads, and both iphones, and should only have 30 pics in Photo Stream from the 1st iPad. However, when I look at photo stream on Apple TV, I have all of the photos that were ever in photo stream (hundreds)

  • How to print a series of index photos billfold sized photos

    I would like to know how to print index sized photos as well as a series of wallet size photos (all of different subjects) on teh photosmart 7520 all in one....there has to be a way to do it.   This question was solved. View Solution.

  • I've my iphone stolen ,Can you help me ?

        Hi, your heigherness. My iphone 4 (white 8G) was stolen in night of 2013-03-09 Hangzhou China, and I'm here to ask for your help, the info about my set is: SERIAL NO. : C3*******PMW     I've do what I can(such like 'find my iphone',which shows  o

  • Error when i share to youtube

    fcp7 - share - youtube - publish to youtube. it converts, then when it tries to publish, it gives me an error that says unable to publish to youtube. i know i have the right username and password put in. it has never worked. any ideas? I'm on 10.6.2