Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. rbeech23

    Printing selected lines of a file

    Hello I have a series of files whereby I want to miss out the first set of lines based on a key word I'm running a korn shell script so can get the start record using grep -n "Value" and set this to a variable ie start_rec What I'm hoping I can do is use awk NR to parse the file, if NR >...
  2. rbeech23

    Problem replacing carriage returns

    Hello I'm extracting information from an informix database via a java program. The program uses an xml file to generate it's sql which pushes the data to a flat file. This is then picked up by a stored procedure to populate a sql server reporting database expecting a set number of columns. The...
  3. rbeech23

    Korn shell script question

    Apologies, stars now awarded and duly so !
  4. rbeech23

    Korn shell script question

    Great replies, my problem is solved. Thanks very much
  5. rbeech23

    Korn shell script question

    Hello, I've written a script in korn shell which does the following: I’ve got a process that’s pulling data from a database via middleware but missing odd records. The only apparent way of checking is via a log file which for every new record increments by one, so something like: 4010203040...
  6. rbeech23

    Field constraints within tables

    I've a create statement with a field which reads creat table field1,field2 etc,`Gender` enum('Male','Female') NOT NULL default 'Male' The problem I have with the Gender field is I can update values and set Gender to '' which I dont want, I thought the enum option would prevent anything other...
  7. rbeech23

    Tomcat logs in dos window

    Using tomcat 4.0.4 on windows 98 puts all the output in a dos window which I cant read once scrolled upwards. Is there a log file this information goes to or this there a config setting I can adjust so I can see all the output in an editor ? Any help appreciated. Thanks
  8. rbeech23

    Automatic page refresh

    I've a web site which doesn't refresh pages when data is removed from a database (mysql). Is there a way of automatically refreshing the page ? I've tried all the no cache commands and none of them work. I'm using jsp/htm/java/mysql to run the site. In javascript I can use a refresh button with...
  9. rbeech23

    Page refresh

    Thanks. The site I'm developing is www.meetonholiday.com/Welcome.jsp (note the capital W). The site goes live once I've ironed out odd bits like this. You'll need two images to test what I'm on about, sizes should be less than 20Kb You can log in using login user105 password pass123. This takes...
  10. rbeech23

    Page refresh

    I've an option on a web page to upload a photograph. This involves the user browsing his local drive for an image then clicking on upload. On success another page comes up displaying the photograph. All works fine. The user also has the option from this page to upload a different photograph. On...
  11. rbeech23

    Java script function help

    Apologies for that, I've managed to figure it out now. Thanks for your time
  12. rbeech23

    Java script function help

    The code populates the resort pull down menu via the function ChangeResortOptions. This works okay. The reason for the thread is that I cant get the subresort pull down menu to work once resort has been selected. This should work via the function ChangeSubResortOptions which is almost a mirror...
  13. rbeech23

    Java script function help

    The popup.js file shouldn't actually be in there, it performs other functions elsewhere, if you remove the reference it doesn't affect the original problem I still have Any other ideas appreciated
  14. rbeech23

    Java script function help

    Below is an html extract and a java script function. The first box on the page allows you to select a country based on option values, once selected a javascript function runs which drills into an array and picks up all the resorts in that country. Fine. When an option from the resorts box is...

Part and Inventory Search

Back
Top