Search found 537 matches

by Natarajan
Mon Jul 12, 2010 5:01 pm
Forum: COBOL
Topic: unstring
Replies: 2
Views: 4171

requirement is not clear.. can you tell us more details...
by Natarajan
Mon Jul 12, 2010 5:01 pm
Forum: COBOL
Topic: unstring
Replies: 2
Views: 4171

requirement is not clear.. can you tell us more details...
by Natarajan
Fri Jul 09, 2010 3:21 pm
Forum: JCL
Topic: please provide me details....
Replies: 2
Views: 3950

by Natarajan
Wed Jul 07, 2010 10:43 am
Forum: JCL
Topic: What is the important of gdg's
Replies: 7
Views: 12692

one example is.. there is a jcl which runs on a particular time and create report on profits gained by the company. If you use normal file as output. we need to code that jcl , in such a way that.. first delete yesterdays file before executing program which actually creates the file with today data....
by Natarajan
Tue Jul 06, 2010 12:50 pm
Forum: JCL
Topic: What is the important of gdg's
Replies: 7
Views: 12692

look like.. it is an interview question.
First tell us.. what is your answer to this question? before we answer this question.
by Natarajan
Mon Jul 05, 2010 6:01 pm
Forum: JCL
Topic: About FOCUS teaching institutes
Replies: 1
Views: 3168

Are you talking about FOCUS - language Or MicroFocus related tools ?
by Natarajan
Sun Jul 04, 2010 9:11 pm
Forum: XPEDITER
Topic: How to debug a simple cobol program using xpeditor?
Replies: 6
Views: 16856

I agree with Dick comments.

To resolve S0C7 refer following...
http://www.mainframegurukul.com/ibmmain ... light=s0c7



For XPEDITER tutorial refer..
http://www.mainframetutorials.com/XPEDITER.html
by Natarajan
Sun Jul 04, 2010 8:46 pm
Forum: JOB VACANCIES
Topic: capgemini interview pattern - reg
Replies: 3
Views: 7614

Pandey, This is the second post from you about capgemin. why dont you call HR again and ask for the status. Some time company's send their offer letter once their new proposed project signed by client. if there is a delay in the project contract , normallly they will delay the offer letter. It may b...
by Natarajan
Thu Jun 24, 2010 6:44 pm
Forum: COBOL
Topic: String
Replies: 4
Views: 7684

u r welcome :)
by Natarajan
Wed Jun 23, 2010 7:21 pm
Forum: COBOL
Topic: String
Replies: 4
Views: 7684

REmoving spaces in a cobol string

Use the following code.. this was suggested by Dick in another thread.

Code: Select all

string var1 delimited by spaces 
         var2 delimited by spaces 
         ... 
         var14 delimited by spaces 
  into whatever 
end-string. 
by Natarajan
Wed Jun 23, 2010 7:11 pm
Forum: JOB DISCUSSION
Topic: Help regarding Career in Vision Plus, Mainframe
Replies: 3
Views: 11271

In my view, you better have a special skill like vision plus. Since you already worked on core mainframe skills. You better work for vision plus for some time. Because, in addition to HSBC, As per my knowledge city bank also using the product vision plus. It is good product used by major banks for c...
by Natarajan
Fri Jun 18, 2010 3:14 pm
Forum: JOB VACANCIES
Topic: Cognizant - Mainframe Openings (2+ Yrs Exp)
Replies: 1
Views: 3451

Easwar - Please provide more details like any specific areas they are looking etc.. location of placement.
by Natarajan
Fri Jun 18, 2010 3:13 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: Check pending status in DB2
Replies: 2
Views: 6684

Good suggestion Madathala..
by Natarajan
Wed Jun 16, 2010 5:48 pm
Forum: COBOL
Topic: What is the difference between Copy and Include?
Replies: 10
Views: 25957

u r welcome :)
by Natarajan
Wed Jun 16, 2010 1:55 pm
Forum: DB2 SQL - DB2 PROGRAMMING
Topic: what will happen id i didnt close the cursor in the program?
Replies: 5
Views: 9609

There are two scenarios. Scenario 1) If you issue COMMIT, data will be posted to ables and cursor will be clsoed automatically ( If you dont use WITH HOLD option in the cursor ) Scenarios 2) Even you dont use COMMIT and/or CLOSE CURSOR command. At the end of the program all changes will refelected i...