Oracle.jsp.dbutil ? plz help

hey i would like to use the ConnCacheBean in my jsp, when i try
to import import = "oracle.jsp.dbutil.*" i get: cannot acces
directory oracle\jsp\dbutil verify that this directory is
reachable from classpath and/or sourcecode.
I added all the libs to the classpath, i can see the JSP RUNTIME
Lib is included ( points to ojsp.jar ).
Do i need to download and add something else to the CLASSPATH??
Any help is welcomde!

OK found it!
It is in the ojsputil.jar file that comes with the latest oracle
jsp engine, i added the jar to classpath and BINGO. Funny it
isn't there by default!
mvg

Similar Messages

  • Where do I get the oracle.jsp.dbutil library

    Where do I get the oracle.jsp.dbutil library.
    Thanks

    Bernhard (guest) wrote:
    : thanx for the advice. I think the links you posted will be
    : helpful in the future.
    : I found the source of my troubles on the SUSE homepage (ver 6.1
    : does not use glibc 2.1).
    : So now I needto find out how to upgrade to glibc 2.1
    Upgrading to SuSe 6.2 would probably do the trick. Upgrade is
    really smooth, and will take approximately 1h. I was able
    to run oracle 8i client install on my PC and it works (32M,
    160MHZ pentium) quite satisfactory. On my server machine
    (450MHZ, 128MB) I'm running RH 6.0 and it also works fine.
    On SuSe, I removed the "Kaffee" JVM installed by default and
    downloaded JRE 1.1.7 from www.blackdown.org. I haven't tried
    the "kaffe" engine but Oracle documentation requires blackdown.
    Michael, if you read this, have you tried installing with the
    default JVM engine delivered with SuSe 6.2?
    As long as your operating system name doesn't start with "MS"
    you should be OK.
    : But first I will buy me a book about LINUX administration and
    : hope to find the time reading it.
    : Colin. (guest) wrote:
    : : Bernhard (guest) wrote
    : : : But anyway: This is my first try to install anything on
    : LINUX.
    : : : If anybody has some good advise for a rookie re.
    : installation
    : : : of ORACLE SERVER 8.15 on Linux I would be very thankful.
    : : Try these links, there's lots of good tips to be found (and
    : : thanks to the authors of these sites).
    : : => A SuSE developers home page for Oracle.
    : : www.suse.de/~mha/oracle/
    : : => Install Guide for Redhat.
    : : jordan.fortwayne.com/oracle/
    : : => Oracle tips & scripts
    : : www.akadia.com/html/dod-frame.html
    : : amoeba.sagemediagroup.com/oracle_linux_howto/
    : : www.orafaq.org/
    : : www.oracle-dba.com/
    : : www.kevinloney.com/
    : : www.bf.rmit.edu.au/~orafaq/contents.html
    : : www.lazydba.com/
    : : www.dbasupport.com/
    : : www.dbspecialists.com/
    : : altern.org/place4oracle/oracle_contents.html
    : : www.dbdomain.com
    null

  • Oracle.jsp.dbutil

    I have tried to find oracle.jsp.dbutil but I have not found it any where on the Oracle site. Is this included somewhere in JDeveloper 9i? If not where can I download it?

    OK found it!
    It is in the ojsputil.jar file that comes with the latest oracle
    jsp engine, i added the jar to classpath and BINGO. Funny it
    isn't there by default!
    mvg

  • How do i pass parameters from j2me to jsp?plz help

    hi everyone...
    i m doing my final year project
    can anyone plz tell me how to pass parameters like user name,password,etc.. from a j2me midlet to a jsp page running in tomcat server?
    i tried passing parameters in http connection through url as:
    String url="http://localhost:8080/example/test.jsp?name=abc";
    i need this info urgently as i am not able to proceed with my project... plz help
    any suggestions or references would be appreciated...
    thank u...
    regards,
    Rinzi

    JHD
    hi.
    you have written in URL i sperfectly right but if this is also not complete one.
    i.e url = "http://localhost:8080/dir/xxx.jsp?userName=jasmit&password=vala"
    now when u establishing connection i.e
    HttpConnection con = (HttpConnection) Connector.open(url,3);
    this will work as an declaration but if u want to send that parameter for that you have to get response from the server and that time only original connection is going to establish i.e
    when u r writting
    int responseCode = con.getResponseCode();
    if(reponseCode == 200)
    then ur parameter were passed to jsp page.
    in jsp page u have to get parameter using request class
    String userName = request.getParameter("userName").toString();
    String password = request.getParameter("password").toString();
    i hope this might solve ur problem.
    Regards,
    Jasmit vala
    [email protected]

  • Having JSP problem plz help me

    i make small proj with small DB
    i have java bean to setter and getter of the fields in the table
    so i have this Exception
    Generated servlet error:
    TabelBean cannot be resolved or is not a type
    i search for error but i didn't find it >>>>plz help me

    Did you import the class into the JSP?
    <%@ page import="myPackage.MyClass" %>

  • GetHardwareAddress() and JSP.  Plz help

    I'm writing a JSP page that must get The MAC Address of the client.
    I used the following code:
    InetAddress addresses = InetAddress.getByName("192.168.1.100");
    NetworkInterface ni = NetworkInterface.getByInetAddress(addresses);
    byte[] mac = ni.getHardwareAddress();
    if (mac != null) {
    for (int i = 0; i < mac.length; i++)
    outz.write(mac);
    outz.write puts the result in an HTML page
    the result i got was: !k&?" instead of the typical xx-xx-xx-xx-xx
    I figured out that maybe the result isnt being written in hex so I added:
    {code}{code}
    InetAddress addresses = InetAddress.getByName("192.168.1.100");
    NetworkInterface ni = NetworkInterface.getByInetAddress(addresses);
    byte[] mac = ni.getHardwareAddress();
    if (mac != null) {
    for (int i = 0; i < mac.length; i++)
    outz.write("%02X%s", mac[i], (i < mac.length - 1) ? "-" : "");
    the error I got was:
    An error occurred at line: 19 in the jsp file: /jsp/savename.jsp
    The method format(String, byte, String) is undefined for the type FileWriter
    16: byte[] mac = ni.getHardwareAddress();
    17: if (mac != null) {
    18: for (int i = 0; i < mac.length; i++) {
    19: outz.write("%02X%s", mac[i], (i < mac.length - 1) ? "-" : "");
    20: }
    21: }
    22:
    VERY IMPORTANT NOTE: this code works in normal java file, but in JSP it makes this error.
    Plz can anyone help me figure what's the error? and how to solve it?
    can anyone provide a working way for this, using these methods? and thx very much.

    look bidox this is the query
    String sql= "SELECT * FROM WOH.P_DEMGRAPHICS " +
    "WHERE P_ID LIKE \'%" + query+ "%\'";
    and P_DEMGRAPHICS is tabel inside my WOH database
    and am searching using the Primary key
    i uploaded screen shot to understand
    http://rapidshare.com/files/102091314/tabel.JPG.html
    i want to retrive raws using P_ID ie input P1 and it will return the rows
    Now it should work! what you doing wrong is the database just use the table ignoring the WOH; the reason is, if you logged in the workspace using your username and password, automatically oracle will recordnise the table with that user login assigned.
    Your code now looks like this;
    String sql= "SELECT * FROM P_DEMGRAPHICS " +
    "WHERE P_ID LIKE \'%" + query+ "%\'";

  • Prob: inserting Long value withjh JSP. PLZ Help

    i am doing a project in JSP and Oracle and i am very new to JSp
    i am passing a 13 digit number from a main page at the back end page
    text box name is "txtIsbn"
    i have to store that value to oracle
      pst=con.prepareStatement("insert into ISBNTABLE values(?,?,?,?)");
      pst.setLong(1,Long.parseLong(request.getParameter("txtisbn")));and my database table has the field
    isbn number(13)
    while operation iam getting this exception
    exception
    org.apache.jasper.JasperException: Exception in JSP: /checkBookAcc.jsp:80
    77: if(!isbnPresent)
    78:  {
    79:   pst=con.prepareStatement("insert into ISBNTABLE values(?,?,?,?)");
    80:   pst.setLong(1,Long.parseLong(request.getParameter("txtisbn")));
    81:   pst.setString(2,request.getParameter("txtBookTitle"));
    82:   pst.setString(3,request.getParameter("txtAuthor"));
    83:   pst.setString(4,request.getParameter("txtPublisher"));
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:504)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:393)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.NumberFormatException: null
         java.lang.Long.parseLong(Unknown Source)
         java.lang.Long.parseLong(Unknown Source)
         org.apache.jsp.checkBookAcc_jsp._jspService(org.apache.jsp.checkBookAcc_jsp:130)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

    i checked that again after your reply in my code text box name was "txtisbn" but in the post i have written "txtIsbn"
    Well i havechanged my whole thing doing all my experiments still i am getting trouble plese have a look
    my text box name is txtIsbn now
    my JSP page
    temp=Long.parseLong(request.getParameter("txtIsbn"));
    temp1=request.getParameter("txtBookTitle");
    temp2=request.getParameter("txtAuthor");
    temp3=request.getParameter("txtPublisher");
    out.println("Value of isbn :"+temp+"  Title :"+temp1);
    // above statement is printing  values if i comment try
    while(rst.next())
      if(rst.getLong("ISBN")==temp)
        isbnPresent=true;
        break;
    //if "yes" no need to store the Isbn details if "No" add details
    try{
    if(!isbnPresent)
      pst=con.prepareStatement("insert into ISBNTABLE values(?,?,?,?)");
      pst.setLong(1,1);
      pst.setString(2,temp1);
      pst.setString(3,temp2);
      pst.setString(4,temp3);
      pst.executeUpdate();
    catch (SQLException sqle)
    out.println("Exception occured  :"+sqle);
    }if i dont comment the try the Exceptions comes like that
    org.apache.jasper.JasperException: Exception in JSP: /chkIsbn.jsp:62
    59: if(!isbnPresent)
    60:  {
    61:   pst=con.prepareStatement("insert into ISBNTABLE values(?,?,?,?)");
    62:   pst.setLong(1,1);
    63:   pst.setString(2,temp1);
    64:   pst.setString(3,temp2);
    65:   pst.setString(4,temp3);
    Stacktrace:
         org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:504)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:375)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:703)
         org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:670)
         org.apache.jsp.checkBookAcc_jsp._jspService(org.apache.jsp.checkBookAcc_jsp:106)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    javax.servlet.ServletException: General error
         org.apache.jasper.runtime.PageContextImpl.doHandlePageException(PageContextImpl.java:858)
         org.apache.jasper.runtime.PageContextImpl.handlePageException(PageContextImpl.java:791)
         org.apache.jsp.chkIsbn_jsp._jspService(org.apache.jsp.chkIsbn_jsp:130)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:703)
         org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:670)
         org.apache.jsp.checkBookAcc_jsp._jspService(org.apache.jsp.checkBookAcc_jsp:106)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.sql.SQLException: General error
         sun.jdbc.odbc.JdbcOdbc.createSQLException(Unknown Source)
         sun.jdbc.odbc.JdbcOdbc.standardError(Unknown Source)
         sun.jdbc.odbc.JdbcOdbc.SQLBindInParameterBigint(Unknown Source)
         sun.jdbc.odbc.JdbcOdbcPreparedStatement.setLong(Unknown Source)
         org.apache.jsp.chkIsbn_jsp._jspService(org.apache.jsp.chkIsbn_jsp:106)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.runtime.PageContextImpl.doForward(PageContextImpl.java:703)
         org.apache.jasper.runtime.PageContextImpl.forward(PageContextImpl.java:670)
         org.apache.jsp.checkBookAcc_jsp._jspService(org.apache.jsp.checkBookAcc_jsp:106)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:97)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:332)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

  • Total newbie for jsp..plz help

    frendz...me a total newbie to jsp.havin some problem in it.i have already installed jdk,jwsdp2.0 wif its tomcat container.Already set the path for both ..such as JAVA_HOME=E:\Program Files\Java\jdk1.5.0_06
    TOMCAT_HOME=E:\tomcat50-jwsdp
    and could execute the sample jsp's perfectly.But having problem wif my jsp tutorials. such as when i wrote this counter codes in notepad..
    <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" errorPage="" %>
    <html>
    <head>
    <tittle>Jsp Declaration</tittle>
    </head>
    <body>
    <h1>Declarations</h1>
    <%! int j=0;%>
    <h2>Counter</h2>
    <p>This page has been hit <span> <% ++j %> </span> times since it was first loaded.</p>
    </body>
    </html>
    and i paste it in webapps in tomcat folder.
    What should i do to view the jsp file?isaved as counter.jsp.if i right click and view it in IE/firefox it only shows the source code.is there any mistake in the codes?or i did i do anything wrong?how shall i compile these files?help me aout wif my basics please.thanks bro's..

    "I pasted it in webapps in tomcat folder".
    Webapplications need to go in their own subdirectory inside the webapps directory. Say you want a webapp 'test', then you would store your JSP as
    TOMCAT_DIR\webapps\test\counter.jsp
    Now you can open this JSP in your browser. Assuming Tomcat is running on the localhost and the default port 8080, the url would be:
    http://localhost:8080/test/counter.jsp
    If that doesn't work something is horribly misconfigured.

  • How to open a JSP page from a form ??? plz help

    hi ..
    i want to know how to open a jsp page from a oracle apps form using a button .
    the requirement is that whenever we click on the button created on the form, it opens a jsp page.
    plz help me ..its urgent !! :-(

    In portlet project, to navigate between pages, you should not use the URL property to link to a page. Instead, portlets use navigation via action handling. You use the Page Navigation editor to set up links to pages; that is, the navigation editor sets the action property.
    Here is an example to hyperlink ans button to open a new page:
    # From within the IDE, create a new portlet project. This action creates the project and one page, PortletPage1.jsp.
    # Create a second portlet page, called PortletPage2.jsp, for the project.
    # Drop a Hyperlink component onto the first portlet page, PortletPage1. (You can drop the Hyperlink on the page in the Design window or on the PortletPage1 node in the Outline window.) Change the Hyperlink's text property to Next Page.
    # Drop a Button component (found in the Basic section of the Palette) onto the second portlet page, PortletPage2.
    # Open the Page Navigation Editor. It displays the two pages (PortletPage1.jsp and PortletPage2.jsp) of the application.
    # Click the PortletPage1.jsp icon in the Navigation window to expand it, and then drag a connector from hyperlink1 to PortletPage2.jsp. Change the name of the connector from case1 to Page2.
    # Click the PortletPage2.jsp icon in the Navigation window to expand it, and then drag a connector from button1 to PortletPage1.jsp. Change the name of the connector from case1 to Page1.
    # Run and deploy the portlet. The browser displays PortletPage1 and you should see the Next Page hyperlink. When you click the Next Page hyperlink, the Apache Pluto Portal server displays PortletPage2. Click the Page2 button to return to PortletPage1.
    Sherry
    Creator Team

  • PLZ HELP ME PROBLEM :- JSP Pages is slow

    HI, i am using oracle 10g application server to deploy my jsp pages.
    When i am running the jsp page ie. default.jsp which consist of three combo box which are dependent on each other.
    Database :- oracle 10g.
    Logic : I am retrieving all the data from the database in to a nested structure and using that nested structure to fill up in the combo box,
    Problem : when i m refreshing or opening the page , it takes a lot of time to open. well the data are also not so much huge that it take some time. ]
    Plz help me

    Why have you declared your own interface Tag?
    The server knows nothing about your custom classes.
    You should be implementing the javax.servlet.jsp.tagext.Tag Interface.
    Actually the easier way is for your tag to extend SimpleTag, which implements the basic interface for you, leaving you to override the bit you want to.
    Check out the API: http://java.sun.com/j2ee/1.4/docs/api/javax/servlet/jsp/tagext/package-summary.html

  • Help on "java.lang.NoClassDefFoundError: oracle/jsp/runtimev2/JspReportUtil"

    Hi all,
    I encounted the following exception on a deployed project to ias 9.0.2:
    500 Internal Server Error
    java.lang.NoClassDefFoundError: oracle/jsp/runtimev2/JspReportUtil     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:333)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java(Compiled Code))     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java(Compiled Code))     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java(Compiled Code))     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.include(ServletRequestDispatcher.java:108)     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.EvermindPageContext.handlePageThrowable(EvermindPageContext.java:596)     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.EvermindPageContext.handlePageException(EvermindPageContext.java:567)     at data.lookjjview._jspService(_lookjjview.java(Compiled Code))     at com.orionserver[Oracle9iAS (9.0.2.0.0) Containers for J2EE].http.OrionHttpJspPage.service(OrionHttpJspPage.java:56)     at oracle.jsp.runtimev2.JspPageTable.service(JspPageTable.java:302)     at oracle.jsp.runtimev2.JspServlet.internalService(JspServlet.java:407)     at oracle.jsp.runtimev2.JspServlet.service(JspServlet.java:330)     at javax.servlet.http.HttpServlet.service(HttpServlet.java:336)     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ResourceFilterChain.doFilter(ResourceFilterChain.java(Compiled Code))     at oracle.security.jazn.oc4j.JAZNFilter.doFilter(JAZNFilter.java(Compiled Code))     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.invoke(ServletRequestDispatcher.java(Compiled Code))     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.ServletRequestDispatcher.forwardInternal(ServletRequestDispatcher.java(Compiled Code))     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.HttpRequestHandler.processRequest(HttpRequestHandler.java(Compiled Code))     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].server.http.AJPRequestHandler.run(AJPRequestHandler.java:151)     at com.evermind[Oracle9iAS (9.0.2.0.0) Containers for J2EE].util.ThreadPoolThread.run(ThreadPoolThread.java(Compiled Code))
    I found there is leak of memory resource on the Oracle RDBMS host while this problem occurs,the database host has only 512Mb RAM.And I once configred the database to worked on Shared Mode,in this case the database has less chance of memory leak,but the above exception occurs more often.So I have to change the database to work back on Dedicate Mode!It's hard to find any tips on my Exception as mentioned above.
    And I want to know the working principle of servlet on iAS.When invoke a servlet,will the servlet be cached on Memory from the first request,or it will be clear up and re-inload until next request?I just wonder if the iAS server will run out of memory,because I noticed there is a memory configure option in "jser.properties" file.And the exception I encoutered seems to occur at a critical point.

    Thanks but that did help since they are talking about
    JDK1.3. I downloaded J2SDK-Beta 3 it says that you
    don't need to set a class path variable. You need to be careful about how you interpret this statement. The rule is, if your system doesn't have a classpath set, you'll get a default of the current directory (.). If your system does have a classpath setting, then the setting will be used.
    Just because you didn't set your classpath doesn't mean someone or some other application didn't. Make sure that your system doesn't have a classpath setting. If it does, you may need to add the current directory (.) to it.

  • Plz Help me regarding oracle  event alerts..... Its urgent !!

    Hi all,
    How to create oracle event alert when particular column is update. plz help me.... Acutually i need email alert when ever list price for an item column in pricing table get updated+... plz. Its urgent.

    In that thread,... gareth.roberts say to modify the trigger definition to the column. Actually i am new to oracle >alert. How do i get that trigger definition and from where i have to get. and how to modify the trigger definition . >
    plz...Need not to say like that, I am just trying to help you. I believe if you are new try to read and understand the documents and process. Please start with Oracle Alert User's Guide to create a alert and send notification.
    I do not have any ready made scenario, I can refer you the documents to do the same,
    [How to Create a Basic Trigger|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=119667.1]
    [RDBPROD: How to Create an Update Trigger Which Depends on Any Other Field|https://metalink2.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=68037.1]
    To view the Trigger Information you can use TOAD and modify the same as per your need.
    Thanks,
    Anchorage :)

  • Tabs in JSP- Plz help-Urgent

    I want to have 3 tabs say Tab1, tab2, tab3 in my page and based on which tab is clicked , I have to display the contents of a table.
    Ex: if Tab1 is clicked, i have to display contents of Table1 and tab2,table2 and so ...
    Plz help with how to link the click on the tab to calling of the JSP file which retrives and displays the data???....
    Its urgent ;plz help

    dnamiot ,
    I'm also looking for similar funcitonality.
    the URL mentioned in your reply is not free ware. you know, it is tough to convince management to buy a software for the project even it is $1.
    So if you know any taglibrary which is free ware , which generates maximum of 4 tabs and dynamic in nature, please let me know.
    Thanks in advance
    tekbond

  • Plz help to to transfer excel or acess data to Oracle 10g database

    Plz help me to transfer excel or acess data to Oracle 10g database.
    I have excel and acess sheet data here i wanna transfer it to oracle database. Plz guide me how to this
    Message was edited by:
    user582212

    There are several ways, such as ODBC or migration workbench, which is also mentioned in the current article on sqldeveloper on OTN, here's the link. If you use this forum's search function, you should find several threads regarding this topic.
    C.
    Message was edited by:
    cd

  • Plz help me work out in jsp

    hai to all
    I am new to Jsp,plz help me how to define and declare the Function in Jsp, if i declare and define the function and how i call the function within a jsp.
    i worked the Jsp in the Tomcat 5.5 Environment it shows me some error.
    The sample coding which i have worked out is
    <html>
    <title> Sample code for calling a jsp </title>
    <head> </head>
    <body>
    <%!
    public void function()
    out.println("hai");
    %>
    <h1> hello Good Morning </h1>
    <%
    function();
    %>
    The Error which are shown in the Tomcat Environment is
    org.apache.jasper.JasperException: Unable to compile class for JSP
    An error occurred at line: 15 in the jsp file: /call.jsp
    Generated servlet error:
    out cannot be resolved
    Regards
    udhaya.c

    The implicit objects are avbl only inside scriptlets <%........%> and not inside your own custom methods (which you shouldnt anyways be having, in first place. However its ok since you have just about begun with jsps).
    To use the implicit 'out' object within custom methods, you will have to pass them as parameters when you call the methods from within your scriptlets.
    Try this
       <% @ page import="java.io.*"%>
      <html>
    <title> Sample code for calling a jsp </title>
    <head> </head>
    <body>
    <%!
    public void function(PrintWriter out) throws IOException
    out.println("hai");
    %>
    <h1> hello Good Morning </h1>
    <%
    function(out);
    %>cheers,
    ram.

Maybe you are looking for

  • Slate 500 Windows install problem

    I format my HP Slate 500 64 GB SSD.  Now i select Disk 0 Partition 2 ( 59.2 GB free space. Primary) but is not start and this message in the screen   " setup was unable to create a new system partition or locate an existing system partition. See the

  • Query to find out the list of tables used in a package

    hello, can anyone please help me out with a query; i want to find out the list of tables used by a particular package. thanks, orton

  • Mac Mini will not boot up - Poss due to Mavericks?

    I've had a MacMini since Nov 11 and it's never caused me any problems until lat night. I updated to Mavericks on Fri afternoon and everything worked well until last night (Saturday). On start up the screen had the Apple logo, a small revolving patter

  • Can't Print in iPhoto '08!

    I have read another topic on this and can't understand a bit. I am looking for someone who has fixed this problem to help WALK me thru it. I am SO terrified of losing pictures that I'm at a loss right now. I am running Mac OS X (10.5.1) and using an

  • Help installing acrobat 8

    I had acrobat writer 5.0 and purchased acrobat 8 standard. So I uninstalled 5.0, rebooted, and tried to install 8.0, but got this message: [[Setup has detected that you already have a more functional product installed. Setup will now terminate.]] Ple