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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by ironyx

  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!

Part and Inventory Search

Back
Top