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 wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Kruzer

  1. Kruzer

    SQL code to check for records 365 prior to today

    do you have an alternative to using the DateADD() function? Dano What's your major malfunction
  2. Kruzer

    SQL code to check for records 365 prior to today

    I would like to write some SQL to gather all of the records that meet the condition of todays date and everything prior to 365 days... where field1 (DATE now <= 365 days) can someone provide a better way of doing this in SQL? Thanks! Dano What's your major malfunction
  3. Kruzer

    SQL code to check for records 365 prior to today

    I would like to write some SQL to gather all of the records that meet the condition of todays date and everything prior to 365 days... where field1 (DATE now <= 365 days) can someone provide a better way of doing this in SQL? Database is Oracle 11g. Thanks! Dano What's your major malfunction
  4. Kruzer

    apache mod/filter update html source of the page

    Is there a mod or filter i could use for apache to remove say <!-- --> tags from a html page before displaying the html page? Dano What's your major malfunction
  5. Kruzer

    How to link a file system path

    Is there a way in WebSphere to make a map a URL call, i.e. "a href=" in a JSP to located a WebSphere hosted file system to retrieve a file? i.e. <a href="<virtual host>\project\files"></a>? Thanks in advance. Dano What's your major malfunction
  6. Kruzer

    How do you know if the DB server is UTF8?

    db server = SQL server 2k Where do I go to determine if the database was set-up as UTF8? Enterprise Manager? Dano What's your major malfunction
  7. Kruzer

    Building a DOM reference dynamically

    Thanks Dude! Taking the code a little further...the primary file object needs to be on the page. So I want to create a <div> cell that contains the file reference and update the value. var f = document.forms['upLoadBy'].elements['primaryFile'+row].value; if(f == null || f == ""){...
  8. Kruzer

    Building a DOM reference dynamically

    Having a troubles grabbing a dynamic input name object when calling the onClick="" event. How do I apply the parameter "row" to the primaryFile object so that when a user clicks on the button, the function only uses that row? function uploadFileWindow(row){...
  9. Kruzer

    Need some SQL update help

    I need to update some records by removing prefixes from a value in several hundred records. current value is "UUU\joeuser" need the value to be "joeuser" How would I write the SQL query to update multiple records in the database so that the prefix is removed? UPDATE Table SET dUser = '%\%'...
  10. Kruzer

    SQL update query Help

    I need to update some records by removing prefixes from a value in several hundred records. current value is "UUU\joeuser" need the value to be "joeuser" How would I write the SQL query to update multiple records in the database so that the prefix is removed? UPDATE Table SET dUser = '%\%'...
  11. Kruzer

    Is there a Open Source Java Dictionary?

    Yeah the link you sent is what I found too. Also, found this "Red Pirahna" app that might give me a start. Dano What's your major malfunction
  12. Kruzer

    Is there a Open Source Java Dictionary?

    I'm trying to build a process similar to Google's "Did you mean". If a user types in a word, I want to display the similar sounding word(s) and corrections to the word. Anyone know of a similar Java API? Dano What's your major malfunction
  13. Kruzer

    Need suggestions on a Bea Portal pattern

    The BEA portal application will be call center information website were about 12,000 users will be using this app for policies/ content viewing. I work for a content management company and I'm implementing the companies API into call center portal application. There is already an established...
  14. Kruzer

    Need suggestions on a Bea Portal pattern

    The Java pattern I was thinking of using would be JSP (portal), Tag Libs, Interface classes, DAO/Value objects. Any other suggestions/changes? Thanks! Dano dan_kryzer@hotmail.com What's your major malfunction
  15. Kruzer

    Active Directory, how to locate two forrests

    The code is from an existing developer :) ...I want leverage the code (AD calls) he had with the new code. Thanks for the critiques. getIntranet and getExtranet are function parameters passed when the function is called. Public Function loadAllMetaForCache(ByVal getIntranet As Boolean, ByVal...

Part and Inventory Search

Back
Top