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!

Search results for query: *

  • Users: Kruzer
  • Content: Threads
  • Order by date
  1. 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
  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? Database is Oracle 11g. Thanks! Dano What's your major malfunction
  3. 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
  4. 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
  5. 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
  6. 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){...
  7. 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 = '%\%'...
  8. 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 = '%\%'...
  9. 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
  10. 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
  11. 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...
  12. 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
  13. 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...
  14. 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)...
  15. Kruzer

    JMeter Basic Authentication

    Anyone had problems with using the HTTP Authentication Manager element for JMeter? Dano dan_kryzer@hotmail.com What's your major malfunction
  16. Kruzer

    Solaris 8 thread process question

    I have a situation were I have some code that simulates 200 con-current (GET requests) users hitting a Solaris 8 2 CPU box and I'm able to watch one CPU processing hit a peak of 90% and the other CPU at around 20% working on a few threads. Has anyone seen or heard of a situation like this? I'm...
  17. Kruzer

    gcc and ld error - anyone seen this?

    gcc -Xlinker -shared -o ./SiteminderPlugin.so IdcString.o RefCountBuffer .o SiteminderPlugin.o StringUtils.o StrConversion.o IdcStringArray.o ld: 0706-012 The -h flag is not recognized. ld: 0706-012 The -a flag is not recognized. collect2: ld returned 255 exit status make: 1254-004 The error...
  18. Kruzer

    Need help with shared objects on a unix(aix) machine

    I created a simple file to understand the gcc compiler #include "stdio.h" void main() { printf("Hello World!"); } $ gcc -o hello hello.c gcc: hello: A file or directory in the path name does not exist. hello.c: In function `main': hello.c:3: warning: return type of `main' is not `int'...
  19. Kruzer

    HTTP Header size Limit?

    Anybody know the size limit for HTTP headers? I found this article on the bea.com site. "HTTP Max Message Size Specify the maximum HTTP message size allowable in a message header. This attribute attempts to prevent a denial of service attack whereby a caller attempts to force the server to...
  20. Kruzer

    Threading question VB

    Java developer needs help with VB 6 threading: How effective is spawning threads in a vb.exe? Are there any good examples of creating timed threads? What is the syntax of creating a thread in VB? I have a socket listener that waits for a trigger var that kicks of a function that makes a call...

Part and Inventory Search

Back
Top