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 SkipVought 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: *

  • Users: tbohon
  • Order by date
  1. tbohon

    Calling mail_files script from Perl

    I am working on an AIX v5 box and the SAs are unwilling to load any of the 'cool' Perl modules for me. What I need to do is send files to customers using an existing script called mail_files (it can be found at http://personal.ecu.edu/spraguem/mail_files.txt Everything I've tried has failed...
  2. tbohon

    Merge Join Finishing before Previous Step

    Paul: Yes, we went back and double-checked all of the settings, etc. when this problem first occurred. We're sorting on the first two columns - acctnr and facilitycode - and doing the merge join on acctnr to pull the facilitycode over to the result set. Tnx. Tom "My mind is like a steel...
  3. tbohon

    Merge Join Finishing before Previous Step

    We're fairly new to SSIS (SQL Server 2005) and, in our first team effort, we've run into a problem we just can't figure out. Two sources are sorted in two separate Sort operations, sent through a Merge Join to pull a facility code out of one file and insert it into the second one and the output...
  4. tbohon

    Removing Leading and Trailing ' " ' Characters

    That is what I needed - well, that plus a night's sleep to ponder the problem ... <g> Thanks all - it's working great now. Best, Tom "My mind is like a steel whatchamacallit ...
  5. tbohon

    Removing Leading and Trailing ' &quot; ' Characters

    I need to read through a text file and examine each line. If the leading and/or trailing character is a double-quote I need to truncate those characters. However, there are double-quotes within the line which are valid and can't be changed. I'm not looking for a solution, only some pointers -...
  6. tbohon

    Too Many Files to List with 'ls'

    Annihilannic: Thanks - I'll give that a shot. We just added a third facility to the mix so I'm getting lots and lots and LOTS of messages every hour now. Appreciate it. Tom "My mind is like a steel whatchamacallit ...
  7. tbohon

    Too Many Files to List with 'ls'

    PHV: Works as advertised! One more question on this general topic if I may ... This same script failed this morning with this error: rm -f /interface/ftp/prod/hpf/files_out/hci/* ksh: /bin/rm: 0403-027 The parameter list is too long. I've been told by a 'casual' Unix user that I could...
  8. tbohon

    Too Many Files to List with 'ls'

    I'll give that a shot - haven't tried this particular combination :) Thanks! Tom "My mind is like a steel whatchamacallit ...
  9. tbohon

    Too Many Files to List with 'ls'

    Here is the entire script that creates the file - it has ls -ltr in this latest attempt: #!/usr/bin/ksh cd /u/live/ftptemp ls -ltr ../filesin/*.ps > files.list And here is the error message I get when the number of files exceeds some value (not sure exactly what that is, unfortunately)...
  10. tbohon

    Too Many Files to List with 'ls'

    I have a .ksh script on our AIX 5.x box which goes to a specific directory every hour and pulls the files to process and send to another server via ftp. However, when the number of files becomes large (tonight there were almost 6000 of them, other times there are zero or just a couple of dozen)...
  11. tbohon

    No ftp Connection

    I run a series of ftp scripts on an AIX box, connecting to both Unix and Windows servers for the drops. I'm occasionally having a problem with being unable to connect to the other server - 'ftp connection refused' type messages (although there are variations) - which, because the users aren't...
  12. tbohon

    Default Textbox Field

    Is there a way in HTML to specify that a certain field is the default and to give it focus when the page loads? I have a login screen and would like the user ID field to have focus with the cursor sitting there when the page loads --- but I'm unable to figure out how to do it (or even if it can...
  13. tbohon

    PhP/MySQL Script Failure

    Miros: Error checks you suggested showed no database opened. Eventually traced it back to my config file - one silly little character off in the database name ... obviously the "do what I meant not what I said" flag hasn't been turned on here ... [wink] On the positive side, the debugging was...
  14. tbohon

    MySQL Query Problem

    r937: Yes, it was a php problem ... or, rather, a fat-finger-in-the-config-file problem caused by the loose nut in front of the keyboard. Problem was a one character typo in the config file ... fixed, works ... On the other hand, it was really good for me to work through the mysql and php...
  15. tbohon

    MySQL Query Problem

    Follow-on information: Here is the table structure of the categories table: id tinyint(4) name varchar(20) Here is a query and results from that query to show what is in the table: SELECT COUNT( * ) AS `Rows` , `name` FROM `categories` GROUP BY `name` ORDER BY `name` LIMIT 0 , 30...
  16. tbohon

    MySQL Query Problem

    As I don't know PHP or MySQL very well, I've been working through the text "Practical PHP and MySQL: Building 8 Dynamic Web Applications" this weekend. Everything was going well until I began working on the shopping cart application. Here is the code (which matches the book...
  17. tbohon

    PhP/MySQL Script Failure

    Note that I've cross-posted this to the MySQL forum as I'm not certain where the problem lies ... MySQL or PhP. Tnx again. Tom "My mind is like a steel whatchamacallit ...
  18. tbohon

    PhP/MySQL Script Failure

    As I don't know PHP very well, I've been working through the text "Practical PHP and MySQL: Building 8 Dynamic Web Applications" this weekend. Everything was going well until I began working on the shopping cart application. Here is the code (which matches the book character-for-character) and...
  19. tbohon

    Selecting Files based on content value

    Thanks. I'll give it a shot. "My mind is like a steel whatchamacallit ...
  20. tbohon

    Select Files Based on Content

    This issue has been resolved. "My mind is like a steel whatchamacallit ...

Part and Inventory Search

Back
Top