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 bkrike 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: andersonjb
  • Content: Threads
  • Order by date
  1. andersonjb

    javax.mail

    I am building email messages using the javax.mail and javax.mail.Internet packages. Unfortunately, the messages come across with the miscellaneous header stuff in the body of the message. How do I exclude it? This is what gets included before the actual text of the message: Mime-Version: 1.0...
  2. andersonjb

    truncating FileAppenders

    How do you stop the FileAppenders from truncating an existing log file each time log4J is restarted? The docs say call fileAppender.setAppend(true), and that true is the default. And yet each time we bounce our app server, Log4j truncates the existing logs.
  3. andersonjb

    Better performing SQL for finding mismatches

    I'm looking for a faster way of finding all records in one table that are not in the other. This code using a subquery is proving to be very slow- SELECT id, login FROM dps_user WHERE ltrim(rtrim(dps_user.login)) NOT IN (SELECT ltrim(rtrim(login)) FROM tempdb..all_ldap_users)...
  4. andersonjb

    RegExp under IE on the Mac

    This JavaScript RegExp works on IE and Netscape on Windows, and on Netscape on the Mac, but not on IE on the Mac. It fails when trying to match the pattern. function stripZeros(userId) { var pattern = new RegExp(/^([0\s]+)/); if (userId.match(pattern) != null) { var stuffToStrip =...

Part and Inventory Search

Back
Top