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 Wanet Telecoms Ltd 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. FearsomeFastFemale

    Fish! Philosophy

    So Thys666, how did it go then ?
  2. FearsomeFastFemale

    Single row tables

    Hi, I can been presented with a part completed application. There are several parameters that change rarely. The current design is a single row table that has a column for each parameter. We need to add some more which relies on a 3 week turnaround from the DBA's I would probably has a...
  3. FearsomeFastFemale

    Converting Multi-Strip Tiffs to IOCA

    We have Java Image and using JAI to convert to a TIFF. We then need to create an IOCA to contain the TIFF. We can convert single strip TIFF's to IOCA but the java JAI produces multi-strip TIFF and we cant convert the multi-strip TIFF to IOCA. Can any one offer any advice on :- getting java...
  4. FearsomeFastFemale

    I can't win...

    Hi, I know the feeling (done the diaster project and now on to the third) and in the longer term the only soultion is to have direct access to the developers. I have found it helps to go direct (no copying the bosses) as some developers in india are under more pressure not to be wrong. They...
  5. FearsomeFastFemale

    Order By Clause

    You cannot use the insert command to affect the table order. You can control the order when it is read using order by. The index is defined by the table definiton, you can also have views to see subsets of the data. Regards
  6. FearsomeFastFemale

    COBOL WORKING /LOCAL-STORAGE, reentrancy, CICS

    You should always use RENT when compiling CICS programs it will cause errors but I am not sure of specific errors as we always do. Regards
  7. FearsomeFastFemale

    COBOL WORKING /LOCAL-STORAGE, reentrancy, CICS

    A CICS COBOL program may modify the the working storage between some exec cics calls CICS programs need to be(well usually should be) psedoconvestational. So that the transaction (and associated program) end between tasks. a common example:- inquiry (keyboad) -> CICS -> response (screen) ->...
  8. FearsomeFastFemale

    DNS lookup from COBOL (getHostName)

    Hi, We are doing a getHostName to do DNS look up from a CICS cobol program (IBM supplied). It appears to give an INVREQ. Can any suggest how I prove it (TCP/IP - DNS) is set up. I suspect we dont have access to the DNS server but I am not sure what to look for. Regards Charlotte
  9. FearsomeFastFemale

    In the transition to Object Orienbt

    To the best of my knowledge you cant do this using omegamon. You could do it useing Strobe through. Regards FFF
  10. FearsomeFastFemale

    TSQ vs. Commarea

    A commarea will only exist to pass data between tasks and can be set so when ending a transaction to display a map to it is avaiable when the transaction starts after the map. Commareas should not normally exceed 32K. When a TSQ is created it remains in existance until it is deleted or the...
  11. FearsomeFastFemale

    pure cics web application...

    SIT is the system initaliation table for CICS, it contains the main CICS systems parameters RDO - resource definition on line (accessed by trsnaction CEDA) and is used to mainatin and define CICS resources like transactions, files, programs etc. I have not tried it but from investagtion I...
  12. FearsomeFastFemale

    Inserting Items into Icolls

    Hi, I am trying to insert and Item into an IndexedCollection. I can use addElement(obj) to add to the end of the Icoll but can get insertElement or addElement(obj,int) to work (fails syntax check in java) Any help would be appricated example add code that adds at the end I want to insert/add...
  13. FearsomeFastFemale

    How to speed up performance of a Delete statement

    Could you make the RI feild between tables a key ?
  14. FearsomeFastFemale

    "With hold" cursor

    I would do this my keeping the rows unique key and using that as a greather than condition when opening the cusor, or by excluding rows with the process indicator set. I have not tried 'with hold' in this situation but I can see you can commit if it is held. HTH FFF
  15. FearsomeFastFemale

    CICS BMS map display

    hi, Check on the second display of screen D you are sending map and data, you proabably are but it is worth a check. Also check your maps are not using the same data area also check in your CICS JOB output for storage violations. Hope this helps FFF
  16. FearsomeFastFemale

    Good "starters" book on Java

    hi, There a a couple on threads on the SUN =JAVA J2EE list that recommend some good books. They were in the last 2 months Regards FFF
  17. FearsomeFastFemale

    Passing several variables back from a java class

    Hi, I am new to java (from mainframe cobol) so forgive me if this is a basic question. I want to call a java method with a string, and 2 intergers. (this I can do) I want to return, a return code of true/false, and 2 intergers (not the same 2 that went in) It seams I can do it 3 ways 1)...
  18. FearsomeFastFemale

    Java for the COBOL programmer

    I have found this book an excellent starter for learing JAVA. I am moving from mainframe COBOL to JAVA. This book gets to the point in a language I understand and has provided a good base for going on to the more detailed JAVA books, and getting the coding done in the meantime! Details...
  19. FearsomeFastFemale

    Opinions please on Sun Mainframe Rehosting

    hi, I dont know anything about the SUN systems but a few years ago looked at simlar CICS emulator type systems. A major stumbling block for us was the Mapsets. None of the system would support maps created on the fly in the programs rather than using pre-defined and assembled mapsets. We also...
  20. FearsomeFastFemale

    Getting Started

    We are using Websphere 4.1 on RS6000 AIX. I wont be an administrator, but I will write & design the XML for the process flow throught the application panels, and do the Java and JSP's (using visual age java). (I think this is called a learning vertical line) I am trying to find my way through...

Part and Inventory Search

Back
Top