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

  • Users: Inandjo
  • Order by date
  1. Inandjo

    History of activity on oracle 10G DB!

    Hi, I have an oracle DB where some tables have been wipped out sometime between yesterday and last thursday. Is there a utility on oracle where i can just find when this was done, and(ideally) find the bastard who goofed on this one and nail him?? Thank you! La faim justifie les moyens!
  2. Inandjo

    Log too verbose with common-digester1.7.jar

    Hi, I have a process that extracts data from a database and transforms them into XML files. To do so, I use something like 20jars, and I have a batch file that is invoked to start the main class doing all the work. A the jars, there is commons-digester.1.7.jar which seems to have an extremely...
  3. Inandjo

    How to force the use of an applicationresources file??

    Hi, I'm using struts 1.2.8 along with JSPs in an application. As at now for the internationalization, I'm just using the normal mechanism just by specifying the path to the resources file in my struts config file. Now, I need to be able to switch from one file to another just by clicking a...
  4. Inandjo

    How to set custom environment variables at startup??

    Thanx mate!!! La faim justifie les moyens!
  5. Inandjo

    How to set custom environment variables at startup??

    Thanx sedj, but would i still get to retrieve the variable via System.getProperty("Property_name");?? Thanx La faim justifie les moyens!
  6. Inandjo

    How to set custom environment variables at startup??

    Hi, I am using tomcat 5.0 on a win2K box, and i cant seem to get an environment variable of mine to be set at startup. The idea is that I would have a variable called VARIABLEG, that i could setup at tomcat startup, and then retrieve this variable later in a java program, the following way...
  7. Inandjo

    Stored procedure error ora-00600 on oracle 8i!

    Hello, I'm a newbie to oracle, and created the following stored procedure: <quote> create or replace procedure myproc4(dno number, perc number) is cursor emp_cur (dept_no number) is select sal from emp where deptno=dept_no for update of sal; empsal number(8); begin open...
  8. Inandjo

    need helping in getting to know the tech...

    http://struts.apache.org/ That is not too much, is it?? La faim justifie les moyens!
  9. Inandjo

    Templating System?

    i have read about struts, and i would lke to know how it differs from velocity and what made you choose struts rather than velocity? La faim justifie les moyens!
  10. Inandjo

    Templating System?

    velocity is among the simplest i know of, i've been using it for the past 2 years to develop webapps! La faim justifie les moyens!
  11. Inandjo

    renaming tomcat installation dir

    you can rename it, but you may have to change a couple of things like environment variables (if you set some on that directory), and also if tomcat was installed as a service, you may have to uninstall the service and reinstall it! La faim justifie les moyens!
  12. Inandjo

    How to make apache work in conjonction with Tomcat?

    hi, i would like to have an example of configuration in order to make apache work with tomcat. I would also like to know if there is any program i have to install or it's a parameter thing to do on the httpd.conf?? thanx La faim justifie les moyens!
  13. Inandjo

    Using Trubine development kit with tomcat??

    thanx venu, i hav all the required libs in the myapp_name/web-inf/lib folder. I was using TDK so i just copied the directory under tdk/webapps/myapp_name to tomcat/webapps/myapp_name. I even tried to put a war file of the webapp in the tomcat webapps folder: still, it didn't work out! La faim...
  14. Inandjo

    Using Trubine development kit with tomcat??

    hi, i wanted to get an app developped under Turbine Development Kit 2.1 to run under tomcat 4.0( running as a service!). I couldn't find tomcat 4.0 so i had to get 4.1.29, installed it then tryed to copy everything from tdk2.1\webapps\myapp_name\WEB-INF\ to tomcat4.1.29\webapps\myapp_name. It...
  15. Inandjo

    How to get a specified number of rows to be returned?

    hi , i am writing a pager for an application, and i would like to know what SQL command i have to execute to have say row x to y in a result set. Thanx La faim justifie les moyens!
  16. Inandjo

    HOW TO GET THE YEAR IN A DATE OBJECT??

    thanx dude, i wasn't carefull enough about the calendar functions list. :< Thanx!! La faim justifie les moyens!
  17. Inandjo

    HOW TO GET THE YEAR IN A DATE OBJECT??

    hi, i have an date object &quot;birthday&quot;. How can i get the year on that object , since getYear() method is deprecated. Thanx La faim justifie les moyens!
  18. Inandjo

    How to write 2 selects, category and subcategory??

    hi all, i'm trying to have 2 select boxes on an html page: the first select would have main categories, and second select would have sub categories, depending on the item clicked in the first select. How can i write that in javascript? Can i have just an example that i can replicate? Thanx! La...
  19. Inandjo

    How to parse a string to a date??

    hi, am using jdk1.3.1, and i have a function to parse strings to date like this: public Date stringToDate (String date) { DateFormat df = DateFormat.getDateTimeInstance(); Date d = null; try { d = df.parse(date); } catch (Exception e) { ....... } return d; } The date string...
  20. Inandjo

    How to do this??

    hi, am looking for a free tool to dump DB2 data straight to a mysql table. What tools is best to do that, bearing in mind that it has to be free! thanks La faim justifie les moyens!

Part and Inventory Search

Back
Top