Type in value and retrieve from database

Hi,
I have a database of clients and to keep it up to date, we will be sending out an email asking them to confirm if they're details are correct and up to date.
In that email will be a link to a webpage where they can confirm their details are up to date. They will have to type in their email address which will then retrieve their information to update or confirm they are correct.
I have no trouble updating. I usually list the data and then click on the one that needs updating.
I'm having trouble retrieving the information after the user has typed in their email address.
Here is my code so far - at the moment I have listed the data in a table with an "update" link next to each row that allows me to update.
Where would I put the text field where the user can type in their email? I've tried different ways but was unsuccessful.
Hope you can help
Thanks
<%
strSQL = "SELECT * FROM emails"
rsEmail.Open strSQL, conn
%>
<html>
<head><title>All</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<link href="layout.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="wrapper">
  <p>  </p>
  <div id="view">
  <div class="insert"><a href="insertform.html">Insert</a></div>
  </div>
  <table width="1100" cellpadding="5">
    <tr>
      <td width="53">ID</td>
      <td width="300">firstname</td>
      <td width="378">lastname</td>
      <td width="121">email</td>
      <td width="92">Update</td>
      <td width="92">Delete</td>
    </tr>
  </table>
  <table width="1100" cellpadding="5">
    <%
   Do While not rsEmail.EOF
%>
    <tr><td width="53"><% Response.Write rsEmail("id") %></td>
      <td width="294"><% Response.Write rsEmail("firstname") %></td>
      <td width="374"><% Response.Write rsEmail("lastname") %></td>
      <td width="119"><% Response.Write rsEmail("email") %></td>
      <td width="91"><%  Response.Write ("<a href=""update_form.asp?ID=" & rsEmail("ID") & """>")%>Update<%Response.Write ("</a>") %></td>
    </tr>
    <%
rsEmail.MoveNext
Loop
'Reset server objects
rsEmail.Close
Set rsEmail = Nothing
Set conn = Nothing
%>
  </table>
</div>
</body>
</html>

This 'tutorial' is flawed and needs work. Use with care.
1 - Upload the file correctly. This is NOT an example of how to upload a file from a web page. You need method="post" and enctype="multipart/form-data". Then in the servlet doing the file retrieval you need to get the input stream from the request. Using a library like the jakarta commons File Upload is recommended.
2 - Database connection should not be done in a JSP. 'nuff said.
3 - In fact scriptlet code in a JSP is a bad approach in general. avoid.
4 - A better approach would be to use an ImageServlet as exampled, and just have img tag reference that servlet directly.
While I applaud the intentions behind wanting to share the code, the code shows several basic design flaws. I think it is a better example of what NOT to do rather than the intended how-to.
Thats my 2 cents.
evnafets

Similar Messages

  • Saving to and retrieving from database

    Hi,
    How can I save my program's data in a database and how can I view the data?
    S.A.T

    You can save data to a database using the SqlCommand.ExecuteNonQuery method:
    https://msdn.microsoft.com/en-us/library/system.data.sqlclient.sqlcommand.executenonquery(v=vs.110).aspx
    string query = "INSERT INTO TABLE (col1) VALUES (1)";
    using (SqlConnection connection = new SqlConnection(
    "your connection string...."))
    SqlCommand command = new SqlCommand(queryString, connection);
    command.Connection.Open();
    command.ExecuteNonQuery();
    You will have to supply a connection string to the database:
    http://www.connectionstrings.com/sql-server/
    ...and an SQL query (INSERT, UPDATE) to be executed against the database.
    You can retrieve data similarly using a SqlDataAdapter that fills a DataSet:
    http://www.dotnetperls.com/sqldataadapter
    DataTable t = new DataTable();
    using (SqlConnection c = new SqlConnection(
    "connection string..."))
    c.Open();
    // 2
    // Create new DataAdapter
    using (SqlDataAdapter a = new SqlDataAdapter(
    "SELECT * FROM EmployeeIDs", c))
    // 3
    // Use DataAdapter to fill DataTable
    a.Fill(t);
    Please remember to mark helpful posts as answer to close your threads and then start a new one if you have a new question.

  • Re: [Re: Keys retrieval from database]

    Hi Joseph,
    Thank you for your reply.I am using ODBC to connect Forte application with the database.And I went through the document, and tried all the possible ways, I could't succed in retrieval of whole data.I tried the sql execute procedure also.I will the error message
    after sometime.How does it related with escript?please clarify.
    Thank you,
    J.Babu
    [email protected] wrote:
    Hello Jendran,
    take a look at your 'Online-Help'. Search for 'DBDataType' (DBColumnDesc) and
    'GetDatabaseDesc' and look if your question is answered.
    See the 'Accessing Database Guide' Page 236 for a complete description of the
    call ('sql execute procedure' not 'sql execute Immediate procedure').
    Look wether you connect via ODBC or Direct to the database in your
    DBResourceMgr (Perhaps you have to look how this is specified in your
    environment in 'econsole'). If you have any more problems please copy
    the error-message in your email, to see what forte says to this error.
    Hope this helps
    Joseph Mirwald
    At 04:30 18.06.98, you wrote:
    Hi guys,
    Have any one used the method GetDatabaseDesc() of DbSession classto retrieve columns, primary keys and Foreign keys of a database? I
    couldn't retrieve any information except columns of MsSql server
    database.If possible give some information.
    I couldn't execute stored procedure from Forte, what could be theproblem? we tried with sql execute Immediate procedure.
    Thank you in advance,
    J.Babu
    Get free e-mail and a permanent address at http://www.netaddress.com/?N=1
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Babu,
    Note that though you will be able to get column information on
    most of the
    databases, some databases do not maintain or provide access to
    key
    information. For these databases, specifying DB_IN_KEYINFO and
    DB_IN_FOREIGNKEYINFO has no effect. Oracle, Ingres, and Informix
    do support key information. Check vendor documentation for
    other databases
    on specific platforms.
    As rightly mentioned by Joseph Mirwald, you might want to email
    a copy
    of the error message that you get.
    Good luck!
    Ajith Kallambella M.
    Forte Systems Engineer,
    Internationational Business Corporation.
    From: [email protected][SMTP:[email protected]]
    Reply To: [email protected]
    Sent: Thursday, June 18, 1998 12:30 AM
    To: [email protected]
    Cc: [email protected]; [email protected]
    Subject: Keys retrieval from database
    Hi guys,
    Have any one used the method GetDatabaseDesc() of DbSession
    class to retrieve columns, primary keys and Foreign keys of a
    database? I couldn't retrieve any information except columns of MsSql
    server database.If possible give some information.
    I couldn't execute stored procedure from Forte, what could be
    the problem? we tried with sql execute Immediate procedure.
    Thank you in advance,
    J.Babu
    Get free e-mail and a permanent address at
    http://www.netaddress.com/?N=1
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive
    <URL:http://pinehurst.sageit.com/listarchive/>
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

  • Data Could not be retrieved from database...

    Hi All,
    I have a problem on Excel 2007 while refreshing (for pivot table) data from SQL Server view:
    "Data could not be retrieved from database. Check the database server or contact your database administrator. Make sure that external database is availiable, and then try the operation again"
    Excel file is distributed on about 20 workstations in network with the same Excel version, and problem occurs only on one station. I have checked credentials and connection between workstation and server and it seems to be ok.
    Any ideas?

    it is problem, because sql server is not member of domain... so I'm using sql aunthentication.
    strange thing is that from any other workstations (aldo in domain) it works fine when providing SQL user. I'm supposing that it is problem with some excel settings

  • Loading the username and password from database when login to xMII

    Hi
      can you explain briefly about how to configure the netweaver for loading username and password from database when the user login to xMII via netweaver platform?
    In xMII 11.5 we are configuring xMII itself? but in xMII 12.0 configuring by netweaver platform. if anyone know please explain step by step

    I am sending you some java code, which you can use in JSP.
    import java.sql.*;
    public class connectOracle{
    public static void main(String[] args) {
    System.out.println("Getting Column Names Example!");
    Connection con = null;
    String url = "jdbc:oracle:thin:@172.16.0.21:1521:orcl";
    String driver = "oracle.jdbc.driver.OracleDriver";
    String user = "scott";
    String pass = "tiger";
    try{
    Class.forName(driver);
    con = DriverManager.getConnection(url, user, pass);
    catch (SQLException s){
    System.out.println("SQL statement is not executed!");
    catch (Exception e){
    e.printStackTrace();
    }

  • Playing a video file retrieved from database using JMF

    Hello!
    I am developing a multimedia application that has to store videos, music, pictures in a database. I did a little searching and found that JMF is a very good solution in playing video/music using Java. I found some examples to play the video/music stored on the hard drive (as separate files), but i have to be able to take the video/music from the database, and feed it to the JMF player. Has anyone some suggestions about how this could be done?
    Thanks in advance!
    Edited by: radu.miron on May 8, 2008 9:03 AM

    Well, i think i didn't make myself clear enough :). i know how to retreive the data from the database. The thing is this: let's suppose i have a 700 MB movie stored in the database. One option to play that movie would be to retrieve it from the DB, create a file somewhere on the disk, and put the data retrieved from the database in that file. But this involves that the disk will be overflooded when let's say 100 people watch 100 different movies. Another option (as i see it) would be to gradually take parts of the movie from the database (first 50 MB, then another 50 MB, then another and so on), and feed it to the JMF player. The user will watch the movie, but will not have the whole movie available, just a part of it. As he watches it, the application takes the next chunck of movie data and feeds it to the JMF player. That was the question i intended to ask, if anyone has any idea regarding the second option, and not the part with retrieving from the database, but the part with giving the JMF player video data to play.
    The example i found on the web with JMF player is the following:
    import javax.swing.*;*
    *import javax.media.*;
    import java.awt.*;*
    *import java.awt.event.*;
    import java.net.*;*
    *import java.io.*;
    public class PlayVideo extends JFrame {
         Player player;
         Component center;
         Component south;
         public PlayVideo() {
              setDefaultCloseOperation(EXIT_ON_CLOSE);
              JButton button = new JButton("Select File");
              ActionListener listener =
                   new ActionListener() {
                   public void actionPerformed(
                             ActionEvent event) {
                        JFileChooser chooser =
                             new JFileChooser(".");
                        int status =
                             chooser.showOpenDialog(PlayVideo.this);
                        if (status ==
                             JFileChooser.APPROVE_OPTION) {
                             File file = chooser.getSelectedFile();
                             try {
                                  load(file);
                             } catch (Exception e) {
                                  System.err.println("Try again: " + e);
              button.addActionListener(listener);
              getContentPane().add(button,
                        BorderLayout.NORTH);
              pack();
              show();
         public void load(final File file)
         throws Exception {
              URL url = file.toURL();
              final Container contentPane =
                   getContentPane();
              if (player != null) {
                   player.stop();
              player = Manager.createPlayer(url);
              ControllerListener listener =
                   new ControllerAdapter() {
                   public void realizeComplete(
                             RealizeCompleteEvent event) {
                        Component vc =
                             player.getVisualComponent();
                        if (vc != null) {
                             contentPane.add(vc,
                                       BorderLayout.CENTER);
                             center = vc;
                        } else {
                             if (center != null) {
                                  contentPane.remove(center);
                                  contentPane.validate();
                        Component cpc =
                             player.getControlPanelComponent();
                        if (cpc != null) {
                             contentPane.add(cpc,
                                       BorderLayout.SOUTH);
                             south = cpc;
                        } else {
                             if (south != null) {
                                  contentPane.remove(south);
                                  contentPane.validate();
                        pack();
                        setTitle(file.getName());
              player.addControllerListener(listener);
              player.start();
         public static void main(String args[]) {
              PlayVideo pv = new PlayVideo();
    }but this example plays a video stored on the disk ( player = Manager.createPlayer(url); ), rather than a chunck of data (the whole movie or parts of it) retrieved from the database.
    Sorry for the misunderstanding!
    Cheers!

  • Peel off hourly output value and subtract from previous hours (then write to file)

    Here is another problem I have been working with and what I have tried so far.  Right now, my current VI is writing data to an excel file at a point every second.  I would LIKE peel off a point from this datastream once every hour and subtract it from the previous hour's value and write an hourly value to an excel file (same file or different file is ok).  I was working with a guy here at my university who had some ideas to use the Elapsed time function.  I have included a screenshot of the part of the VI containing the function we were working on.  We never could get it to work quite right.  We were having some problems getting the shift registers to work (used to subtract the current hour's value from the previous hour's value).  Let me know if you have any ideas, if maybe we are on a good pathy, or maybe I should try something altogether different.  I'm just looking for a simple solution at this point.
    Thanks,
    Jeremy
    The local variable "Total Consumption" is the data stream off of the hourly values are being taken.  Currently (not shown in this screen shot), the value of "Total Consumption" is combined with the other channels into one signal that is fed into the "Write to Measurement File" VI (shown at the right).

    You have a true constant wired to your stop button for the loop, which means the loop will only run once.
    You may want to consider the positions of the previous and current indicators inside that loop.  It's not clear how you want them to function.  The previous indicator doesn't get updated until right as the elapsed time occurs.  The case structure gets executed, and you will immediately have a new previous value calculated, but you won't see that again until the end of the next hour.  Not sure if you are updating the current value in the false case as well.  Otherwise that would look like stale data for an hour.  If you are updating it in the other case, than you should move the local variable and the indicator completely out of the case structure and only pass in the wire to the subtraction function.

  • Image upload and display from database blob coloumn in ADF

    HI
    how can i upload and display image from database ( blob ) coloumn in ADF

    Hi,
    Take a look to this video: http://www.youtube.com/watch?v=_KYquJwYFGE
    AP

  • Bug or feature: TableView.EditEvent - same type for value and row?

    Just noticed (normally I don't care overly much about generics, they are my natural enemies : -) that the return type for both cell and row data is the same:
    class EditEvent<T> {
        T getNewValue()
        T getOldValue()
        T getRowValue()
    }old/new value is fine, but typically the row has another type, which most probably is completely unrelated, as f.i. in
    TableView<Person> tableView = new TableView<Person>(persons);
    TableColumn<String> firstName = new TableColumn<String>("First Name");
    firstName.setProperty("firstName");
    EventHandler<EditEvent<String>> nameEditHandler = new EventHandler<TableView.EditEvent<String>>() {
                @Override
                public void handle(TableView.EditEvent<String> e) {
    // compile error
                    Person p = (Person)e.getRowValue();
                    String newValue = (String)e.getNewValue();
                    p.setFirstName(newValue);
    firstNameCol.setOnEditCommit(nameEditHandler);The compile error is due to the event requiring the same type for row and cell. Obviously, can remove all type parameters - but how to solve cleanly without getting unchecked/rawtype warnings?
    Thanks
    Jeanette

    Good morning, Jonathan (my day time : -)
    If you mean that big issue where you threaten (and locally actually already did) to remove all the niceties of auto-magic column binding via setting property names - yeah, I've read it, partly unhappily. But that's another story.
    to create two separate EditEvents - one for row edits and one for cell edits.
    hmm .. have been expecting something along the lines of
    EditEvent<R, C> {
         R getRowValue();
         C getOldValue();
         C getNewValue();
    // used in
    TableView<R>
    TableColumn<C>
    // for row edits
    R == C
    getRowValue() == getOldValue()Musing a bit longer, the event could be streamlined a bit - remove all the convenience sugar: the receiver has to know the exact details of grabbing the data anyway in order to be able to change it (in the current workflow, it's not necessarily the way to go) so old/row is redundant
    EditEvent<S> {
       <S> getEditValue();
    }Cheers
    Jeanette

  • Separate ASCS and PAS from Database server

    Dear friends, in a customer we have the following need:
    We need to separate de ASCS and the Primary application server to a host different from database server. The SAP system is an ERP 6.0 EHP4 based in NW 7.01.
    We have used Software provisoning manager to splitt off the ASCS from the CI. Before the splitt off we only had the directory DVEBMSG00, and after the splitt off, we had ASCS01 and DVEBMSG00 directories. But, this is only half of the solution, because we need to move this services to another hosts.
    We tried to use Software provisioning manager to deinstall the ASCS, and install it in the other host. This works. But the problem is the Primary application server, because if we uninstall it, when insttall in the other host with the option "System Copy" the sapinst promts for the installation export.
    In the Marketplace i could not find any note form aour scenario.
    Do you know a way to separate de CI and the PAS from de database server without a system copy?
    Thanks and best regards.

    Hi
    http://scn.sap.com/community/netweaver-administrator/blog/2013/12/04/why-splitting-off-the-ascs-from-pas
    This link might be useful
    But if you have a system based on SAP NetWeaver 7.0x, this option is not available in the 70SWPM, The only way to do that would be running a system copy of the system. Then during the target system installation, you would be able to install the new system with sepated ASCS from PAS . "

  • How to Store bollean selection values and retrieve them in runtime?

    I have an array of bolleans representing a channel of a device. Now , when the user turns on the channel the selected channel array are supposed to be stored. Now when the user selects device 2 (using a ring function) the list refreshes t5he channel names and resets the bollean array to their default values and the new selection values are to be stored. Now if the user wants, he should revert back to device 1 and can review what all channels he had selected for Device 1. How can this functionality be achieved?
    Labview Learner
    Attachments:
    1.PNG ‏14 KB
    2.PNG ‏14 KB

    You need to store the boolean array somewhere.  I would likely just use a shift register
    There are only two ways to tell somebody thanks: Kudos and Marked Solutions
    Unofficial Forum Rules and Guidelines

  • Submit values and retrieve responses from xml api

    I use this code to submit to an api
    <cfhttp url="<api url>" method="GET" resolveurl="No" ></cfhttp>
    I get back

    <VerifySignatureResponse>
    −<VerifySignatureResult>
    <VerificationStatus>Success</VerificationStatus>
    </VerifySignatureResult>
    </VerifySignatureResponse>
    How do I retrieve the response? I ned to get back the Success for the VerificationStatus parameter

    this works for me
    <cfhttp url="<api url>" method="GET" resolveurl="No" ></cfhttp>
    <cfset mydoc = XmlParse(CFHTTP.FileContent)>
    <cfset pb = mydoc.variable1.XmlChildren>
    <cfset size = ArrayLen(pb)>
    <cfset myquery = QueryNew("variable1,variable2, variable3")>
    <cfset temp = QueryAddRow(myquery, #size#)>
    <cfset temp = QuerySetCell(myquery, "variable3", #mydoc.variable3.XmlText#)>
    <cfif #mydoc.variable1.variable2.variable3.XmlText# eq "Success">
    Action
    </cfif>
    You apparently didn't take the hint, Ian's or mine. What you've done may be correct, it unnecessarily involves too many functions. You could really do it more efficiently, like this
    <cfxml variable="xmlString"><cfoutput>#cfhttp.FileContent#</cfoutput></cfxml>
    <cfset statusArray=xmlSearch(xmlString,"//VerificationStatus")>
    <cfif statusArray[1].xmlText eq "Success">
    Action
    </cfif>

  • Display Videos retrieved from Database?

    Hi all,
    I am trying to display videos from my database, does anyone know how to do this? I would like to display the video on my jsp page. I have no problem retrieving it but how do i get it to have a player for example like embedding a video from Youtube. Any suggestions? Thanks!

    Well it doesn't work as the video which you are retriving from the database is not in SWF / FLV or any shockwave supported format.
    Well if i were given a similar situation i'd solve it by the below stratergy.
    1).I'd Query my database and i'd get some metadata about the video like
    (videoId interger(5) PK,videoName varchar(50) not null,isYouTubeVideo varchar(1) not null,youTubeVideoUrl varchar(200),videoMimeType varchar(40) not null)
    2).On a basic grounds i'd apply a small display logic if the video is a youtube video( as youtube simply converts the videos into FLV format with a high compression ratio) or if the video's MIME type is video/x-flv (FLV's mime type) lets simply use youtube's standard embeding feature and render the JSP accordingly else use Media Player's embeding feature and render the JSP accordingly.
    jsp code snippet
    eg:*
    <jsp:useBean id="videoBean" class="com.myapp.entity.VideoBean" scope="request"/>
    <c:choose>
       <c:when test="${videoBean.YouTubeVideo == 'Y' || videoBean.videoMimeType == 'video/x-flv'}">    
              <object width="425" height="344">              
                   <c:if test="${videoBean.videoMimeType == 'video/x-flv'}">
                        <param name="movie" value="fileServlet?fileId=${videoBean.videoId}"/>
                        <param name="allowFullScreen" value="true"/>
                        <embed src="/fileServlet?fileId=${videoBean.videoId}" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"/>
                    </c:if> 
                   <c:if test="${not empty videoBean.youTubeVideoUrl}">
                        <param name="movie" value="${videoBean.youTubeVideoUrl}"/>
                        <param name="allowFullScreen" value="true"/>
                        <embed src="${videoBean.youTubeVideoUrl}" type="application/x-shockwave-flash" allowfullscreen="true" width="425" height="344"/>
                    </c:if> 
              </object>
       </c:when>
       <c:when test="${videoBean.videoMimeType == 'application/x-Shockwave-flash' || videoBean.videoMimeType == 'application/futuresplash'}">
              <object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="425" height="344">
                    <param name="quality" value="high"/>
                    <embed src="/fileServlet?fileId=${videoBean.videoId}" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="425" height="344"/>
              </object>
       </c:when>
       <c:otherwise>
               <OBJECT ID="MediaPlayer" WIDTH="425" HEIGHT="344" CLASSID="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" STANDBY="Loading Windows Media Player.." TYPE="application/x-oleobject">
                      <PARAM name="FileName" value="${videoBean.videoName}"/>
                      <PARAM name="autostart" value="false"/>
                      <PARAM name="ShowControls" value="true"/>
                      <PARAM name="ShowStatusBar" value="false"/>
                      <PARAM name="ShowDisplay" value="false"/>
                     <EMBED TYPE="application/x-mplayer2" SRC="/fileServlet?fileId=${videoBean.videoId}" NAME="MediaPlayer" WIDTH="425" HEIGHT="344" ShowControls="1" ShowStatusBar="0" ShowDisplay="0" autostart="0"/>
               </OBJECT>
        </c:otherwise>
    </c:choose>
    NOTE: I have taken an example of embeding media player as an alternative player in this example however as Balusc explains it is on you to choose an alternative player which can fit your client's requirement or the browsers which he uses.
    Hope,that helps you out :)
    REGARDS,
    RaHuL

  • How to convert an output retrieved from database to an excel sheet?

    Hello friends,
    I am preparing an online JSP based project for our training and placement department.
    In this context, I am showing an output into a JTable format to the user for the shortlisted candidates by retrieving this information from my database (MySQL).
    Now I need to convert this output into the Excel Sheet so that I can perform various operations over there.
    So, what are the things required to perform from my side for implementing the same.

    The easiest thing for you to do would be to save it as CSV (Comma Separated Values). In general, your fields would be separated by commas, and any fields that are not numbers would be surrounded with double quotes:
    1,"text",...
    Dates and times are semi-tricky, but excel is pretty good about accepting "YYYY/MM/DD" and "HH:MI AM" format.
    Other than that, you'll be learning the internal structures of Excel or perhaps there is a third-party library that can do this for you...

  • Inserting blank values and retrieving blank values

    I really want to Insert blank values into Oracle database,and also want to retrieve blank values from table.
    When I try to insert blank values ,Its inserting null values.
    I don't want to insert null for blank.
    Please provide me solution for this.
    Thank you

    user631179, logically if you have a descrition or other printable
    character column where the value is blanks you do not have a value.
    The data item is logically unknown or non-existent, hence NULL.
    You can assign blanks (spaces) for NULL in the querying program
    like SQLPlus does on display. The Pro*C and other language tools
    provides null indicator bytes for this purpose.
    UT1 > l
      1  select fld1, fld2, rpad(nvl(fld4,' '),10,' '), length( rpad(nvl(fld4,' '),10,' '))
      2* from marktest
    UT1 > /
    FLD1             FLD2 RPAD(NVL(F LENGTH(RPAD(NVL(FLD4,''),10,''))
    one                 1                                          10
    TWO                 2 USER51                                   10
                        4 USER51                                   10HTH -- Mark D Powell --
    Message was edited by: Mark to try to keep the test from requiring scrolling
    mpowel01

Maybe you are looking for

  • Sharing libraries on home windows network stopped after upgrade to 7.2.0

    Up until I upgraded to 7.2.0 I had no problems sharing my iTunes libraries across my windows desktop & 2 windows laptops. Now I can no longer share. Tried deselecting & selecting the share option. Tried pinging each machine. Tried turning firewalls o

  • How do you do a mail merge in ms word?

    Hello, I have the form letter created in Word and my list of recipients are in an Excel sheet. How do I do the mail merge so that each letter is addressed to one individual from the excel sheet? Do I have to type each person's info in manually? I hav

  • Quicktime.cpl corrupted

    My Itunes had a corrupted file, and would not open, it reccomended I run chkdsk, but it would only run the program in read-only mode, and get to 9% and find errors and instantly closed.   I uninstalled itunes, but it said I would need to uninstall qu

  • Can't upload Index.html in Business Catalyst

    I am building a new site. It's still under development. When I upload it to Business Catalyst i get the following message: Error uploading file index.html. Click Resume to try again. If this problem persists, try again later. I tried it several times

  • HElp with Reset keychain !

    Help please ! My login password and keychain password are diff ! I forgot the keychain password how do i reset it?