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. ironyx

    Question about checking allocated memory

    We have out of memory errors in our app after moving to a second managed server. I was told to bump up the memory to see if that helped, so I did that through the commEnv file. Which... I am hoping is correct (if you haven't guessed yet, I am not really a Weblogic person) and I was wondering...
  2. ironyx

    Classpath Issues

    I am atempting (and failing) to set a classpath in a managed Weblogic 8.1 (I think) server and when I set it through a cmd script on startup, the server shuts down after about 10 min. When I was trying to set it up through the console the entire thing failed, I think from syntax. I was trying to...
  3. ironyx

    vbscript in form validation

    I really didn't mean for the question to sound obnoxious, it was a sincere question. I kind of have my hands tied with the way it was already written. I think a lot of the issues is because the form is embedded in an xslt with this vbscript in another page. I have never seen anything like this...
  4. ironyx

    vbscript in form validation

    Do you mean what I have is impossible or validating two fields? I really do have a form on one page and the vbscript validation on another and it's still client side. I cannot however get document.myForm.myInput.value to work because apparently for this two page thing to work you have to grab...
  5. ironyx

    vbscript in form validation

    Okay, so I have a form on one page and the form validation vbscript in a second page. The reason I was trying to code based on concrete form structure is because I am really trying to validate on two different fields in one validation. I thought if I could figure out how to reference one based...
  6. ironyx

    vbscript in form validation

    I have a script: sub check_input(myInput) If document.getElementByID(myInput).value = "input" then msgbox "This entry must be a number" document.getElementByID(myInput).select stat.cancel end if end sub This pulls a variable from a form on another page, called through an onChange...
  7. ironyx

    form semi imbedded in xslt

    I have an issue with an inherited xslt/coldfusion/vbscript application. It has an imbedded form inside the xslt and it uses a <form field onblur> to call an external vbscript to validate form fields. So my question is does anyone know the syntax to call something like this on a <select...
  8. ironyx

    recursion (or some kind of loop?)

    That was great... I was spinning my wheels, rewrote what I did a little added a position and a count and I got page breaks inside the loops and a page of page to show. That was so simple and yet very effective, very nice. You are my hero!!! Thank you so much for taking the time to help! Va...
  9. ironyx

    recursion (or some kind of loop?)

    I have an xml doc <record ID="1"> <zone>1</zone> <region>1</region> </record> <record ID="2"> <zone>1</zone> <region>2</region> </record> <record ID="3"> <zone>2</zone> <region>1</region> </record> <record ID="4"> <zone>3</zone> <region>1</region> </record> I have half...
  10. ironyx

    Parameter Forms in 10g

    There is a procedure in the forms and reports conversion documentation to allow parameter forms from earlier versions to work with 10g. The procedure is written to be embedded in an Oracle form, does anyone know is I can do a stored procedure on the database or does it have to be passed from a...
  11. ironyx

    Will this work with multiple inserts?

    Never mind, i guess I didn't think that a create doesn't really have inserts right? So I'll create the table and then do a loop through each row. Thanks, Va :-)
  12. ironyx

    Will this work with multiple inserts?

    Oh yeah, obviously... and does that mean no? See previous statement about my being a newbie. I guess I am not sure if the trigger I have will work for a large insert. I have to do a create table as... from an existing table (the table being created is my trigger table). Would I be able to...
  13. ironyx

    Will this work with multiple inserts?

    I have this trigger, and got an error message saying that I couldn't use FOR EACH ROW because it means I have a mutating table. I found a solution that takes the place of the row-level trigger, but it was terribly foreign to me (I'm very new to PL/SQL if you couldn't tell) and so I tried to...
  14. ironyx

    unable to add records in linked table

    Using the schema owner of all the tables, I am linking oracle tables and SQL Server tables using Access in order to transfer data. On some of the Oracle tables, when I link them in Access however, I am unable to add a record. All the tables are truncated first, so none of them should have...
  15. ironyx

    counter to date- if possible, syntax help

    Sorry, I am pretty much coming at this with about no experience of PL/SQL except for one cursor, so I'm afraid assumptions are lost on me, but I think I can go from here. Thanks for all of the help!
  16. ironyx

    counter to date- if possible, syntax help

    I get an error: The following error has occurred: ORA-06550: line 19, column 34: PL/SQL: ORA-00984: column not allowed here ORA-06550: line 10, column 4: PL/SQL: SQL Statement ignored I checked data types, I truncated the table, the field size is the same, is there anything else I should be...
  17. ironyx

    counter to date- if possible, syntax help

    Okay, for every record pulled out of my TW table, I need it to loop through that record 12 times and for each one assign the month end dt of a month. So record one would end up being 12 records with a month end dt of January - December. Is that a better explanation? I appreciate you taking the...
  18. ironyx

    counter to date- if possible, syntax help

    And now thinking about it, the way I have the loop, it will just loop through all the months for one record in that field rather than looping through each record 12 times and assigning the value of month for each one, so I will have to change the loop to be for each record coming out of the DB...
  19. ironyx

    counter to date- if possible, syntax help

    I am trying to do a counter in an insert statment, where the counter will be turned into a month, then if the month is greater than 09, put it in year 2004, if <= 09, then put it as year 2005. Oh, and just for fun, to make it that last day of that particular month using LAST_DAY. Does this sound...
  20. ironyx

    form validation not doing second part

    I have this form validation and I can't see why it won't check for the numeric property. Could someone take a look at it and let me know if I am missing something obvious? <script language="JavaScript"> function verify(f){ var msg; var empty_fields = ""; var errors = ""...

Part and Inventory Search

Back
Top