How I connect remote database in forms builder

username myname
password mypass
database test
database server 192.165.21.32
port 1521
how can I connect in oracle 11g forms builder ??

using 192.165.21.32:1521:test in the connect string ? ( or 192.165.21.32:1521/test ) or set it up using TNSNAMES.ORA

Similar Messages

  • How I connect remote database in report builder

    username myname
    password mypass
    database test
    database server 192.165.21.32
    port 1521
    how can I connect in oracle 11g report builder ??

    Hello,
    Add an entry like below in the file tnsnames.ora (ORACLE_INSTANCE/config)
    ora11g =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 192.165.21.32)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = servicename)
    REPLACE servicename by the servicename for your DB or use a SID.
    then , enter username / password and ora11g in the logon window
    regards

  • How to connect .odb database using forms 6i`

    Hai
    I need to connect .odb database with forms 6i. Tell me the steps and settings i need to setup for running forms 6i in .odb database.

    Hi,
    .odb is openoffice.org database file or open source database file. Anybody has any knowledge on how to use Form 6i with this database file..

  • Connect to Database through FORM builder

    I have configured 2 listeners to my database, both connect to the database ok but when I try to connect through my form builder I keep getting the error message
    "cannot resolve service_name" even though it's already connected through my net configuration assistant. Is there a seperate connect properties file for my form builder?

    You need to add an entry in the tnsnames.ora file that is in the Oracle_home that Forms is in.

  • Not able to connect to database from Form builder

    Hi ,
    I installed oracle 10 g in my machine and is accessable from SQLPLUS & TOAD.
    In the same drive i installed Form builder, i am getting the below error when i tried to connect DB from form builder.
    ORA- 12154 : TNS : could not resolve service name.
    Kindly do the needfull.

    i am getting the below error when i tried to connect DB from form builder.
    ORA- 12154 : TNS : could not resolve service name.Please post the exact syntax you use to connect.

  • How to connect the database?

    I'm new for oracle developer/2000.
    I installed oracle database 8i in windows 2000 server side, installed developer 6i forms builder in windows(NT) 2000 professional client side. That is all I was done.
    I start forms builder, but I can not connect the database from forms builder.(I configured NET8,and i can connect the database using NET8)
    Please help me.What should I do next? installing more software? installing server side or client side? more configuring? what else?
    Thank you in advance.

    Hi,
    This is not a question particular to portal applications. It should be posted on the general forum. Anyway, please check
    if you have configured the tnsnames.ora on your client machine. You should have an entry for the db connection there.
    Thanks,
    Sharmila

  • Not able to connect to database from Form builer

    Hi ,
    I installed oracle 10 g in my machine and is accessable from SQLPLUS & TOAD.
    In the same drive i installed Form builder, i am getting the below error when i tried to connect DB from form builder.
    ORA- 12154 : TNS : could not resolve service name.
    Kindly do the needfull.

    not able to connect to database from Form builder

  • How to connect client database to server database

    please provide me the steps that how to connect client database to server database in oracle 10g i am getting error ORA-12560 TNS:Protocol adapter error.

    Why don't you search in this forum ???? There are many link which would help
    ORA-12560 adapter error, connecting to remote database
    ORA-12560: TNS:protocol adapter error
    How to solve ORA-12560:TNS:protocol adapter error?
    ORA-12560: TNS: protocol adapter error

  • Problem accessing database from form builder

    I have been trying to access my database using form builder (
    developer 6.0). Everytime, I try to connect, it displays message
    saying, no "tns listener", "incorrect driver designation". But I
    have already configured tns listener using 8i enterprise
    edition.
    I also tried to configure TNS listener using in Developer 6.0,
    but it says, "port is already in use".
    Can any one please help me with me this.
    null

    dinesh (guest) wrote:
    : I have been trying to access my database using form builder (
    : developer 6.0). Everytime, I try to connect, it displays
    message
    : saying, no "tns listener", "incorrect driver designation". But
    I
    : have already configured tns listener using 8i enterprise
    : edition.
    : I also tried to configure TNS listener using in Developer 6.0,
    : but it says, "port is already in use".
    : Can any one please help me with me this.
    Check your TNSNAMES.ORA file that located in ORACLE HOME
    FOR DEVELOPER and make sure it has right configuration
    information, otherwise configure manually.Also if DB located
    not on your machine check HOSTS file.(this file doesn't have any
    extention)
    null

  • How to connect one database in two threads?

    Dear All,
    If anyone can tell me how to connect one database concurrently?
    I tried the following idea:
    1.create a Hashtable to keep database objects(those databases have been opened)
    2.Before openning(connecting) a database:first step is to check the hashtable.
    If the the database object is in the hashtable, this object will be returned.
    If the datatbase object is not in the hastable, open the database and store this opened database object into the hashtable.
    I failed the test of this implementation. My test is:Create two threads (extend java Thread class).In each of these two threads, try to open the same database.Just like the following:
    MyThread thread1 = new MyThread();
    MyThread thread2 = new MyThread();
    thread1.start();
    thread2.start();
    I guessed the database object in the hashtable would be returned in the second thread.Unfortunatly, I only got an exception which meant the database couldn't be opened twice.It looks like the second thread happened before the opened database object stored into the hashtable.
    I cannot figure out if my design is wrong or my test application is wrong.
    I really appriatiate your attentions!!!
    Lu

    um not sure i follow exactly but in your code add the word synchronise to it and this means only 1 tread can access it at any 1 time.
    So your could have a class which is a singleton so it only opens the dbase once and then all other access share your connection.
    so
    public class foo{
    foo INSTANCE = new foo();
    private foo(){} //private constructor
    then all your methods use foo's internal dbase connection. Am i making sense

  • How to connect sybase database in JDeveloper 11g using JConnect

    Hi
    How to connect sybase database in JDeveloper 11g using JConnect? Please help.

    User,
    It would help if you explained Sybase Jconnect instead of leaving us to google.
    At any rate, it appears you need to create a library definition in JDeveloper, add the appropriate JConnect JAR files to the library's classpath, and then add the library to your project.
    John

  • How to connect Oracle database in VC++.06

    How to connect Oracle database in VC++.06 please give me details

    on the Insert command button and add the following code to the button click event:
    try
    string results = "";
    OracleConnection con = new OracleConnection("DSN=Employee;uid=system;pwd=test");
    con.Open();
    .....................................................................

  • How to connect external database(Ex:SQL Server/Tivoli)  from ABAP Webdynpro

    Hi,
    Any one have idea how to connect external database like SQL Server/Tivoli to access tables from WebDynPro ABAP.
    Please point to me some links if you have
    Thanks
    Praveen

    Hi,
    Please check out this link -
    FETCH DATA FROM ORACLE DATABASE USING Web Dynpro
    Regards,
    Lekha.

  • How to connect oracle database from tuxedo

    Hi,
    How to connect oracle database from tuxedo.
    If any one can help me.
    Regards,

    it depends on configuration your going to choose, there are two ways--
    - Using X/Open standards, for this
    you have to make an entry of Resource manager in $TUXDIR/udataobj/RM file.
    Then in UBBConfig file in GROUPS section u have to set Openinfo.
    It also depend on which database you are going to use.
    In your service now you need to call tpopen() API from tpsvrinit() function.
    - Other possibility is, take an implicit connection using Pro*C or Pro*Cobol whatever platform you are using.
    EXEC SQL Connect ...

  • How to connect oracle database using jsf

    how to connect oracle database using javaserver faces with connection pooling

    Here is one way...
    http://jakarta.apache.org/commons/dbcp/

Maybe you are looking for

  • IPhone 3G still connecting to 2.4 GHz N network. How is that possible?

    I have an Extreme N that is set to 2.4 GHz N and extended with an Express N. Question is, how is it possible that my iphone 3G and touch are still connecting to WiFi? Should they not even see my N network since the are both G?

  • Can we call this a "Good support"?

    Hi. If you go to this link... http://www.msi.com.tw/program/support/download/dld/spt_dld_detail.php?UID=434&kind=1 As ya know 875P Neo download web page.. you 'll find an ADI sound driver.. for ICH5, dated : 2004/1/8, and its version -they said- 5.12

  • HT201730 Dock Ions Bring Up Applications Window In Finder

    Sometimes one or more icons in the Dock get wonky. When I click on certain icons the Finder window pops up with that Icon highlighted.  Right now it' Safari, but not always.  If I reboot it goes back to normal.  At least for a while...

  • NLS:6: Message not found, catalog LIBWSC_CAT

    Apache module calling tuxedo, error messages cannot be looked up. Just getting the NLS:6 message about failure to lookup messages. Environment variables are set printf ("NLSPATH %s, NLS_PATH %s",getenv("NLSPATH"),getenv("NLS_PATH")); NLSPATH /tuxedo/

  • Sound Blaster X-Fi Xtreme Gamer Fatal1ty - Computer randomly freezes accompanied by a single be

    I just bought my X-Fi Xtreme Gamer Fatalty Pro Series and my computer randomly freezes for up to 0 seconds and I hear a single beep from my internal computer speaker after which my system goes back to normal for about 5 to 0 minutes and then it repea