About forms and reports connections and toad tools

i have oracle database 10g
and i need to let the user to connect through forms and reports only
second question
i need to stop the toad tools to connect my database
what can i do?

Hi
Check for first one the below link will help:
http://docs.oracle.com/cd/B25521_01/doc/frs/forms/B14032_02/configure.htm
For second one:
how to restrict toad or any other tool to access database using a username.
Best regards,
Rafi.

Similar Messages

  • How to have RAC accept Forms and Reports connection to non specific node?

    Hi all,
    I have posted this in the Forms forum w/ no result, hoping someone here can help;
    Oracle Forms and Reports services, not the entire app server. Version 10.1.2.0.2, one server
    Oracle database, RAC Version 11.1.0.6.0, 3 nodes
    Instance=RMSTEST
    Nodes = RMSTEST1, RMSTEST2, RMSTEST3
    I can TNSPING RMSTEST w/o issue
    When I have userid in formsweb.cfg = user/pw@RMSTEST we are being prompted when logging into forms and reports to supply the password for the RMSTEST instance, enter the password and we are in.
    So we changed this in formsweb.cfg = user/pw@RMSTEST? (?= any of the nodes 1-3) and the password prompt is no longer being requested.
    What do I need to do to have Forms and Reports connect to the RMSTEST cluster directly for it to determine which node to connect to instead of having an unbalanced node(s)?
    Thanks,
    Steve

    This is what I have;
    RMSTEST =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.3.12.111)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.3.12.112)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.3.12.113)(PORT = 1521))
    (LOAD_BALANCE = yes)
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = RMSTEST)
    LISTENERS_RMSTEST =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.3.12.111)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.3.12.112)(PORT = 1521))
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.3.12.113)(PORT = 1521))
    RMSTEST3 =
    (DESCRIPTION =
         (ADDRESS = (PROTOCOL = TCP)(HOST = 10.3.12.113)(PORT = 1521))
         (CONNECT_DATA =
         (SERVER = DEDICATED)
         (SERVICE_NAME = RMSTEST)
         (INSTANCE_NAME = RMSTEST3)
    RMSTEST2 =
    (DESCRIPTION =
         (ADDRESS = (PROTOCOL = TCP)(HOST = 10.3.12.112)(PORT = 1521))
         (CONNECT_DATA =
         (SERVER = DEDICATED)
         (SERVICE_NAME = RMSTEST)
         (INSTANCE_NAME = RMSTEST2)
    RMSTEST1 =
    (DESCRIPTION =
         (ADDRESS = (PROTOCOL = TCP)(HOST = 10.3.12.111)(PORT = 1521))
         (CONNECT_DATA =
         (SERVER = DEDICATED)
         (SERVICE_NAME = RMSTEST)
         (INSTANCE_NAME = RMSTEST1)
    )

  • My iphone 4S only start whit cable plug in and then show battery very low (with red line end) then try to turn on but show searching in operator name command and not connecting and no work properly and when I plug out it turn off!!! what should I do?

    My iphone 4S only start whit cable plug in and then show battery very low (with red line end) then try to turn on but show searching in operator name command and not connecting and no work properly and when I plug out it turn off!!! what should I do?

    I'm afraid you'll have to get the phone serviced, dropping the phone must have damaged additional parts inside the phone.
    But Apple will not service the phone anymore, opening the phone and replacing the battery should only be done by authorized personal, not by users.
    You'll have to look for a 3rd party repair shop and see if they can fix this, sorry.

  • How is the album and folder connected and when I delete photos from the album it also deletes from the folder?

    How is the album and folder connected and when I delete photos from the album it also deletes from the folder?

    In what application? iPhoto? If so: what version?

  • I was using a chat site and cannot get to it agian. I can put in my username and press connect and then I get a message saying java unavailible or not installed

    I was using a chat  room and now I can't get back to it.  I can enter my username and press connect and then I get a message saying Java not availble or not installed

    Hi see if this has happened...
    Disabled Java in your Browser settings, not JavaScript.
    http://support.apple.com/kb/HT5241?viewlocale=en_US
    http://support.google.com/chrome/bin/answer.py?hl=en-GB&answer=142064
    http://support.mozilla.org/en-US/kb/How%20to%20turn%20off%20Java%20applets

  • Wifi connecting and disconnecting, connecting and disconnecting . . . .

    Hi
    My dad has just inherited the iPhone 3G from my brother, and is having trouble connecting to the home wifi.
    I also have the same phone, and have no problem connecting. before my brother gave the phone to my dad, he also had no problem connecting with the home netowork.
    What is most confusing is that the phone recognises the network, automatically connects to it, and within seconds, it disconnects. Then goes through the same process again, and again and again . . . . . . .connecting and disconnecting, connecting and disconnecting . . . . .. etc.
    It's like flicking a switch on and off - non stop.
    I am very technically inept, so would be very gratefull of some insight.
    Thanks

    I think you have the wrong forum. This is the ThinkCenter forum, for desktop systems, you have a Thinkpad?

  • Finding and Reporting Connection Leaks Web Application.

    So we have a web application that we know has connection leak(s). I have developed a test plan with JMeter to load test the app, but how do I find and report the connection leak, and what is the best tool to use for that? Basically my test plan runs through a use case scenario. I have added different types of listeners using jmeter to report different types of information that I get back.
    Also, is there a way to get the report back as a jsp, html page? Something kind of like the JUnit test reports do
    I would like the jmeter test to run, give the url, name of task-maybe, the time it took, success or fail, and current status - connected?
    Thanks in advance.
    orozcom

    What connections are those - sockets, database, ...? Actually, that doesn't probably matter. I'd use "grep" to find leaks of any kind. Every critical resource should be handled with try/finally:
        foo()
            WhateverConnection connection = null;
            try {
                connection = ConnectionFactory.openConnection();
                ...use it...;
            } finally {
                ConnectionFactory.close(connection); // Static function so that works with null
        }That goes for files, db connections, sockets, everything.
    Then any use of openConnection() that doesn't match that pattern is wrong and must be fixed. "grep" plus visual inspection should do it. They may be other pieces of code that are technically correct but look different; those are to be considered bugs and must be modified to conform to the exact same code template. All connection openings must look the same; the code audit easily misses bugs if each developer comes up with his own clever pattern.
    Finding leaks by testing will never find them all. Especially leaks that occur due to exceptions. try/finally is the right way to deal with those.
    Additionally, the connection factory could keep a list of open connections, and list them at request. I also like to log statistics periodically from the connection pool: how many connections have been opened, how many are open, how long min/max/average time a connection gets used, how much data are transferred, etc.

  • Help Needed!!!! Running Forms 6i, Reports 6i and WebDB on the same NT box...

    Hi All!
    I am in need of some help.
    I'm trying to set up the sample code for the Healthy Living WebSite.
    I need to have WebDB 2.2x, Forms 6i and Reports 6i all running on the same box. Does anyone know how to set this up....?
    Thanks,
    Matt
    [email protected]
    null

    Hi Matt,
    You didn't mention but do you also wish to install the database(8i) on the same machine ?
    I am also trying to install all these products(+8i and designer 6i) on the same box but I am concerned more about the min. resources needed before I get started.(I put up a question about it on the 6i Forum, but nobody has answered yet !)
    The correct install order should be Forms/Reports 6i then Forms/Reports 6i Server and then WebDb 2.2.
    Forms /reports server needs a http listener and installs en configures the WebDb listener for the job.(you are prompted for this during tho have the install process).This is handy if you are intending to use WebDb anyway. When you install Webdb it detects the already installed WebDb listener and does not reinstall.
    You do have the SYS password on the database you will use to stored the WDK and WebDb schema.
    About installing the demo.....
    I dont' think there are any special issues.I have never done it.
    If you are intending to install an 8i database on the same box there are some important things to consider with respect to the install order and what products in which Oracle home must be installed.
    1.Forms/Reports first in the default_oracle
    home.
    2.Then Oracle 8i in a 2nd oracle home call
    it ora81 for example.
    3.Then WebDb in the non oracle 8i home !!
    This is just a quick summary.
    If you run into any problems let me know
    Good Luck.
    Dave.

  • Oracle Development Suite ( Form Builder + Report Builer ) vs Toad

    Hi guys
    I a beginner in oracle world and I would like to ask >>>
    1- What is the difference between toad and Oracle development suite and which one is better?
    2- Could toad be used to create .fmb files ? What is the extension format of toad forms if they exist ?
    According to this thread >>>
    Diff between Oracle Forms and Toad
    Toad cannot be used to create input forms
    on the other hand , my friend told me that Toad can be used to fully control your database and development >>> It involves
    Objects Creation and management ( Tables -- Indexes ... etc)
    Form Creation
    Report Creation
    all in one application
    This thread posing is repeated three times !!!!!!!!!!!!!!!! I don't know how this happened !!!!!!!!!!!!!!!!!
    Sorry for inconvenience
    Edited by: user2393672 on Sep 10, 2011 4:47 PM

    1) toad is only for querying/doing dml against the database
    2) form is for having the screen; report for the output of the system. so toad is totally different from form & report
    Thanks & Best Regards
    HuaMin
    Please remember to always mark the reply if it's helpful or related to your issue!

  • Decompile applet and proxify all URL and socket connection and recompile

    Hi,
    Please anybody have idea for the below.
    I need to decomple the applet class file to .java file and need to change all URL and Socket connection to proxify all connections from applet. and recompile the sample applet to make ready to load in browser.
    Thi is to load the applet form the web server through one proxy server. In the proxy server side While loading the applet from web server that applet code need to be changed to modify the URL and connections used in that applet to change the further connection from applet through proxyserver.
    Compile and decompile is not a problem that i can use javac and javap respectively.
    But I want to know how to change all URL and connection in applet. is there any easy way to handle this with out changing the applet code.
    can Anybody help me.
    Thanks and Regards,
    Shiban.

    Not sure how you do that:
    Client <----[HTTPS]-----> Secure Gateway <------[HTTP]------->Web servers
    or
    Internet Explorer/Mozilla <----[HTTPS]-----> proxy <------[HTTP]-------> Google
    Is the above correct?
    If so than what are the proxy settings in IE/Moz, I can specify the proxy address in the
    browsers but not the proxy type (SSL).
    When you want to visit a page like google I gues you just type http://www.google.com in
    the browsers address bar. The browser will figure out how to connect to the proxy.
    Java has got the control panel in the general tabl there is a button "network settings...:"
    I have it to "use browser settings" and this works for me.
    All URL and URLConnections work but the sockets don't (maybe put in a bug report)
    for example games.yahoo.com -> card games -> bridge -> create table
    In the trace I can see:
    network: Connecting http://yog70.games.scd.yahoo.com/yog/y/b/us-t1.ldict with proxy=HTTP @ myproxy/00.00.00.00:80
    network: Connecting socket://yog70.games.scd.yahoo.com:11999 with proxy=DIRECT
    The second one fails because port 11999 is not open (what idiot uses an unassigned
    port for a profesional site is beyond me).
    http://www.iana.org/assignments/port-numbers
    #               11968-11999 Unassiged
    Even if the port was open on the proxy you'll notice with proxy=DIRECT that
    "use browser settings" does not work with socket (bug report??).
    Anyway my advice is to open the java console (windows control panel or javacpl.exe in
    the bin dir of java.home) and make sure it is set to "use browser settings"
    Then enable a full trace:
    To turn the full trace on (windows) you can start the java console, to be found here:
    C:\Program Files\Java\j2re1.4...\bin\jpicpl32.exe
    In the advanced tab you can fill in something for runtime parameters fill in this:
    -Djavaplugin.trace=true -Djavaplugin.trace.option=basic|net|security|ext|liveconnect
    if you cannot start the java console check here:
    C:\Documents and Settings\userName\Application Data\Sun\Java\Deployment\deployment.properties
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    add or change the following line:
    javaplugin.jre.params=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    for 1.5:
    deployment.javapi.jre.1.5.0.args=-Djavaplugin.trace\=true -Djavaplugin.trace.option\=basic|net|security|ext|liveconnect
    The trace is here:
    C:\Documents and Settings\your user\Application Data\Sun\Java\Deployment\log\plugin...log
    I think for linux this is somewhere in youruserdir/java (hidden directory)
    Print out the full trace of the exception:
    try{...}catch(Exception e){e.printStackTrace();}
    Then visit the games.yahoo and try to create a new table playing bridge.
    Inspect the trace and see if it works/why it doesn't work.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

  • HT4628 My ipad and iphone connect and recognize wifi signal, but my mac pro running 10.6.8 does not  recognize or list the wiifi signal as option, any ideas?

    Hi,
    In Austria, iphone and ipad "see" and connect to wifi signal no problem but mac pro in same room will not even allow me to choose the same wifi signal.  It seems almost blocked.  Havectried everything it seems by restarting, deleting preferred accoints, etc.  software is updated but running osx 10.6.8
    Thanks for any help!

    Try the basics first:
       Change your router channel number.  Most times this works & is all you have to do.
    Disconnect & reconnect your modem.  unplug it for about 10 seconds.  Plug it back in.  Do the same for Apple’s routers.  Wait for everything to reboot.
    System Preferences>Network
    Click the Assist Me button.
    In the next window that pops up, click the Diagnostic button & do the necessary.
    Research Knowledge Base for network problems that pertain to the OS that is currently installed on your computer.   See these basic networking KB Articles:  http://support.apple.com/kb/HT1401 AirPort troubleshooting guide
    http://support.apple.com/kb/HT2712 Using network locations in Mac OS X
    Manually provided DNS server addresses are higher priority than DHCP's
    http://support.apple.com/kb/HT1714 Solutions for connecting to the Internet, setting up a small network, and troubleshooting
    ============================
    What to do when you can't connect to the Internet
    Also, run the Airport Utility app which is located inside the Utilities folder.
    =====================
    If using a  Linksys router, contact LinkSys Customer Support and/or post in their forums.
    If using Apple's Airport, please re-post over in one of the AirPort Forums.

  • Hi i have i phone 4s and ios 7.0.2 is updated and problem is wifi and last 3 days i have  problem anbout wifi and im connected  and its automatic turn off and then on ...... will you help me

    hi i have i phone 4s and ios 7.0.2 is updated and problem is wifi and last 3 days i have  problem about wifi and im connected wifi and its automatic turn off and then on ...... will you help me

    Apple guys are deleting posts. I have found my posts have been deleted. Apple should MUST let us downgrade at least to previous release from current which was working fine.

  • Blocking and reporting contacts and non-contacts

    Since switching to skype from MSN messenger i have only really had problems. 
    I have edited my settings so that I have privacy sorted and only my contacts can message me, but i am STILL having messages from a non-contact and have done since the 11th march. I cannot block them because they are not a contact and I cannot report them because they have not added me as a friend. 
    I am constantly barraged by this person and not in the best of tastes. Sort it out Skype! This is not acceptible!! 

    can nobody give me any ideas here? Come on you have someone using your service to make bomb threats...You are the only ones who can pull his information and report him properly.

  • IPod Classic won't sync to new computer and repeatedly connects and disconnects

    i have recently been issued a new laptop (lenovo thinkpad X230i, windows 7) and want to sync my existing iPod Classic to it. i set up iTunes (11) without any problems, however my ipod t appear in My Computer or in my iTunes library.
    I've tried everything suggested in 'iPod troubleshooting' but nothing seems to work.
    also when i plugged it into my old computer, to which my ipod is currently synced, an error message appeared saying that 'a file could not be found', the iPod also repeatedly connects and disconnects.
    if anyone has had the same problem or has some advice it would be greatly appreciated!
    -mia

    Sorted it now.

  • When I update a second row in my form I lose connection and chrash

    Hello everyone out there,
    I have a problem, and it is becoming a big problem.
    When I run my form on the web, using the 6iserver, I can update a row and commit it without any problems. If however I update another row and commit this, I get a couple of FRM-40733 PLSQL error BUILT IN DBMS_ERROR_TEXT failed Then an unhandled exception and finally I get ORA-03114 Connection lost. This is reproducable every time and seems to be occurring in al forms I generate new since a week or two! I don4t know of any changes of the enviremont on the development side.
    The error doesn4t occur on when running the form client server!
    Oracle database version 8.1.7.3.0
    9ias version 1.0.2.2.2
    We use Headstart version 6.5
    I truly hope someone knows more about this problem!
    Martijn Veldhoen

    OK - we still need to know what line this is happening at.
    As a minimum, you can put in a few message lines message('Got to line10'); etc etc So you know the line which is
    causing the problem
    Once you estanlish this - try and remove all other code and items on the Forms so that it still reproduces - this way you
    have the smallest (and simplest) reproducable test case.
    Regards
    Grant

Maybe you are looking for