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 Wanet Telecoms Ltd 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. ctyankeeinok

    HP printer causes USB backup drive to disappear

    Thanks for the suggestions and dialogue. I was able to get it the printer working properly and coexisting with the Seagate drive. I deleted the printer, uninstalled the driver, rebooted, and re-installed the printer with a new USB cable. I am not certain if it started working because of the...
  2. ctyankeeinok

    HP printer causes USB backup drive to disappear

    Also - I did have an older HP printer connected to this computer along with the backup drive with no problems.
  3. ctyankeeinok

    HP printer causes USB backup drive to disappear

    Just installed a new HP Envy 4500 printer on my computer that is running Win XP and has a Seagate GoFlex external drive. When the printer is connected (USB), the Seagate drive disappears. If I disconnect the printer USB cable, remove and reconnect the USB for the backup drive, the drive...
  4. ctyankeeinok

    Displaying images with servlets in emails with Outlook 2007

    It is a java program that generates the servlet. I thought maybe someone had done the same and that there might be an issue with how the code was written. As you have correctly noted, the solution is not specifically a java issue, but it is one that programmers have had to work around. Maybe...
  5. ctyankeeinok

    Displaying images with servlets in emails with Outlook 2007

    As you can see I received an overwhelming flood of responses. However, in the interest of posterity, it has been solved and here is the solution: SOLUTION: The URL for the image servlet must be http, not https. I am not making this up - stupid Microsoft. I cannot imagine why they would block...
  6. ctyankeeinok

    Displaying images with servlets in emails with Outlook 2007

    We have a servlet that will display a barcode and we are to using it in an email. It works great in everything except Outlook 2007. The img tag reads like a gif, but the servlet serves up the appropriate image based on the name of the gif. Outlook 2007 still blocks it. I have seen other...
  7. ctyankeeinok

    silent install of bar code scanner with devcon.exe

    I am writing a script (using AutoIT) to do a silent install of a HHP 4600 bar code scanner. I can install the scanner using the New Hardware Wizard with no problem. However, right clicking on the .inf file and selecting Install does nothing. I tried using the following to no avail: rundll32...
  8. ctyankeeinok

    Oracle Synchronization question

    LKBrwnDBA - You interpreted my DB change correctly - I don't want to do a schema change every time I have an event go offsite. Thanks for the tip on Streams. I'm looking into it.... Any other ideas out there are welcome as well...
  9. ctyankeeinok

    Oracle Synchronization question

    One more requirement - I don't want to have to implement a database change every time we have an event. Events happen year round at varying times. I would rather have a tool where we can identify the event and use the same scheme (other than the event ID) for each event as we need to replicate.
  10. ctyankeeinok

    Oracle Synchronization question

    I will look into that. One more item - any connectivity between the remote database and the home database will be done over the internet at varying levels of performance.
  11. ctyankeeinok

    Oracle Synchronization question

    I am looking for a way to synchronize selected data between two databases. I have a "home" database that consists of all of our data related to all events. We then take a copy of all the data for a specific event and load it onto another portable server. At the event site, we then use the...
  12. ctyankeeinok

    Implicit Commit Question

    Perfect. That is what I suspected, but I wanted to be certain. I could not find it in the docs (I know it must be there somewhere). Thanks for the help!
  13. ctyankeeinok

    Implicit Commit Question

    Simple question - shaking the rust off my brain... There is a java program that calls an Oracle 9i function, which in turn calls multiple Oracle procedures and functions. Unfortunately, no commits are in the code. Is the commit done when control is returned to the java code, or is it possibly...
  14. ctyankeeinok

    Migrate Outlook XP pst to Vista Mail

    Thanks for the prompt reply. I am not sure if the email addresses to save are in the address book or contacts. I could not get Outlook to run on the failing machine (it was going down fast!). Can I rename the old Outlook file to save.pst and open it in Vista to see what is in it?
  15. ctyankeeinok

    Migrate Outlook XP pst to Vista Mail

    I recovered an Outlook.pst file from a failing machine running Office XP and want to migrate the contents to a new machine running Vista. I want to bring over all the old messages, folders, and address book. I have not done this migration before and I don't want to mess it up ;-)
  16. ctyankeeinok

    More efficient query than what I have

    I tried willif's suggestion on the MINUS and the difference is tremendous (42 sec. to 5 sec.in my test system). I also learned a new trick along the way - my delete was incorrect, as I should have matched on two columns. After some discussions with co-workers, I learned how to handle the two...
  17. ctyankeeinok

    More efficient query than what I have

    I want to know how to most efficiently do the following query: I need to remove entries in a table if there are no matching entries in two other tables, as well as a recursive look at another column in the same table. What I currently have is this (simplified): delete from table_a where...
  18. ctyankeeinok

    inserts/updates/deletes with no commit

    Great answer SantaMufasa. Thanks for taking the time to expound on the subject. I am with you on when the commit or rollback should occur. Now I just need to figure out what the intent is on the return (commit or rollback), so more sleuthing on my end.... Thanks again!
  19. ctyankeeinok

    inserts/updates/deletes with no commit

    Good info. I would like more info on my specific issue (if possible). Here is what is happening - a java program using jdbc calls a proc which updates tables, but may do a return without a commit. Will a commit occur after the proc returns the result? Will it occur later? Will it rollback...

Part and Inventory Search

Back
Top