Search found 33 matches

by sudha03_vpr
Tue Mar 12, 2013 4:22 pm
Forum: General
Topic: Don't get warning message for execute command
Replies: 12
Views: 4287

You may need to add a link from the execute command to the notification activity followed by terminator stage to abort the process.

Trigger option of the execute command should be custom conditional and define your condition there in case of unexpected output.
by sudha03_vpr
Tue Mar 12, 2013 4:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Source file correction
Replies: 2
Views: 2492

As said by Ray, Data viewers sometimes shows a special character but the data inserts into the table may not have that character.

Do you get any errors because of this special character when you insert the data into the table ?
by sudha03_vpr
Tue Mar 12, 2013 4:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Routine in Basic - its code does not appear!
Replies: 11
Views: 4733

The routine should be present inside the Routines folder in the repository. And this looks to be a server routine and so for the routine to work, the Routine transforms also needs to present. The routines are called inside the transform, which in turn is used in the Basic transformer stage. Am not q...
by sudha03_vpr
Fri Mar 08, 2013 12:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to truncate Chinese Char ?
Replies: 9
Views: 6249

Instead of table, can you load the data to the flat file and check if you have any special/ chinese characters .
by sudha03_vpr
Fri Mar 08, 2013 12:29 pm
Forum: General
Topic: Tivoli Scheduler scenerio
Replies: 4
Views: 2311

This may give you some idea Wait for File Activity -> Transfer / FTP file to DS directory -> execute the jobs -> Delete the file in Local (The same process continues for the next file. If you dont need to delete the file then probably you can timestamp the file as you are done executing the jobs. Th...
by sudha03_vpr
Fri Mar 08, 2013 11:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to split Array in datastage?
Replies: 8
Views: 11100

Alternatively, you can use Complex Flat file that supports multiple records. Which system does generate this file ?
by sudha03_vpr
Fri Mar 08, 2013 11:31 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge stage
Replies: 6
Views: 3166

Yes you are right prasson. If its duplicate then the data rejects are obvious.
by sudha03_vpr
Fri Mar 08, 2013 11:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to truncate Chinese Char ?
Replies: 9
Views: 6249

Instead of doing this in the Transformer you can extract only those 50 characters from the database.

Eg : SELECT SUBSTR(NAME,1,10) FROM CUSTOMER
by sudha03_vpr
Fri Mar 08, 2013 11:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to truncate Chinese Char ?
Replies: 9
Views: 6249

Does your NLS Char set in Datastage support the Chinese character set ? What is the error that you get when you use column1[1,50] ?
by sudha03_vpr
Fri Mar 08, 2013 11:03 am
Forum: General
Topic: Conditional execution of job
Replies: 19
Views: 8393

You can probably check the wc-1 (word count) of the file and use this condition in Custom Conditional -> Trigger tab

convert(@FM,"", exec_filesize_isst.$CommandOutput) > 0

This means if the file size is greater than 0 it would trigger the subsequent job.
by sudha03_vpr
Fri Mar 08, 2013 11:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: column import output link shows only one row
Replies: 2
Views: 1517

Column Import reads the multiple column file and generates a single row out of it. You can further use transformer to split the single row into multiple columns.

Column Export will read a single input and splits it to multiple output columns.
by sudha03_vpr
Fri Mar 08, 2013 10:57 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Merge stage
Replies: 6
Views: 3166

Is the key unique on both the links ?
by sudha03_vpr
Thu Mar 07, 2013 1:27 pm
Forum: General
Topic: dsjob command failed
Replies: 7
Views: 5698

May be the user you connect to Unix may not have privilege to execute dsjob command. You may need to check the user credential.
by sudha03_vpr
Thu Mar 07, 2013 1:23 pm
Forum: General
Topic: Datastage Sequence : Strange Behaviour
Replies: 6
Views: 6894

What does the routine does ? It just captures the log details ?
by sudha03_vpr
Thu Mar 07, 2013 12:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Pivot rows
Replies: 12
Views: 6227

After pivotting the data, you can add a transformer and check the outcome of Column6. If Column6='' Then 'null' else column6. I am not sure if this is what you are expecting. Pivot Enterprise Edition in 8.5 has checkboxes to select the Group by columns and columns that you may want to Pivot. If you ...