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

  1. bundyld

    Lucene Indexer

    Sedj, Thank you very much. This is exaclty what I was looking for! Lance
  2. bundyld

    Lucene Indexer

    Hello all, I am not sure if this is the appropriate place for this post or not, however, I did a keyword search on lucene and this seems to be the place that questions are being asked. I am creating a lucene indexer java project to index a couple of my websites. I have the search working...
  3. bundyld

    Passing A Single String to a Stored Procedure

    cool, thank you. I did some research and found it. We have all of our views replaced with stored procedure calls now! SQL Statment execution times are about 20 times faster, from 130ms to 15ms on average. Thanks again, Lance
  4. bundyld

    paging of records using jsp

    If you install the jar for the tag lib there are jsp examples that have the paging implemented. Here is how I did it. //Import the tag lib to the .jsp page. <head> <%@ taglib uri="/WEB-INF/taglib139.tld" prefix="pg" %> </head> /* This line will be added above the records you want paged. The...
  5. bundyld

    Passing A Single String to a Stored Procedure

    Hello all, I have been reading through many posts looking for a solution to something that I want to try at work! I have seen many posts about sending a array list of strings with values to a Stored Procedure to make a select statment on a database. My goal is to have a sql statements where...
  6. bundyld

    Tomcat 5.0 & Reg Ex Tag Lib

    Hello all, My company has recently installed Tomcat 5.0 which is using JSP 2.0. We are having some issues with a Regular Expression Tag Lib that we were using with 4.1.27. When the jsp loads we have the REG EX escaping any apos, quotes or slashes that will be populated in input text fields...
  7. bundyld

    paging of records using jsp

    Seems like a lot of work going on here, Did you read anything about using the paging tag lib for jsp? We needed to implement paging on our companies software and found a paging tag lib for jsp that only took 1 hour to implement for about 500 jsp pages. No backend work! It is only about 8...
  8. bundyld

    display of picture from database using JSP

    Do you have servlet mapping turned on inside the web.xml file? If so, are you mapping the servlets without the ProjectName/servlet/ServletName "/servlet/" in the middle of the path?
  9. bundyld

    display of picture from database using JSP

    Yes it is always a bad idea to store blobs inside of a database. One of the most obvious reasons is because it will make your database size grow quickly. And if you need to perform things such as backup and fail over restors it could be a timely process restoring a database with blobs in it...
  10. bundyld

    Re-ordering html table rows with javascript?

    Hello All, I was wondering if anyone knows of a way to reorder a html tables <tr> elements using javascript? Is it possible? Where do I begin? Thank you in advance, Lance
  11. bundyld

    Calling cmd.exe and an executable from a servlet

    Ok, I took the cmd.exe out, It looks like the process has started but it is just sitting there. It is not executing the commands that were passed to it! It looks like it was doing the same thing with cmd.exe there was 6 of them running! Any ideas of why it might start the process and not...
  12. bundyld

    Calling cmd.exe and an executable from a servlet

    Hello all, I am having a problem using exec() to call cmd.exe for running an application! For some reason if Tomcat is started as a system service in windows it will not launch the command prompt, However, if I start tomcat through the /bin startup.bat the servlet has no problem launching...
  13. bundyld

    Windows Services &amp; Permissions?

    Could you please explain what you are refering too in more detail? Sorry for the trouble
  14. bundyld

    Windows Services &amp; Permissions?

    Hello all, I am having a problem with launching a command line executable from a java servlet through tomcat. If I have tomcat started as a system service my servlet can not launch the command prompt executable to run my application. However if I turn the tomcat service off and start tomcat...
  15. bundyld

    Help with launching a SQL Server 7 Job from a Stored Procedure

    Thank you ClaireHsu, This post worked.
  16. bundyld

    Help with launching a SQL Server 7 Job from a Stored Procedure

    Hello, Pretty self explanitory, I need to know how create a stored procedure that will start a SQL Server 7 Job that is stored on a database. Any help is welcome. Thank You, Lance Bundy MIS The Commerce Group
  17. bundyld

    Help with launching a SQL Server 7 Job inside of a java applet?

    Ok, figured it out, I wasn't aware that you could use a Stored Procedure to Call a Job that holds Stored procedures, So. Create Stored Procedure that starts a Job that executes stored porcedures. Then you only have to make one call to a SP in the applet and that SP will lanch the Job that...
  18. bundyld

    Help with launching a SQL Server 7 Job inside of a java applet?

    Thanks for the suggestion but I don't want to call each procedure, I want to call a job that has the procedures and steps for each on. Is there any way to call a Job? I already know how to call procedures not the problem here. thanks again for helping all you can. Lance Bundy MIS The...
  19. bundyld

    Help with launching a SQL Server 7 Job inside of a java applet?

    Hello all, I was wondering if it is possible to Call/Start a Stored SQL Server 7 Job, (Sequence of Stored Procedures that have to execute in a specific order.), from a Java Applet? If anyone can point me in the right direction or give any advice I would be very thankful. Thank you, Lance...
  20. bundyld

    Enterprise Manager not seeing backup server for log Shipping

    Reinstalling Enterprise Mangager for SQL Server 7, solved this problem.

Part and Inventory Search

Back
Top