How to access oracle which on virtualbox windows xp from Host

I have oracle 10g installed on virutalbox XP and I want to access that database from the host Windows 7 system.
I have oracle 11g client installed on host system.
Thanks

I have oracle 10g installed on virutalbox XP and I want to access that database from the host Windows 7 system.
I have oracle 11g client installed on host system.
Thanks

Similar Messages

  • How to access Oracle Apps 11i forms from Virtual Machine(Vmware Player)?

    Hi,
    I have installed Oracle Apps 11i on native OS OEL5 Server and Windows XPP on Virtual Machine using Vmware Player on standalone same desktop.Now how to access Oracle Apps 11i from Virtual Machine(Windows XPP)?
    Thank's
    Regard's
    Rerry

    Hi,
    Sorry my instance is PROD instead of TEST.
    1)Renamed the sqlnet.ora and make the following change in the tnsnames.ora (SERVICE_NAME = PROD) to (SID = PROD) and tryed but same error.
    2)Only one oracle homes on the cleint machine
    3)The output of tnsping PROD
    Microsoft Windows XP [Version 5.1.2600]
    (C) Copyright 1985-2001 Microsoft Corp.
    C:\Documents and Settings\Administrator>tnsping PROD 5
    TNS Ping Utility for 32-bit Windows: Version 8.1.7.0.0 - Production on 23-FEB-20
    10 00:38:40
    (c) Copyright 1997 Oracle Corporation. All rights reserved.
    Attempting to contact (ADDRESS=(PROTOCOL=tcp)(HOST=SHUBH.hnp.com)(PORT=1521))
    TNS-12570: TNS:packet reader failure
    Normal ping is ok from both host to guest and guest to host.
    Thank's
    Regard's
    Rerry

  • How to access Oracle Apps 11i forms using Vmware Player?

    Hi,
    I have installed Oracle Apps 11i on native OS OEL5 Server and guest OS Windows XPP using Vmware Player.Now how to access Oracle Apps 11i forms from Windows XPP using Vmware on my OEL5 Server Desktop?
    Thank's
    Regard's
    Rerry

    Hi,
    If you mean how to access eBusiness Suite from within the Virtual Machine, then you just navigate to the same URL you normally would. You may need to put the machine alias in your hosts file if you are referencing it via machine name rather than IP address.
    If you mean that you want to load the form in forms builder (for example) then you need to FTP the form from server to client (as you normally would) and then open it in your client (XP virtual machine).
    If you want to use Workflow Builder (as per your original requirement) then you need to ensure that the TNSNAMES.ora file in the Workflow Builder home has an entry for your instance on Linux, and then you should be able to connect to the database directly.
    HTH,
    Matt
    WorkflowFAQ.com - the ONLY independent resource for Oracle Workflow development
    Alpha review chapters from my book "Developing With Oracle Workflow" are available via my website http://www.workflowfaq.com
    Have you read the blog at http://www.workflowfaq.com/blog ?
    WorkflowFAQ support forum: http://forum.workflowfaq.com

  • How to access Oracle database using UNIX?

    Hi,
    Does anyone know how to access Oracle database Oracle 8i that is hosted on unix server via unix command line?
    Thanks,
    Willy

    Well, Oracle probably has a command line tool. I think it's called sqlplus or somesuch. Check you Oracle docs.
    Of course, given that this is a Java forum, it's remotely possible that you're actually asking about accessing the database from a Java program.
    http://java.sun.com/developer/onlineTraining/Database/JDBC20Intro/

  • How i access file which stored at application server .? Is there any fm ?

    Hi,
    How i access file which stored at application server . Is there any function module which provide same funtinality.
    Regards,
    Gurprit Bhatia

    Hi ,
            U need to use datasets for reading data from application server.Do a f1 on dataset,u will get to know rest of the things.
    TRY.
        OPEN DATASET file FOR INPUT IN TEXT MODE ENCODING UTF-8.
      ENDTRY.
      IF sy-subrc = 0.
          READ DATASET file INTO <wa_data> MAXIMUM LENGTH 200.
               move the data in to internal table
        close dataset
    Edited by: A kumar on Aug 21, 2008 1:37 PM

  • How to access Oracle Using Dos Based FoxPro(2.5,2.6)

    Hello Sir,
    I need some clarification regarding the following question.
    Q. How can access Oracle Database using Dos Based Foxpro of version either 2.5 or 2.6
    Thanking you,
    Kishore.P

    Hi Alex,
    the host and port depends on your network setup of your VM.
    Do an ifconfig -a and see what IP adress your guest has.
    With this IP address you should be able to access EM from outside your VM (but on the VM host, not from outside the network) with the same port.
    Regards
    Sebastian

  • How to access oracle appa tables

    Can someone pls tell me how to access oracle apps tables
    eg po_vendors of purchasing.

    You can get them in this way select * from tab; this will give you a list of all the tables but if you are looking for a specific module like say Order Management then you could do it this way; select * from tab where tname like 'OE%'.

  • Unable to connect to Oracle database running on Windows machine from linux.

    Hi,
    I'm not able to connect to oracle database running on Windows machine from Linux machine. I'm geting the below mentioned error. I have given below the code I used to connect to database and database propertes.Do I need to use any specific driver?
    Please help me.
    Thanks,
    Sunjyoti
    Code :
    import oracle.jdbc.pool.OracleDataSource;
    import java.sql.Connection;
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    class try2{
    public static void main(String args[]) {
    try {
              System.out.println("hi");
    // Load the properties file to get the connection information
    Properties prop = new Properties();
    prop.load(new FileInputStream("/home/sreejith/EDIReader/Connection.properties"));
    // Create a OracleDataSource instance
    OracleDataSource ods = new OracleDataSource();
    System.out.println("prop is "+prop);
    configureDataSource(ods, prop);
    Connection conn=null;
    // Create a connection object
    conn = ods.getConnection();
         System.out.println("Connection is"+conn);
    // Sets the auto-commit property for the connection to be false.
    conn.setAutoCommit(false);
    } catch (SQLException sqlEx){ // Handle SQL Errors
    System.out.println("In exception "+sqlEx);
    } catch(Exception excep) { // Handle other errors
    System.out.println(" Exception "+ excep.toString());
    private static void configureDataSource(OracleDataSource ods, Properties prop) {
    // Database Host Name
    ods.setServerName(prop.getProperty("HostName"));
    // Set the database SID
    ods.setDatabaseName(prop.getProperty("SID"));
    // Set database port
    ods.setPortNumber( new Integer( prop.getProperty("Port") ).intValue());
    // Set the driver type
    ods.setDriverType ("thin");
    // Sets the user name
    ods.setUser(prop.getProperty("UserName"));
    // Sets the password
    ods.setPassword(prop.getProperty("Password"));
    Connection properties :
    # Your Database Connection details
    HostName = 10.20.3.19
    SID = EDIREAD
    Port = 1521
    UserName = dbuser
    Password = dbuser
    Error I'm getting is
    error while trying to connect with odbc datasource
    [root@iflexpau2217 EDIReader]# java try2
    hi
    prop is {HostName=10.20.3.19, Password=dbuser, UserName=dbuser, SID=EDIREAD, Port=1521}
    In exception java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Also I tried to connect with weblogic JDBC driver
    Code is here:
    import java.io.BufferedReader;
    import java.io.ByteArrayInputStream;
    import java.io.File;
    import java.io.FileNotFoundException;
    import java.io.FileReader;
    import java.io.IOException;
    import java.sql.Blob;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.SQLException;
    //import com.entrust.toolkit.util.ByteArray;
    public class trial{
         public static void main(String args[]) throws IOException{
              System.out.println("hi");
              Connection p_conn = null;
              PreparedStatement xml_insert = null;
              try {
         // Load the JDBC driver
                   System.out.println("hi2");
         // String driverName = "oracle.jdbc.driver.OracleDriver";
    String driverName = "weblogic.jdbc.oracle.OracleDriver";
         System.out.println("hi2");
         Class.forName(driverName);
         // Create a connection to the database
         String serverName = "10.20.3.19";
         String portNumber = "1521";
         String sid = "EDIREAD";
         //String url = "jdbc:oracle:thin:@" + serverName + ":" + portNumber + ":" + sid;
    String url = "jdbc:bea:oracle://10.20.3.19:1521";
         String username = "dbuser";
         String password = "dbuser";
    System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
         p_conn = DriverManager.getConnection(url, username, password);
         System.out.println("connection is:"+p_conn+"user name is"+username+"password is"+password);
              xml_insert=p_conn.prepareStatement("insert into PRTB_SUBUNIT (SUBUNT_ID,SUBUNT_SUB_UNIT,SUBUNT_PHYUNT_ID) values (?,?,?)");
              //InputStream in=null;
              File l_file=new File("/home/sreejith/EDIReader/propertyfiles/inputfile/BUG_10802_ES_CSB19_68.txt");
              BufferedReader input =null;
              input=new BufferedReader(new FileReader(l_file));
              String line = null;
              StringBuffer trial=new StringBuffer();
              while (( line = input.readLine()) != null){
                   trial.append(line);
                   trial.append(System.getProperty("line.separator"));
              //InputStream is = new BufferedInputStream(new FileInputStream(l_file));
              System.out.println(trial.toString());
              //Blob b ;
              //byte[] bytes=trial.toString().getBytes();
              //System.out.println("Size-->"+bytes.length);
              xml_insert.setString(1,new String("SpecailChar"));
              //xml_insert.setBinaryStream(2,new ByteArrayInputStream(bytes),15920);
              xml_insert.setString(3,"SpecailChar");
              xml_insert.executeUpdate();
              p_conn.commit();
              } catch (ClassNotFoundException e) {
                   System.out.println("ClassNotFoundException:"+e.getMessage());
              // Could not find the database driver
              } catch (SQLException e) {
                   System.out.println("SQEXCEPTIN:"+e.getMessage());
              // Could not connect to the database
              }catch (FileNotFoundException e) {
                   System.out.println("filenot found:"+e.getMessage());
              // Could not connect to the database
    Error I'm getting is
    error while trying with jdbc:
    SQEXCEPTIN:[BEA][Oracle JDBC Driver]Error establishing socket to host and port: 10.20.3.19:1521. Reason: Connection refused

    Is the Windows firewall active? Have you enabled the port on the firewall, if it is?

  • I have a second generation I Pod touch.  How do I know which games I can download from the Apple Store?

    I have a second generation I Pod touch.  How do I know which games I can download from the Apple Store?

    Hello, Suzanne. 
    Thank you for visiting Apple Support Communities. 
    Unfortunately there isn't a list available at this time for applications that are specific for your iOS/Software version.  However, once you know which iOS/Software version you have installed, you can browser various applications and look for ones that meet your system requirements.  I have included a screenshot below on how to look for this information. 
    iPhone, iPad, iPod: How to find the software version
    http://support.apple.com/kb/ht2188
    Cheers,
    Jason H. 

  • How to access oracle R12 applications from windows client

    Hi All,
    I installed R12 oracle applications on Linux through VMWare and every thing was fine now. My database listener, database and applications are up and running. I installed Java and Mozillla and established a soft link on LInux but was not able to access oracle applicaitons from Uniix box. I was seeing if i can do it from windows client. Mine is windows vista and i pinged the ipaddress and its connecting but was not able to access applications from windows client and also from linux.
    Can any one help me accessing applications from windows client and unix box

    Hi;
    I installed R12 oracle applications on Linux through VMWare and every thing was fine now. My database listener, database and applications are up and running. I installed Java and Mozillla and established a soft link on LInux but was not able to access oracle applicaitons from Uniix box. I was seeing if i can do it from windows client. Mine is windows vista and i pinged the ipaddress and its connecting but was not able to access applications from windows client and also from linux.
    Can any one help me accessing applications from windows client and unix box1. Be sure you can ping your linux from your client
    2. Be sure your selinux and firewal disable on linux machine
    3. Add your IP and hostaname to your windows C:\WINDOWS\system32\drivers\etc\hosts file
    4. Add your url to your trusted site on windows
    5. Use IE7 or check below note to can use certified browswer and access EBS
    Recommended Browsers for Oracle E-Business Suite Release 12 [ID 389422.1]
    Regard
    Helios

  • How to access Oracle forms 11g application through IE 10 Browser

    Hi There,
    Application Server Forms and Reports 11.2.0.2 is deployed on weblogic server on OS windows 7.
    How to access my application through IE 10 where OS Wondows 8?
    Regards,
    Asik

    does it work with firefox or chrome?
    You will find out you deeply have to know formsweb.cfg
    However, ie 10 in general with oracle is not a good plan. E.g.:
    jpi_classid=clsid:8AD9C840-044E-11D1-B3E9-00805F499D93
    I hear ie10 is being deployed to windows 7 and and ie11 is in the works.
    which is why I say, oracle needs to develop their own program for launching forms. It doesn't have to be
    full featured browser, just enough to run forms. Hint hint hint: you can get the source code of firefox, change it
    and compile it. (remove their logos and so on.)

  • How to get Oracle Developer 2000 for Windows

    Hi all,
    I have some fmx and rep developed by "Oracle Developer 2000 for Windows" product. I can not run this fmx because of I dont have "Oracle Developer 2000 for Windows" product. I look up download.oracle.com to download but I dont find this product. How can I download or How can I run these fmx and reps?

    Then you're pretty much out of luck. Your only option then is to ask Oracle Support, if they have a copy of "Developer 2000" (Forms 5.0), as you will need the Forms runtime for this version - but chances are pretty small. I just wonder, how you only can have the compiled files and not the source files... and there's no way to decompile an FMX back to an FMB. You can't get the source files somehow?
    You know, that you're asking for something, which is very very old... it's like asking for a copy of Windows 95... on floppy disks....
    It's more than 10 years ago, my company upgraded from Forms 5, and I don't think we have a copy of the installation media any longer. If Oracle Support can't provide you with a set of installation media, you might be lucky, that some user on this forum has a copy of it and will send it to you - but the chances of that is also pretty small, I'd say.... and in any case it will be completely unsupported, you're all on your own.
    If I were you, I'd consider getting the application in question completely rewritten instead of trying to use those old FMX's for anything.
    Hope this helps,
    Jacob

  • How to Client Oracle 8i Client for window 95

    I want to know how to obtain Net8 Driver for window 95. I already have Oracle 8i EE linux version. Is Linux version include net8 for window 95 or not. If havn't, Only Oracle 8i EE for window NT include it.

    The only place I have been able to find the Windows 95/98/NT CLIENT software is from the Oracle 8/8i for NT download/CD.
    It seems to work well if you run the Oracle 8/8i for NT install (even on Win95/98) and select only the client software install. On the 8iR2 version there are some nice additional options regarding the kind of client (user/programmer/admin/...).
    I find it silly that I have to download 200+MB just to install a Win95/98 client to access my Linux database server but that does seem to be the only answer. I searched and asked and searched and asked and this was the only answer I ever received.
    R.Parr
    Temporal Arts
    [email protected]

  • How to download oracle 9i AS for windows NT  on OTN

    I do not know how to download oracle 9i Application server , to help me please by giving me various stages
    Message was edited by:
    [email protected]

    elcaro wrote:
    hi all,
    In my company there is a forms 6i server, now we want to move it to a new server for upgrade operations. for now we want to install forms 6i version on windows server 2003. on quick search I found it for xp but none for windows server 2003. if I try to install xp version I got "javai.dll is not valid" error.What is the complete error message?
    how can I download it ? Company has license information also. what should I do ? for ex should I open a SR on metalink or something like that ?Did you try this file? -- http://download.oracle.com/otn/nt/forms/6i_rel2_xp.zip
    You may log a SR if this does not work.
    Thanks,
    Hussein

  • DB Tool List Table: How to access tables which are in different SQL database ?

    Hi, All,
    I'm working on a database application (SQL server) and is evaluating the NI DB Tool kit for this project.
    One of the requirement is that I need to access tables which are in two different database
    (say Table A in DB 1 and Table B in DB 2).
    Our IT guys has linked Table A in DB1 to DB 2 and I verfied this when I use the SQL server managment studio.
    When DB 2 tables are populated, Table A from DB1 is also there. I can also do the same thing using MS Access.
    Table A in DB1 is avalaible to me enven though I only connect to DB 2.
    Here comes the problem.
    When I use DB Tool List Table.vi to access DB2, it does NOT list Table A in DB1. It only list the tables in
    the database (DB2) which I make connection to (using DB Tool Open Connection.vi with a file DSN)
    So my work around right now is to open two seperate connection to DB1 and DB2. However, this approach
    obviously creates a problem when I have to access seperate database constantly in my application.
    What would be a solution to this ? I've search the forum but only see one post that's somewhat related to
    my question. (And it was posted on 2004) Perhaps I need to alter the code in the orignial VI (DB Tool List Table.vi)??
    My IT guy told me he has not encountered this scenario since he writes codes in other enviroment such as
    VB and others, and he's always been successful by linking tables to different database. 
    I hope my question is sound and clear since I really don't know much about database terminology.
    Any comment/suggestion is much appreciated !!!
    Thanks
    Chad
    Solved!
    Go to Solution.

    To josborne:
    To answer your question:
    - Are the two databases contained on the same SQL Server instance? 
    Or are the databases on separate instances?  I assume they are on
    separate servers, otherwise this wouldn't really be an issue.  But its
    good to know because it will affect how you build your SQL statements.
    Yes they are on separate instances. 
    - Ask your IT people specifically how they "linked Table A in DB1 to
    DB 2".  I assume they used "linked servers". 
    Maybe I used the wrong terminology "linked." They created a "View of Table A (DB1)" in DB2 using the management studio.
    Here is a screen shot of that. As you can see, dbo.VISUAL_WORK_ORDER is seen under LABVIEW database in the management studio.
    I also see the same table when I make connection to database using MS Access.
    Could you elaborate on "configure your SQL statement correctly" =) ? The purpose of using LabView's took kit is so that I can do
    minimum SQL statements. Are you talking about modifying LabView's native VI (DB Tool List Table.vi) ?
    Thanks for the information. SQL is just something new to me.

Maybe you are looking for

  • Mandatory feilds for PP in time sheet

    Hi , I would like to know what are the mandatory fields in CAT's TIME SHEET for PP. Thankds and Regards Rambabu E

  • Message no -4f113

    hello system is showing me an error message no 4f113 that all part 1 entries have been cancelled for excise invoice, when i post the excise through j1iex .though i have done  part 1 entry and it is  showing in display mode. how can i see detail of th

  • Third Party Tool for Scheduling Web Analysis reports

    Hello, I am using Hyperion Web Analysis for report development and Workspace for viewing reports. Now, I am facing an issue for scheduling WA reports through Workspace. Few experts told to me, we can't schedule a web Analysis document in workspace. B

  • 5dmk3 50fps footage in premiere cc

    I Have some 5dmk3 footage shot at 50fps. I can interpret footage to 25fps via the modify tab in the premiere cc project and create slow motion , that's fine. My question is: if I want to use the footage at normal speed (25fps not slow motion) am I be

  • X11 Yellow-Cursor Problem: Still Not Solved

    Sorry for bringing this up again, but previous discussions (search for "X11 yellow cursor") are not active anymore, and the problem is unsolved. Let me briefly restate it for those who just joined in: When displaying X11 windows from Linux machines o