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 TouchToneTommy 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. stanleyrx

    .NET

    I refer to "OOrexx" Object Rexx , from Source Forge, which I think should interface with other .net products
  2. stanleyrx

    .NET

    Anyone have sample of .net program and REXX calling each other? exchange data?
  3. stanleyrx

    Processing .csv files

    It would be helpful to have a sample of the .CSV input and the problem you need to overcome. Having a variable number of fields is should not be a problem Stan
  4. stanleyrx

    FTP a Library

    Two methods #1 FTP Ftp to MVS, cd to the PDS and use "mget *" to download all members #2 JCL Write 2 steps JCL using PGM=IEBPTCH to punch out the PDS members then use FTPPROC, or whatever the name at our site, to FTP to the server Stan Mlynarski
  5. stanleyrx

    write to a PDS member from QUEUE

    #1 problem I see is the syntax for writing. I use "EXECIO * DISKR indd (STEM REC. FINIS)" where "REC." is the stem variable that holds all the data to be written. #2 problem I do not see where the member name in the PDS is.
  6. stanleyrx

    Rexx/Librarian

    I have a REXX program that creates and submits JCL to do the compile; contact me to have it Emailed. Most importantantly to get files out of ELIPS Librarian is to have SUBSYS=LAM on the DD statements. stanley.mlynarski@ACS-inc.com
  7. stanleyrx

    Avoid "Too many Data Sets" allocation problems in Rexx

    I agree with KiwiRexxdude, since I have also come across this messagae in MVS and PC DOS. You should free/close files after using them. You may want to try writing a program that keeps opeing files and display the number to demonstrate at what point the message comes up. Then you'll know the limit.
  8. stanleyrx

    how can a rexx script run in background??

    I helped a friend do something similar and it wasn't possible to do both UNIX script and telnet together. However, why not write a script on the target machine to (1) tail log >file (2) ftp to your machine and put the file there . Also, why not ftp the file to your machine and tail the local file
  9. stanleyrx

    RxExecPgm problem

    Also why not try passing it directly as: 'PING' '00'x||'172.19.2.130'||'0000'x
  10. stanleyrx

    Help writing SQL query using JOINS?

    I had to extract data that MAY be across 3 tables. I got rid of the unneeded code so it may look choppy but the pricipal is here SELECT A.ISBN, CATALOG_PRICE, FPT_COVER_PRICE FROM table1 A, table2 B, table3 C WHERE TITLE_STATUS_CODE NOT IN ('AFS', 'NOP') etc. etc. UNION ALL...
  11. stanleyrx

    Need help parting out a name column

    Soln #1 Not a solid answer but you might look into exit routines to format this. I know IBM MVS has this capability Soln #2 Pass the report to a file and have a post process program parse it properly

Part and Inventory Search

Back
Top