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!

Search results for query: *

  • Users: sarr
  • Content: Threads
  • Order by date
  1. sarr

    Restarting websphere automatically

    Here is the scenario.. I am running an application on websphere which contains ejb and connects to AS/400 database. The database goes down every midnight. The applications works only if i restart the websphere server after the database server is started. Is there anyway i can automatically...
  2. sarr

    How to identify websphere home?

    Does anyone know how to identify websphere home directory?
  3. sarr

    Rows into Columns

    i have a table like this product | price | status --------|--------| ------ pen | 100 | old pen | 105 | new --------|--------|------- Expect result as :- ----------------- product oldprice newprice ------- -------- --------- pen 100 105 Please note that the...
  4. sarr

    Exit Handler??

    DROP PROCEDURE MYLIB.TestErrorHandler; CREATE PROCEDURE MYLIB.TestErrorHandler () LANGUAGE SQL BEGIN DECLARE prodnum DECIMAL(6,0); DECLARE at_end INT DEFAULT 0; DECLARE SQLCODE INT DEFAULT 0; DECLARE not_found CONDITION FOR '02000'; DECLARE c1 CURSOR FOR SELECT DISTINCT (MYPRODNUM)...
  5. sarr

    Dynamic Variable

    I require the variables to be declared dynamically like this For i = 1 to 20 Dim var & i Next for which i expect output like Dim var1, var2, var3.. Later on, i should use this in my program like, For i = 1 to 20 var & i = "somevalue" Next Could someone help me to build this...
  6. sarr

    Building Array Names

    I would like to build a dynamic array with dynamic array names like this. myarray1 = array(10,20) myarray2= array(30,40) myarray3= array(50,60) How to build the dynamic array name.. like this. Is it possible using a loop?

Part and Inventory Search

Back
Top