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

  • Users: amillia
  • Order by date
  1. amillia

    Retrieving ADO dataset from Oracle Package

    The Oracle stored procedure below is called into an asp page as an ADO dataset. CREATE OR REPLACE PACKAGE BODY "PACK_CHARLESTON" AS PROCEDURE CHARLESTON (JKNUM OUT o_JKNUM, JKNAME OUT o_JKNAME, BUILD OUT o_BUILD) IS -- To retrieve the...
  2. amillia

    Add todays date to field when other field is changed

    Thank you very much for your help. I changed the code a little because what I realized I really needed to do was set the field in the asp page when the record set was pulled. Here is the jest of the code. <script type="text/javascript"> var now = new Date(); function putDate(now) { if...
  3. amillia

    Add todays date to field when other field is changed

    I have a cHTML page with a date field called obj_lmt_dte which I need to insert todays date and time into when the a field called obj_lmt is entered. The format for the date field I need is 5/5/2007 1:02:03 PM. I am trying to build the script myself but I don't know javascipt too well so any...
  4. amillia

    Trigger ora-04091 error mutating table

    Thank you, this works great. You made my day.
  5. amillia

    Trigger ora-04091 error mutating table

    I just thought I can make this alot simpler by putting a timestamp into another table when an update occurs to the user_info table. I don't really need the username and date from the user_info. All I need is a table to hold each time a user logs in. That should be simple. I will keep working...
  6. amillia

    Trigger ora-04091 error mutating table

    The login trigger is not an option because the system we are using for a front end is pooling sessions. What do you mean by statement level?
  7. amillia

    Trigger ora-04091 error mutating table

    I am trying to write a trigger that when the user_info.ui_lastlogin is updated then I want the data sent to another table. The point of this is that the user_info table is only keeping up with the last time a person logged in and their user name. We need every time a person logs in and their...
  8. amillia

    dates for the past 8 weeks plus 4 weeks into the future

    I changed the <=7 to <=8 and it works. Thank you very much for this. Excellent.
  9. amillia

    dates for the past 8 weeks plus 4 weeks into the future

    When I ran it it is skipping a day. Here is the table data SCORE SHOP WEEK_ENDING 1.5 722 10/9/2006 1.6 722 10/16/2006 1.65 722 10/23/2006 1.45 722 10/30/2006 1.85 722 11/6/2006 1.95 722 11/13/2006 1.75 722 11/20/2006 1.85 722 11/27/2006 1.95 722 12/4/2006 Here is the output of the query...
  10. amillia

    dates for the past 8 weeks plus 4 weeks into the future

    sample data from table SCORE SHOP WEEK_ENDING 0.75 722 11/21/06 0.1 722 11/28/06 2 722 11/14/06 1.5 722 11/07/06 1.7 722 10/31/06 1.7 722 10/24/06 1.4 722 10/17/06 1.22 722 10/10/06 1.4 722 10/03/06 1.5 722 09/27/06 1.12 722 12/05/06 What I need output from the query SCORE...
  11. amillia

    dates for the past 8 weeks plus 4 weeks into the future

    This is difficult to even understand, sorry but Let me try to clarify. Week_ending is actually a name of a field in a table and is one day which will be filled in one time on every Monday. So for this Field Week_ending I need the Week_ending and the other fields for the past 8 weeks plus a...
  12. amillia

    dates for the past 8 weeks plus 4 weeks into the future

    I need the dates from the field week_ending for the past 8 weeks also I need the next 4 week dates and I have to have it under the same field name because I am using it with coldfusion charts. Can anyone help. Some of my code: SELECT shop, (Five_S_tbl.week_ending and Five_S_Tbl.week_ending...
  13. amillia

    cfchart date problem

    I am having a problem when I output my chart with dates alone the bottom all of the date data reads 12/31/69. I know the data is right because when I output the dates in a simple cfoutput tag then it works fine.
  14. amillia

    Average TAT with Dates from Oracle

    I have one heck of a query that I have tried several different approaches to get it to work and I am just about over it. So I come for help. I have to find the turn around time between several dates in my tables. Then I have to find the average TAT for a specific group of aircraft. Depending...
  15. amillia

    Procedure to hold a sequence number in a table

    Okay, we got this going with what carp sent and I had to take out the execute sequence stuff because I didn't have sufficient privileges. Thank you for your help. It was great and I will definately pick up the book you recommended. This is the final code. CREATE OR REPLACE PROCEDURE DOCNUM AS...
  16. amillia

    Procedure to hold a sequence number in a table

    Carp this is running without errors when I compile it but it doesn't make any changes to the fields in the database.
  17. amillia

    Procedure to hold a sequence number in a table

    What i want is for it to contain today's date and then everytime the procedure is run (which will be everytime it is called by a web page)then I want the next num to be incremented. Then if it is a new day then I want the increment to go back to one and start all over. I hope that makes for...
  18. amillia

    Procedure to hold a sequence number in a table

    I am creating a stored procedure to create a new number everyday into a table called Next_NUM. The fields in the table are called Todays_dte and fld_next_num. I am using a sequence for the number to be put into fld_next_num. I should only have one row in the table. This is my first attempt at...
  19. amillia

    On change disable a text box

    Works beautifully, you guys are awesome as usual.
  20. amillia

    On change disable a text box

    Oops I posted that prematurely. Any way, when someone chooses test1 in a selection drop down box then I want the second field which is test_two to be disabled or readonly. This isn't working yet. What do I need to do. Thank you for your help.

Part and Inventory Search

Back
Top