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

    oracle hints

    see http://www.oracledbaexpert.com/oracle/tuningHints.html regards, sudhí
  2. Sudhi78

    I need to displays the previous ye

    SELECT TO_NUMBER(TO_CHAR(SYSDATE,'YYYY'),'9999')-1 FROM dual; -Sudhí
  3. Sudhi78

    Free SQL Book

    okie, download works fine... but whats the password for the winzip file !!!
  4. Sudhi78

    Calling Stored Procedure in Exception Handler

    UPDATE_Product_Problem(INSERT_PRODUCT.PROD_ID, 'INVALID'); close the single quotes after INVALID. it'll work if the procedure is valid. :) sudhi
  5. Sudhi78

    How to Refresh a Page

    <script language=&quot;JavaScript&quot;> <!-- var sURL = unescape(window.location.pathname); function doLoad() { setTimeout( &quot;refresh()&quot;, 2*1000 ); } function refresh() { window.location.href = sURL; } //--> </script> insert this script in the else part or ur code....
  6. Sudhi78

    Session.TimeOut and refresh times

    by refreshing after sometime (atuomatically), it keeps the session alive and atferraz dont want the memory issues by keeping a lot of sessions alive. cookies in ur case is good. If u are ready to keep sessions for more longer alive, set the session.timeout property to forever.
  7. Sudhi78

    How to Refresh a Page

    javascript:refresh() or javascript:reload() a simple refresh. automatic refresh: add the meta tag as below <meta HTTP-EQUIV=&quot;Refresh&quot; CONTENT=&quot;60;URL=urPage.html&quot;>
  8. Sudhi78

    Session.TimeOut and refresh times

    one way is to write the cookie. set the expiry property to never for the cookie and read the cookie. this works provided client accepts cookies (sessions allowed means cookies allowed). cheerz. sudhi
  9. Sudhi78

    PLS-00103 error

    check the previous lines of the query; looks like previous line is not completed. The INTO clause is missing in the SELECT statement.
  10. Sudhi78

    Oracle 8i Partitioning

    partioning will not help in searching like index. infact it speeds up the processes (I/O) and mainly used for backup and restore. The query needs to be changed to use the specific partition to use the partition advantage, eg: SELECT * FROM DEPT PARTITION(DEPT201);
  11. Sudhi78

    Update Commit Loop Issue

    the problem is bcoz of the close and open in the loop. after all why cant u directly say UPDATE statement, why the looop here? u r just updating a column to 4.
  12. Sudhi78

    conditional query results

    Case works in Where clause also, only thing is you have to remove the CASE with END, that is use only END and not END CASE SELECT * FROM dual WHERE (CASE WHEN SUBSTR('xxxx',0,3)='111' THEN 'A' WHEN SUBSTR('xxxx',0,3)='112' THEN 'B' ELSE 'C' END )= 'C' cheerz sudhi

Part and Inventory Search

Back
Top