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 TouchToneTommy 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: JOBARAM
  • Order by date
  1. JOBARAM

    retrieving records by timestamp

    Hi Tony, I have done some thing similar and it works: SELECT * FROM table_name ORDER BY datetime_field ASC LIMIT 0, 2 Thanks mate Jo
  2. JOBARAM

    retrieving records by timestamp

    hi, I have the following table: ID |Type |TimeStampe 10 |1 |2005-04-25 16:37:58 10 |2 |2005-04-25 16:39:58 10 |3 |2005-04-25 16:38:58 10 |4 |2005-04-25 16:38:58 I need to create a query that will get me 2 types (limit 2) that have the oldest timestamp (1 and 3). How do I do that? Thanks Jo
  3. JOBARAM

    uninstalling perl 5.8

    Thanks Paul for the help. I will do as you advised. Would you have any idea how to access registry keys from a a dos script? Thanks again Jo
  4. JOBARAM

    uninstalling perl 5.8

    My os is Windows
  5. JOBARAM

    uninstalling perl 5.8

    Hi Paul, Thanks for your reply. Is there any tool or command that can do the uninstallation for me? I am trying to avoid direct access to the registry. I have come across a few solution that doesn't work for me: % sudo port -v -d uninstall perl5.8 or % vrmperl Do you have any sugestions? Thanks Jo
  6. JOBARAM

    uninstalling perl 5.8

    Hi, I am building an installer that installs perl 5.8.2 and I really would like to know how to silent uninstall it. I would like to use a batch file for that. Please advise. Thanks Jo
  7. JOBARAM

    extending history log files

    hi, My application uses Log4j as its logger. Log detailes is written to logger name - xxxx.log. This log file is saved for one day more only. its name is changed to xxxx.log.19-09-2000(the day it was created). I need to save the logs for a period of more the 2 days. Should I use log4j.properties...
  8. JOBARAM

    Cannot retrieve shared printers description

    Hi, I need to retrieve the PC's Printers shared names, not the name of printers the PC uses. I am using: PrintService[] services = PrintServiceLookup.lookupPrintServices(DocFlavor.SERVICE_FORMATTED.PRINTABLE,null); but the services retrieves the name of printers the PC uses and not the shared...
  9. JOBARAM

    Different screen withing a single jsp form

    Hi, I have few radio button and I need each one that is marked to open a different screen/table on top of the one that was opened previously. Please advise Thanks Jo
  10. JOBARAM

    between time frame problem

    Hi helper, I have Start and End columns, type Time. I need to do something when the current time is in between Start and End. I use the following: DATE_FORMAT(now(),'%H:%i:%s') Between Start AND End It works great if the time in the same day, it does'nt work if Start is 23:00:00 and End...
  11. JOBARAM

    trim the time from datetime

    hi, I have a datetime field 'LastActivationTime' and I want to create a query that add 1 to different field every half an hour from current time. I tried the following: DATE_FORMAT(LastActivationTime,'%H:%i:%s') + 0.5 < DATE_FORMAT(now(),'%H:%i:%s'). Can I do that? Can I put LastActivationTime...
  12. JOBARAM

    Table dissapeared from db

    Thanks mate, I'll do that. Yossi
  13. JOBARAM

    Table dissapeared from db

    Jo, Thanks for your reply. I use a simple drop table. many of the times it works but one time unexpectedly it faild and from that point I couldn't create\drop the table again. Maybe its related to configuration of the db via My.ini file? or some thing else??? Thanks again Yossi
  14. JOBARAM

    Table dissapeared from db

    Hi, I'm using Innodb type tables in my db. I'm running a routine that should drop a table and create it again. running this routine several times caused the table not to be created again, so if you type ' Show tables' you don't see it, but after creating it again despite the fact that you see an...
  15. JOBARAM

    Formatting dates

    Yes I have noticed Mysql has only one format to enter Dates. Tanks for the tip.
  16. JOBARAM

    Formatting dates

    Hi, I created a big Mysql database that includes dates values. I need to convert all dates to a specific format. Can I do it through Alter Table ? How can I change all Dates format if not? Thanks Yossi
  17. JOBARAM

    upper case dumping data problem

    hi, The names of my tables are in uppercase. When I dump the contents of the database to file, using mysqldump, and then read it back in on a linux machine, or on the windows machine which it was dumped on, the tables are created with lower case names??? (3.23.55 version of mysql and win2k)...
  18. JOBARAM

    Cannot watch all string expression

    Hi, While debuging my code Using JDeveloper I have lots of String parameters with very long values. Trying to watch the value in Watches, Data or Smart DAta gives me part of the string. How can I retrieve the all string for debuging perposes only? Thanks Yossi
  19. JOBARAM

    Changing mysqld-nt with mysqld-max-nt problem

    Thanks mate....
  20. JOBARAM

    Changing mysqld-nt with mysqld-max-nt problem

    Hi, As you anderstand I'm new to mysql. I installed Mysql 3.23.55 on my Win2K OS and as default the server executable is mysqld-nt.exe I would like to replace it with mysqld-max-nt and all I tried including mysqld-max-nt --install give my a notice that the service allready exist. I even disabled...

Part and Inventory Search

Back
Top