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 gkittelson 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: aahan
  • Order by date
  1. aahan

    JSP Hangs ...

    Hi, I've a class as under , which is getting run from a JSP. The JSP is providing the Batch File to Run : ========================================================== public int runbat(String batchfilename) throws Exception{ Runtime rt = Runtime.getRuntime(); String cmd="E:\\myweb\\" +...
  2. aahan

    Simple Question - File Manipulate

    Would like to know a quick way to appending 2 characters before each and every line in a huge file. Looking for an efficient way to do it. Thanks
  3. aahan

    ROLLUP Value Storage in PLSQL Variable

    Hi, Is it possible to store ROLLUP Operator Values or CUBE operator values in a PL/SQL Variable ? Thanks
  4. aahan

    Accessing JSPs

    Hi, I am a novice to Tomcat and JSPs. The installation has been done on default port of 8080. Port 80 is currently being used for IIS. What changes do I need to make , so that I need not type in the port number 8080 at the url to access the JSPs. I have gone thru documentation, but could not...
  5. aahan

    Configuring Tomcat

    Hi, I am novice on Tomcat and JSPs. The installation has been done on default port of 8080. Port 80 is currently being used for IIS. What changes do I need to make , so that I need not type in the port number 8080 at the url to access the JSPs Thanks
  6. aahan

    Simple Constraint Creation

    Thanks sem. Made the Trigger an Autonomous Transaction and it did the trick. Thanks Again.
  7. aahan

    Simple Constraint Creation

    Can you be more explicit in explaining how I go around doing it. I am not familiar with the work around for mutating table ?
  8. aahan

    Simple Constraint Creation

    I need to create a constraint on a table T1 with columns of interest as ColA and ColB, with a constraint as under : The Value I insert into ColA should exist on ColB. I cannot create a trigger since it will result into a mutating table, the moment I try to do a select on the table I am residing...
  9. aahan

    Function Creating Error

    I have create a type using the following SQL : create or replace TYPE RC_SYSTEM_CODES IS REF CURSOR RETURN SYSTEM_CODES%ROWTYPE; then I am trying to create a function using this : CREATE OR REPLACE FUNCTION uf_myfun(INP VARCHAR2) RETURN RC_SYSTEM_CODES AS rc RC_SYSTEM_CODES; BEGIN...
  10. aahan

    FTP File Size Check

    Hi, I am interested in comparing the file sizes on the source server and the destination server, however the bytes size does not match exactly. I have the bytes size from ls -l from the source server. Now after performing the FTP I am asking for the size command in FTP , however the file size...
  11. aahan

    Loosing String Values in an Array in a JSP

    Hi, I have a JSP , a subset of which, having problem is as under : <html> <body> <input type=&quot;text&quot; name=&quot;myname&quot; value=&quot;ABC&quot;><br> <input type=&quot;text&quot; name=&quot;myname&quot; value=&quot;JKL&quot;><br> <input type=&quot;text&quot; name=&quot;myname&quot...
  12. aahan

    .netrc - File Size Error

    Hi gheist, I am using AIX ver 4.3 and can you be more explicit in your answer. How do I patch to a later maintenance level and what does it imply ? Thanks
  13. aahan

    .netrc - File Size Error

    Hi, I have a Korn Shell which creates a dynamic .netrc file, which is then copied to $HOME and then performs a FTP job. The .netrc is sometimes around 20K bytes too. While tyring to perform the FTP it gives me the following message : 4K macro buffer exceeded How can I solve this...
  14. aahan

    Any Oracle Function Comparitive to : isnumber ?

    Hi, Thank you very much for the responses. I created a function in PL/SQL to check it. Thanks again
  15. aahan

    Any Oracle Function Comparitive to : isnumber ?

    Hi, Is there any function available or any shorter / quicker way of finding out in a varchar2 column if the value is a number or not ? Rows in a varchar2 column may have character values or numeric values. Any way of alienating the only numeric rows. Thanks

Part and Inventory Search

Back
Top