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 strongm 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. 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...
  16. Kruzer

    Active Directory, how to locate two forrests

    I have code in a VB 6 app that scans thru a single forrest right now and I'm trying to figure out how to grab the second forrest. What does Global Catalog give me for Acive Directory? Both forrest can be accessed by the single server (MS domain), what code segements do I need to add to scan for...
  17. Kruzer

    ASP source needed to update IIS Virtual Dirs

    I would like to create a script that could save me some time in creating websites within IIS. A on-time script where I can build the VD, something to start with so I can understand what IIS needs. Thanks. Dano dan_kryzer@hotmail.com What's your major malfunction
  18. Kruzer

    ASP source needed to update IIS Virtual Dirs

    Has anyone written or seen code that updates virtual directories within IIS using ASP? Dano dan_kryzer@hotmail.com What's your major malfunction
  19. Kruzer

    Update MS WORD properties

    Has anyone ever used the POI API to update MS document properties before? I found an example here:http://jakarta.apache.org/poi/hpsf/how-to.html but when I tried the example, it doesn't appear that the latest POI jar file(s) have the Classes MutableProperty, MutablePropertySet, MutableSection...
  20. Kruzer

    FileOutputStream question

    I something similiar to the post(s) about ZIP compression and I would like to know how to convert the snippet to stream binary files to a zip file. String file = "C:\\test.zip"; String[] args = { "C:\junk.pdf" }; //FileOutputStream f = new FileOutputStream(file)...

Part and Inventory Search

Back
Top