Search found 111 matches

by Pagadrai
Tue Mar 31, 2009 3:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to achieve other than Pivot
Replies: 10
Views: 3253

Hi Pradeep, I can think of a way to do this - though it is not the exact pivoting method. You dint mention what is the delimiter here. From your input read the entire record as one column. say your first record is 1 10 20 30 40. ( i assume delimiter is space) In the transformer stage, you can get th...
by Pagadrai
Tue Mar 31, 2009 3:04 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to achieve other than Pivot
Replies: 10
Views: 3253

Hi Pradeep,
What I understand is that your number of 'computed columns' in input is not limited.
is this correct ?
by Pagadrai
Tue Mar 31, 2009 2:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Abort After Rows - Write to Sequential File Not working
Replies: 7
Views: 5841

Re: Abort After Rows - Write to Sequential File Not working

vnspn wrote: We actually want to abort the job and at the same time capture the invalid value on a output file. Could this be done?
Hi,
I dont think
1) capturing the invalid values in a file and
2) aborting the job
can be done in a single job.
by Pagadrai
Tue Mar 31, 2009 1:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Inserting Special Characters
Replies: 2
Views: 1368

Re: Inserting Special Characters

Hi
try doubling up on the ' character.
you can use any convert function in transformer stage.

Eg: Say you want to insert this : Oh 'joy'
you need to insert the value as 'Oh ''joy'''

You can test this with a sample Insert statement.
by Pagadrai
Tue Mar 31, 2009 1:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batching the records
Replies: 7
Views: 2282

U did not ask the question. U is one of our members. It's a Burmese name. The second person personal pronoun in English is spelled "you", not "u". Please use a professional standard of English on DSXchange, not least because "proper" English is hard enough for those wh...
by Pagadrai
Mon Mar 30, 2009 11:53 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File system getting full
Replies: 5
Views: 1233

Re: File system getting full

Hi Sreeni and Neeraj, I think the problem could be with the logic in the jobs. Ensure that it is not doing an 'Append' to the files. You can try cleaning up of the files in the dir and try running the sequence each time and check the file counts for each run. Are you sure that the problem is not occ...
by Pagadrai
Mon Mar 30, 2009 11:41 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batching the records
Replies: 7
Views: 2282

Re: batching the records

Hi Santosh, In that case, you can use a routine to decide how many times you want to call the particular DS job. Say if u have 500 records and you want the job to handle 200 at a time, the routine can decide that u have to call the job 3 times and then invoke it in a loop. ( but am assuming here tha...
by Pagadrai
Mon Mar 30, 2009 5:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run DataStage job thru UNIX Script
Replies: 3
Views: 2065

Re: Run DataStage job thru UNIX Script

Hi Santosh, I think u should use the logon clause along with the dsjob command. "DataStage CLI connects to the DataStage server engine on the local system using the user name and password of the user invoking the command. You can specify a different server, user name, or password using the logo...
by Pagadrai
Mon Mar 30, 2009 4:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: batching the records
Replies: 7
Views: 2282

Re: batching the records

Hi Santosh
What is your source ?
Is it possible for you to get the count of source records before you call the DS job?
by Pagadrai
Mon Mar 30, 2009 4:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Handle the Job failures without Manual settings
Replies: 1
Views: 770

Re: Handle the Job failures without Manual settings

Hi John,
You are asking the same question in multiple different posts.
Please refer my answer
http://dsxchange.com/viewtopic.php?t=12 ... 793250ea70

if you need more details, be more specific.
by Pagadrai
Mon Mar 30, 2009 4:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP Stage issue
Replies: 3
Views: 2889

Re: FTP Stage issue

Hi Vijay,
Got this problem resolved ?

I see that the problem could be with your host address.
It should be your server name and dont add any 'ftp' before the name.

try and let us know.
by Pagadrai
Mon Mar 30, 2009 3:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Designing Recovery handling
Replies: 1
Views: 1009

Re: Designing Recovery handling

Hi John,
Can you please be more clear on what are you trying to achieve.?
We can defnitely suggest some approaches that you can implement.
by Pagadrai
Mon Mar 30, 2009 2:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Is there any Automation Process to hanlde Data
Replies: 5
Views: 1852

Re: Is there any Automation Process to hanlde Data

Hi,
Iam not very clear on what is your idea of automatic handling.
You have lot of approaches to do it anyway-

you can use a 'flag' for identifying unprocessed records
or use a change data capture stage to process only changed ones.
by Pagadrai
Sat Mar 28, 2009 11:02 pm
Forum: General
Topic: how to pass the start timestamp of one job to another job
Replies: 5
Views: 2011

Re: how to pass the start timestamp of one job to another jo

Hi,
Have you got this issue resolved ?
Once the job1 finishes, you can use a routine to capture the start timestamp. this routine's return value can be passed onto the next job.

let us know for more details.