Please help ... evaluating jsp:expression in attributes

Dear All,
I have searched the forum and found a few posts expressing a similar problem. However none seemed to divulge any solution.
<option value="<jsp:expression> signals[count] </jsp:expression>"><jsp:expression> signals[count] </jsp:expression></option>In the code above the second expression evaluates fine but the first causes problems. Its the angle brackets of the jsp:expression:
The value of attribute "value" must not contain the '<' characterI have also tried <%= %> and %= % as has been suggested in previous posts
<%= => fails also because of the angle brackets
%= % is set to the value, instead of the evaluated expression.
Am Completely Stumped. Surely there must be a way to do this!?!
Thanks is advance

Hi Steve, thanks for your help I have resolved the problem. Somewhere in the J2EE Tutorial I found a snippet of code that talked about using CDATA tags.
My working code now looks like this:
<td><select name="signal_list" multiple="multiple">
    <jsp:useBean id="signalslist" class="acreweb.SignalsList" scope="session" />
        <jsp:scriptlet>
            int count = 0;
            System.out.println("useBean");
            String[] signals = signalslist.getSignals();
            while(count < signals.length)
     //Display signal names in select box
     System.out.println(signals[count]);
     </jsp:scriptlet>
          <![CDATA[<option value=']]><jsp:expression>new String(signals[count])</jsp:expression><![CDATA[' />]]><jsp:expression> signals[count] </jsp:expression>
     <jsp:scriptlet>     
     count++;
           </jsp:scriptlet>
    </select>
</td>Sorry about formatting am being dragged to the pub, impatient work colleagues

Similar Messages

  • JSP 1.2: jsp expression in attribute value doesn't parse.

    Hi, I'm trying to use a jsp:expression in an html attribute value in JSP 1.2 but jasper doesn't seem to be able to parse it correctly. I'm using the XML syntax in my jsp, the relevant snippets are as follows:
    <jsp:scriptlet>
    String versionedPath = "/mysite/2.1/images";
    </jsp:scriptlet>
    <img src="%= versionedPath %/foo.jpg" />
    The JSP documentation claims that this will work but I'm beginning to think this syntax won't work when using JSP's XML syntax. I already know that the following won't work:
    <img src="<jsp:expression> versionedPath </jsp:expression>/foo.jpg" />
    as it did in JSP 1.1 because it's not well-formed xml.
    Is it even possible to use jsp expressions in attribute values when using JSP 1.2's XML syntax? If so, please enlighten me, and if not, well, that seems pretty broken to me.
    TIA...
    --Stuart

    you should use this:
    <img src=<%= versionedPath %>/foo.jpg >

  • PLEASE HELP jdbc/jsp error

    Hello
    I have a jsp file myfile.jsp?id=...
    This file was working fine before. I was ready from my testing and i needed to clean my access database's data so i deleted some records manually and copied database again onto live through ftp.
    After this step, myfile.jsp?id=.. was giving me errors only on certain ids for eg. it worked fine myfile.jsp?id=3, but did not work fine for myfile.jsp?id=6 giving this error:
    The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:372)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    root cause
    java.lang.NullPointerException
         org.apache.jsp.viewprofile_jsp._jspService(viewprofile_jsp.java:320)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
    I tried an id which does not exist in database and it worked fine ie. jsp page was executing the html message that i composed for unexisting ids.
    I also checked the records' data and these all look fine and appropriately filled.
    PLEASE HELP - any ideas?
    Thanks lodes
    sabcarina

    Somewhere in viewprofile.jsp, you are accessing a variable that is null.

  • PLease Help !Jsp Session expired when open Window with "_blank" atributte

    PLease please Help me!
    Hi ,
    I have a problem
    First , all my pages when load evaluate if session exists .
    If not exists session
    this page redirect other page (page_expired.jsp)
    this works correctly ... but
    when page01.jsp open page02.jsp from :
    <form action='page02.jsp' target ="_self"> - >works correctly (load on the same page ..)
    but when :
    <form action='page02.jsp' target ="_blank"> -> this redirect page_expired.jsp
    why this ??
    Sometimes work and Sometimes not work...
    but now it does not work
    Excuse my english not is goog...
    Greetings From Lima - Peru

    Hi
    This problem ocurred when testing on my server of testing(this is in my office) ,
    but when test in the server machine of my house this work!!! great! ,
    not appear session expired.!!
    this theme of configuration ??
    if is ths ?
    what configure ?
    Please Help Me .
    I am using EASERVER 5.2 with JSP
    Bye! Greetings From Lima Per�

  • Please help with jsp and database!!

    Hello,
    i first created a jsp page and printed out the parameters of a user's username when they logged in. example, "Welcome user" and it worked fine...
    i inserted a database into my site that validates the username and password, and ever since i did that in dreamweaver, when a user logs in sucessfully, it returns the jsp page like its supposed to, only that it says "Welcome null" instead of "Welcome John." pretty strange, huh!? can anyone please help? thanks!
    here is the important part of the code to Login.jsp, and LoginSuccess.jsp: <%@ page contentType="text/html; charset=iso-8859-1" language="java" import="java.sql.*" %>
    <%@ include file="Connections/Login.jsp" %>
    <%
    // *** Validate request to log in to this site.
    String MM_LoginAction = request.getRequestURI();
    if (request.getQueryString() != null && request.getQueryString().length() > 0) MM_LoginAction += "?" + request.getQueryString();
    String MM_valUsername=request.getParameter("Username");
    if (MM_valUsername != null) {
      String MM_fldUserAuthorization="";
      String MM_redirectLoginSuccess="LoginSuccess.jsp";
      String MM_redirectLoginFailed="LoginFailure.jsp";
      String MM_redirectLogin=MM_redirectLoginFailed;
      Driver MM_driverUser = (Driver)Class.forName(MM_Login_DRIVER).newInstance();
      Connection MM_connUser = DriverManager.getConnection(MM_Login_STRING,MM_Login_USERNAME,MM_Login_PASSWORD);
      String MM_pSQL = "SELECT UserName, Password";
      if (!MM_fldUserAuthorization.equals("")) MM_pSQL += "," + MM_fldUserAuthorization;
      MM_pSQL += " FROM MemberInformation WHERE UserName=\'" + MM_valUsername.replace('\'', ' ') + "\' AND Password=\'" + request.getParameter("Password").toString().replace('\'', ' ') + "\'";
      PreparedStatement MM_statementUser = MM_connUser.prepareStatement(MM_pSQL);
      ResultSet MM_rsUser = MM_statementUser.executeQuery();
      boolean MM_rsUser_isNotEmpty = MM_rsUser.next();
      if (MM_rsUser_isNotEmpty) {
        // username and password match - this is a valid user
        session.putValue("MM_Username", MM_valUsername);
        if (!MM_fldUserAuthorization.equals("")) {
          session.putValue("MM_UserAuthorization", MM_rsUser.getString(MM_fldUserAuthorization).trim());
        } else {
          session.putValue("MM_UserAuthorization", "");
        if ((request.getParameter("accessdenied") != null) && false) {
          MM_redirectLoginSuccess = request.getParameter("accessdenied");
        MM_redirectLogin=MM_redirectLoginSuccess;
      MM_rsUser.close();
      MM_connUser.close();
      response.sendRedirect(response.encodeRedirectURL(MM_redirectLogin));
      return;
    %>
          <form action="<%=MM_LoginAction%>" method="get" name="Login" id="Login">
            <table width="55%" border="0">
              <tr>
                <td width="41%">Username </td>
                <td width="59%"><input name="Username" type="text" id="Username" value="" size="25" maxlength="10"></td>
              </tr>
              <tr>
                <td>Password </td>
                <td><input name="Password" type="password" id="Password" value="" size="25" maxlength="10"></td>
              </tr>
              <tr>
                <td> </td>
                <td><input type="submit" name="Submit" value="Submit"></td>
              </tr>
            </table>
          </form>And LoginSuccess.jsp where i want it to print out the "Welcome username
             <%String Name=request.getParameter("Username");
         out.println ("Welcome ");
         out.println (Name); %>

    <%@ page contentType="text/html; charset=iso-8859-1"
    language="java" import="java.sql.*" %>
    <%@ include file="Connections/Login.jsp" %>
    <%
    // *** Validate request to log in to this site.
    String MM_LoginAction = request.getRequestURI();
    if (request.getQueryString() != null &&
    request.getQueryString().length() > 0) MM_LoginAction
    += "?" + request.getQueryString();
    String
    MM_valUsername=request.getParameter("Username");
    if (MM_valUsername != null) {
    String MM_fldUserAuthorization="";
    String MM_redirectLoginSuccess="LoginSuccess.jsp";
    String MM_redirectLoginFailed="LoginFailure.jsp";
    String MM_redirectLogin=MM_redirectLoginFailed;
    Driver MM_driverUser =
    =
    (Driver)Class.forName(MM_Login_DRIVER).newInstance();
    Connection MM_connUser =
    =
    DriverManager.getConnection(MM_Login_STRING,MM_Login_US
    RNAME,MM_Login_PASSWORD);
    String MM_pSQL = "SELECT UserName, Password";
    if (!MM_fldUserAuthorization.equals("")) MM_pSQL +=
    = "," + MM_fldUserAuthorization;
    MM_pSQL += " FROM MemberInformation WHERE
    E UserName=\'" + MM_valUsername.replace('\'', ' ') +
    "\' AND Password=\'" +
    request.getParameter("Password").toString().replace('\'
    , ' ') + "\'";
    PreparedStatement MM_statementUser =
    = MM_connUser.prepareStatement(MM_pSQL);
    ResultSet MM_rsUser =
    = MM_statementUser.executeQuery();
    boolean MM_rsUser_isNotEmpty = MM_rsUser.next();
    if (MM_rsUser_isNotEmpty) {
    // username and password match - this is a valid
    lid user
    session.putValue("MM_Username", MM_valUsername);
    if (!MM_fldUserAuthorization.equals("")) {
    session.putValue("MM_UserAuthorization",
    ion",
    MM_rsUser.getString(MM_fldUserAuthorization).trim());
    } else {
    session.putValue("MM_UserAuthorization", "");
    if ((request.getParameter("accessdenied") != null)
    ll) && false) {
    MM_redirectLoginSuccess =
    ess = request.getParameter("accessdenied");
    MM_redirectLogin=MM_redirectLoginSuccess;
    MM_rsUser.close();
    MM_connUser.close();
    response.sendRedirect(response.encodeRedirectURL(MM_re
    irectLogin));
    return;
    %>
    <form action="<%=MM_LoginAction%>" method="get"
    "get" name="Login" id="Login">
    <table width="55%" border="0">
    <tr>
    <td width="41%">Username </td>
    <td width="59%"><input name="Username"
    ="Username" type="text" id="Username" value=""
    size="25" maxlength="10"></td>
    </tr>
    <tr>
    <td>Password </td>
    <td><input name="Password" type="password"
    ="password" id="Password" value="" size="25"
    maxlength="10"></td>
    </tr>
    <tr>
    <td>�</td>
    <td><input type="submit" name="Submit"
    me="Submit" value="Submit"></td>
    </tr>
    </table>
    </form>
    And LoginSuccess.jsp where i want it to print out the
    "Welcome username
             <%String Name=request.getParameter("Username");
         out.println ("Welcome ");
         out.println (Name); %>When the page is rediredted u r not passing the user name in the query string,so it is not availble in the query string for LoginSuccess page
    Since u have added user in session user this
    <%String Name=(String)session.getValue("MM_Username") ;%>
    <%     out.println ("Welcome ");
    <%      out.println (Name); %>

  • Please help with regular expression

    Hello,
    With the help of my previous posting answers, Re: Procedure to Extract multiple substring from a string , I updated the query. But, I am not getting desired answer in all case. Could you please help me out? My query is based on the previous posting. Any other simple way to achieve this?
    I will really appreciate it.
    select
           ltrim ( regexp_substr(txt, '\[(\w+)', 1, level), '[')      as id, /* id is number */
           ltrim ( regexp_substr(ltrim ( regexp_substr(txt, ':[^]]+', 1, level), ':'), '\w+-*\d*', 1, 1), ':')  as qid, /* Qid could be char/number/space any combination except ':' */
           ltrim ( regexp_substr(ltrim ( regexp_substr(txt, ':[^]]+', 1, level), ':'), '\w+', 1, 2), ':')      as num,
          to_date( ltrim ( regexp_substr(ltrim ( regexp_substr(txt, ':[^]]+', 1, level), ':'), '[^:]+', 1, 3), ':'),'MM/DD/YY')   as effdate
    from  (
                            select  '[10946:M100:N:][10947:Q1222:N:][38198:PPP-2:N:][13935:PPP-6:N:][38244:QQQ-4:Y:01/01/10]'     as txt
                            from     dual
            connect by level <= length(regexp_replace(txt, '[^[]'));I should get :
    ID             QID          NUM         EFFDATE
    10946     M100     N     
    10947     Q1222     N     
    38198     PPP-2     N     
    13935     PPP-6     N     
    38244     QQQ-4     Y     01-JAN-10But, getting
    ID             QID          NUM          EFFDATE
    10946     M100     N     
    10947     Q1222     N     
    38198     PPP-2     2     
    13935     PPP-6     6     
    38244     QQQ-4     4     01-JAN-10Thanks,

    Hi,
    So the num column is wrong, is that it?
    Describe what the num column should be. For example "num is the 3rd part of the :-delimited list enclosed in the square brackets".
    If that's what you want, then change the definition of num from
    ...                     ltrim ( regexp_substr(ltrim ( regexp_substr(txt, ':[^]]+', 1, level), ':'), '\w+', 1, 2), ':')      as num,to
    ...                      REGEXP_SUBSTR  ( REGEXP_SUBSTR ( txt
                                          , '[^]]+'
                                                , 1
                                       , LEVEL
                             , '[^:]+'
                             , 1
                             , 3
                             )       AS num,

  • Very very urgent. Please help. JSP - JDBC connectivity.

    Hi.
    Can any one guide me the methods and steps to be followed for storing the input entered on a JSP front end into a database. Also help is needed for retrieving the data from the table and displaying on the front end. Please reply as early as possible as I am stuck in my work due to this reason. Please do reply as soon as possible,.
    Regards
    Venkat

    What part don't you understand?Here are my guesses about what the OP doesn't understand:
    >
    JSP? Yes.
    JDBC? Yes.
    Relational databases? Yes.
    Deploying Web apps? Yes.
    Your servlet/JSP container? Yes.
    What? Yes.Again, just wild guesses. :-)

  • Iif() sql statement is not working please help. An expression of non boolean type specified the context

    the following sql is not working . If  sum(salary) = null   should be displayed  1 or 0
    select empname,iif((isnull(sum(salary),0)),1,0) from salary group by empname
    regards
    Pol
    polachan

    I think what you're looking at is this
    select e.empname,
    COALESCE(s.totalsal,0) as salary
    from employee e
    left join (select empname,sum(salary) as totalsal
    from salary
    group by empname
    )s
    on s.empname = e.empname
    where employee represents your master table containing employee information
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • Urgent Please help RadioButton + Jsp

    I am doing an project named an online exam.
    I have various questions say about 10 questions.And there are 4 radiobutton are given as option.In the next page I want to retrive the answers clicked by the user for each of the question.I am getting the values from the database ie, the questions and answers(the options)
    The code for the first page
    <%@ page language="java"%><%@ page import="java.sql.*,java.io.*,java.util.*,javax.servlet.*"%>
    <%@ include file="dbconnection.jsp"%>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <meta name="GENERATOR" content="Microsoft FrontPage 5.0">
    <meta name="ProgId" content="FrontPage.Editor.Document">
    <title>New Page 1</title>
    <script language="javascript">
    function insertproduct()
    window.location="dbquestion.jsp";
    </script>
    </head>
    <%!
    String qid,ans1,ans2,ans3,ans4;
    %>
    <body>
    <%
    String id=request.getParameter("id");
    String str="select * from qa_bank where TOPIC_ID='"+id+"'";
    PreparedStatement ps=con.prepareStatement(str);
    ResultSet rs=ps.executeQuery();
    %>
    <p> </p>
    <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
    <%
    while(rs.next())
    qid=rs.getString(1);
    ans1=rs.getString("ANSWER1");
    ans2=rs.getString("ANSWER2");
    ans3=rs.getString("ANSWER3");
    ans4=rs.getString("ANSWER4");
    %>
    <form name="frm">
    <tr>
    <td width="100%"><%=rs.getString("QUESTION")%> </td>
    </tr>
    <td width="100%">
    </td>
    </tr>
    </table>
    <table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2">
    <tr>
    <td width="50%"><input type="radio" value="<%=ans1%>" name="R1"><%=rs.getString("ANSWER1")%></td>
    <td width="50%"><input type="radio" value="<%=ans2%>" name="R1"><%=rs.getString("ANSWER2")%></td>
    </tr>
    <tr>
    <td width="50%"><input type="radio" value="<%=ans3%>" name="R1"><%=rs.getString("ANSWER3")%></td>
    <td width="50%"><input type="radio" value="<%=ans4%>" name="R1"><%=rs.getString("ANSWER4")%></td>
    </tr>
    <tr>
    <td width="50%"> </td>
    <td width="50%"> </td>
    </tr>
    </table>
    </form>
    <%}%>
    <table border="1" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber2">
    <tr>
    <p> </p>
    <td><p align="center">SUBMIT</p>
    </td>
    </tr>
    </body>
    </html>
    Could anybody help me in giving the code for next page,ie to get the values clicked by user for each questions.
    My mail id is [email protected]
    I expect response from all as early as possible.
    Thank u

    Hi,
    You are using name id
    String id=request.getParameter("id");
    ,but in your code actual name is R1
    "><input type="radio" value="<%=ans1%>" name="R1"><%=rs.getString("ANSWER1")%></td>

  • Please help with Logic Express 7 and using DFH plugin!

    Hey guys, I'm really in a tight spot here as I have no idea how to get my setup working properly. I recently bought an entirely new Imac, Logic Express 7, and a drum plugin called Drumkit From **** Superior (VSTi I believe is the type of plugin they call it). It is supposed to be compatable but I see no way to get it to show up as a plugin. I tried some other programs and it shows up as a plugin and I'm able to get into the interface, but I can't in LE7.
    It is supposed to be compatable as a "rewire" plugin or something like that, but I'm not too sure how to approach that differently, both manuals are very vague.
    Basically, I'm wondering:
    1. How would I go about getting Drumkit From **** Superior to show up as a "plugin" (and what it would be under) if I have to use it a "rewire"?
    2. If I could get it running as a plugin, how would I go about programming a drum part using that "drumkit" in Logic Express?
    Thanks, any help is greatly appreciated.
    -Daniel

    It's a tough one man, I'm actually wanting to go for EZdrummer which I think comes under the same umbrealla as DFH, the patch will come to let you upgrade to intel hopefully by September so hold onto that plug in as I think it'll be worth it in the long run. In the mean time do you have any other options to make beats?
    I use Reason 3.0, I sequence my beats using Reason Drum Kits 2.0 and export them as WAV or AIFF files into Logic, do you have anything similar that you can do? write you beats else where and import into Logic?

  • Please help with Logic Express 8 language support - requires little effort

    Dear fellow musicians, I plan to buy Logic Express, but as I live in a country you probably have never heard of (Moldova) I only have the chance to buy it while traveling.
    So, I am going to Paris soon and this is a perfect occasion to purchase the software - the only thing I am concerned is whether the french version of Logic express also supports the English language just like garage band and other apple apps.
    So, could you please check what languages are supported by Logic Express?
    It is simple to do - just go to the applications folder, Ctrl click on the Logic Express 8 application and unfold the languages triangle (if there's any).
    I'd be more than lucky if someone owning a french version does that to confirm whether there's English among the supported languages.
    Thanks!

    checked in my application folder but I don't see the languages option. However my English version provides French support, and my pretty clued up about apple things guess (but it is a guess) is that it's the same package and the installer just picks up the default language of the machine you're installing it on. And if you've got experience of other French versions of apple software being OK then it's a pretty safe bet that Logic will too. Can you not order an English version over the internet if you're really concerned ?
    By the way, I know where Moldova is! Even been thinking about traveling there sometime soon

  • Please Help me: JSP executes iReport

    Hello,
    I have Tomcat 5.0 and iReport in my computer (the server computer).
    I want to execute iReport on the server via a JSP.
    I use "Runtime.getRuntime().exec("cmd.exe /C iReport.cmd");" on the JSP and the iReport it's executed on my computer.
    But when I tried to execute iReport on another machine that connected the server via TCP/IP, iReport executes on the server computer not in the client computer.
    Are there any mode that iReport executes on client computer??
    If the answer is afirmative, please tell me how.
    Thank you.
    P.D. Excuse me for my bad english.

    This java program can be executed in a java shell -->
    java it.businesslogic.ireport.gui.MainFrame
    Can I execute this in a JSP??It will still run only on the Server. Like was said, JSPs and Servlets run on the Server's JVM (and before the HTML gets delivered to the client. Your best bet to get it to run on the client side is to use an Applet or Java Web Start (do a search for them). But if that will let you do what you want? Now it will be running on the Client, and not the Server. so if you are trying to report on Server resources, you will might not be able to. I would ask the IReport people on how to get that going, if possible.

  • Please help-how to copy & apply attributes to another file

    I just started learning AE CS5.5 and I am stuck.
    I am trying to duplicate or copy the attributes from a jpeg file in an existing layer in a comp that has already been created. I am not interested in duplicating the image, just the attributes (transform, material options and other imbedded characteristics that are part of this file)
    The file I want to apply these same attributes to is a .psd file which has multiple layers I want to apply these same effects to.
    How do I duplicate these attributes so they retain the same settings? 
    Thanks!

    Duplicate the layer with the effects & keyframes & whatnot; yes, duplicate the layer. 
    Highlight the duplicated layer, then Option-drag the replacement footage from the project window onto this duplicated layer.  Poof!  Done!
    I guess it would be alt-drag on a windows box.

  • Please help with how to remove attribute

    Hi to all,
    I am having some serious problems with removeAttribute (or more like remove anything). I want to remove an attribute from an element, but it just doesn't seem to work no matter what I do.
    The following is an example of the xml:
    <diffgr:diffgram xmlns:diffgr="urn:pgwc-gov-za:diffgram">
    <DataInstance>
    <ROW diffgr:id="3240DEAFE594482B86B3A31E77A13975" diffgr:hasChanges="inserted">
    <VALUE>VALUE 1</VALUE>
    </ROW>
    </DataInstance>
    </diffgr:diffgram>
    I want to remove the diffgr:hasChanges attribute. I have searched high and low and can't find an example of how to do this. Could someone give me a quick example?
    Thanks,
    DayneO

    You can make use of DELETEXML
    scott@mydb> create table sun_xml(xmlcol xmltype);
    Table created.
    scott@mydb> insert into sun_xml
      2  values(xmltype('<diffgr:diffgram xmlns:diffgr="urn:pgwc-gov-za:diffgram">
      3  <DataInstance>
      4  <ROW diffgr:id="3240DEAFE594482B86B3A31E77A13975" diffgr:hasChanges="inserted">
      5  <VALUE>VALUE 1</VALUE>
      6  </ROW>
      7  </DataInstance>
      8  </diffgr:diffgram>'));
    1 row created.
    scott@mydb> update sun_xml
      2  set xmlcol = deletexml(xmlcol,'//DataInstance/ROW/@diffgr:hasChanges','xmlns:diffgr="urn:pgwc-gov-za:diffgram"');
    1 row updated.
    scott@mydb> select * from sun_xml;
    XMLCOL
    <diffgr:diffgram xmlns:diffgr="urn:pgwc-gov-za:diffgram">
      <DataInstance>
        <ROW diffgr:id="3240DEAFE594482B86B3A31E77A13975">
          <VALUE>VALUE 1</VALUE>
        </ROW>
      </DataInstance>
    </diffgr:diffgram>

  • PLEASE HELP: 10G Installation Express Ed Problems

    Hi, I'm a newbie and trying to install oracle on my Window's XP PC. I've got it all downloaded but when I go to the "Go to Database Home Page" (http://127.0.0.1:8080/apex

    Questions stopped in mid-sentence are quite a show stopper for a help forum, don't you think so?
    [Update]
    I've noticed you posted another comment
    I have a mac and installed oracle through virtual pc. The problem I am now experiencing is that it takes a ridiculus amount of time for the pages to load once logged in and working on the database. I'm thinking it's because of the limited virtual pc ram limitations, and the server's size. What OS are you using in your virtual machine and how much memory have you dedicated to that instance? Your hardware could also be a limiting factor.
    I'm new to Oracle and am trying to learn it's functions and uses. I would like to be a Oracle certified Dba with in the year. I'm enrolled in some classes and will be taking the certification test next year around June or July. You mean OCP? Certification is nice, however you should focus on understanding the background of those questions and gather some experience.
    I will also be moving to the UK and am hoping to begin a career in oracle upon my arrival. Good luck.
    Any advice/assistance will be greatly appreciated. If you plan on becoming a DBA, I suggest you continue your studies by installing other versions of the Oracle DBMS, such as Standard Edition (SE) and Enterprise Edition (EE) to get familiar with management tools such as Oracle Enterprise Manager (OEM) and several options such as the java virtual machine or partitioning.
    C.

Maybe you are looking for

  • KDE/calendar display changed after last upgarde.

    Hi, I'm on a fully update Arch_64/KDE. After the last system upgrade, the calendar hour display (part of Kontact) changed from the usual HH:MM (e.g., 11:00) to 11'. I could find where to restore tp the former format. Please advise1 thanks

  • Iphone 5c not recognized by Windows iTunes; cannot sync

    Hi, I realize many users are having problems with this same issue on various iOS devices.  I'll note that not only are all of my drivers/systems/software versions up to date, but I've also followed all troubleshootings steps that are commonly given,

  • How to delete one of your photo albums but doesn't have a red thing

    I went on my friend's computer to download my pictures from my pervious phone, I noticed that the pictures came up twice in 2 different albums. It won't allow me to delete on or both of the albums. Also when I take a picture it goes into a third albu

  • FCP 6 export widescreen SD - iDVD 7 widescreen plays 4:3

    Exporting DV anamorphic, plays in QT as widescreen, iDVD menu is widescreen, BUT the exported video plays 4:3.

  • Issue with AD users restricted to certain machines.

    Hi all, So, we seem to have a bit of an issue with user accounts that are restricted to logging in to certain machines only. While the user is permitted to log in to the machine (Windows lets them), our ISE server denies the login and the trace looks