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 Mike Lewis 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. tjones9034

    Sequence

    The problem has been taken care off. Thanks.
  2. tjones9034

    Sequence

    Hi all, I have a sequence on a column which gets populated whenever a any user inserts a new record. Now we would like to restrict the sequence population only to certain users and allow superior users to insert their own values in the field via Form rather than the sequence. Is there any way...
  3. tjones9034

    ohci1394 driver

    When you boot he CD and get to the first installation screen, NOTE: Depending on your needs: Type Linux nousb......then enter if no need for usb. Type Linux noprobe......then enter if no need for RedHat to probe your hardware. Type Linux nofirewire......then enter if no need for additional...
  4. tjones9034

    ohci1394 driver

    Never mind guys. I found a solution. Thanks all.
  5. tjones9034

    Resize NTFS Partition

    You can do pretty anything with any filesystem with Partition Commander. I use it all the time. In fact. I just used it to resized and changed NTFS to FAT32 yesterday. Go yo http://www.v-com.com/product/pc8_ind.html You will see Partition Commander. Very good product. Good Luck!!! Timi
  6. tjones9034

    ohci1394 driver

    Hi all, I am trying to install Linux RedHat 9.0, but the installation freezes on me at "Loading ohci1394 driver"......and stays there for ever. This installation was on my HP Pavillion laptop with Intel P4, WIN XP PRO. What suprises me most was that I installed the same software on...
  7. tjones9034

    SQL*Loader was unable to find oran8.dll

    I am trying to use SQL*Loader and getting the following error either with a shell script, or windows DOS. The TOAD was unable to finish the job either. I changed the SQL*Loader file, reinstalling the Oracle Database Utilities.....no fix. Is there any patch to fix this problem or if I can...
  8. tjones9034

    INSERT A LARGE RECORD TO AN EMPTY COLUMN

    Thanks guys, I was able to come up with this program below and it worked perfectly. DECLARE CURSOR cur_wo IS SELECT a.workorder_no AS workorder_no, a.loccode FROM z_activity a, z_invoice i WHERE a.item_no = i.item_no; wo_rec cur_wo%ROWTYPE; BEGIN OPEN cur_wo; LOOP FETCH cur_wo INTO wo_rec...
  9. tjones9034

    INSERT A LARGE RECORD TO AN EMPTY COLUMN

    I have a need to populate a table with a large records and lot of colums. I have the following tables involved: z_location, z_activity and z_invoice. I added a new column (workorder_no)from z_invoice to z_location.....now having the following colums: Note: Workorder_no is an empty column...
  10. tjones9034

    Maximize Window in Oracle 9i Form

    That is exactly what I mean.
  11. tjones9034

    Maximize Window in Oracle 9i Form

    How can I maximize windows in Oracle 9i Form. I tried using the WHEN-NEW-FORM-INSTANCE trigger Set_window_property(forms_mdi_window,window_state,maximize);, I got nothing, also tried to increase the window's width and height, no luck.
  12. tjones9034

    Which fire first , On-populate-details or On-clear_details?

    On-populate-details fires when Form Builder needs to fetch records into a block, while On-clear-details fires when Form Builder needs to clear those records To answer the question the On-populate-details fires first, and On-clear-details fires afterwards.
  13. tjones9034

    For Loop

    Thanks, that worked. I was waiting to see if it goes through in production. The error did not occur anymore.
  14. tjones9034

    For Loop

    Hi Guys, Can someone tell me what is wrong with this For Loop code. In a nut shell, the code is simply for assigning cards to our clients depending on how many cards they requested for. The problem is they have been complaining that when they click on the "Request For A Card&quot...
  15. tjones9034

    Calling Forms Modules in 6i

    Thanks lewisp and Dima, finally, I was able to achieve the objective. This will really help in the upcoming project since nobody including myself knows how to achieve this result. I was able to pull up more than three windows for the analysis. Appreciate it!!! :)
  16. tjones9034

    Calling Forms Modules in 6i

    Thanks guys!!! So far so good, I got the List Item created. Dima was right about me not finding the WHEN-LIST-CHANGED trigger. I was actually trying to create the List Item Trigger on my existing item. By the way, I was able to create the List Item, the trigger, which compilled sucessfully...
  17. tjones9034

    Calling Forms Modules in 6i

    When I research this issue further on Oracle website, I found out that WHEN-LIST-CHANGED Trigger is posible in Form/Block/Item levels, but the problem is when you try to create this trigger under an item, WHEN-LIST-CHANGED Trigger" was not listed. It was listed in both Form and Block...
  18. tjones9034

    Calling Forms Modules in 6i

    The WHEN-LIST-CHANGED trigger does not exist at the Item level, only at the Form and Block level. That exacly is my problem. If I place this trigger either on the form or block level, how will this trigger call all the modules I wanted to listed in the combo list....just like LOV. Do I write...
  19. tjones9034

    Calling Forms Modules in 6i

    Hey Lewisp, Can you expanciate on putting the OPEN_FORM into any non-validation style triggers. I will not mind the steps. I do not have any idea of this step. I already created Form Level Trigger for my "WHEN-LIST-CHANGED Trigger". Inside the PL/SQL Editor were...

Part and Inventory Search

Back
Top