Search found 17 matches

by relati
Tue May 04, 2010 10:02 am
Forum: General
Topic: how to seperate duplicates and unique records from seq file
Replies: 3
Views: 2254

Use transformer stage, route duplicates into one stream and others into another stream. You can do this by checking if the current value is the same as previous value or not with the help of stage variable(s).
by relati
Wed Jul 29, 2009 2:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing string values into SQL query via parameter
Replies: 14
Views: 14788

Re: Passing string values into SQL query via parameter

Try passing values: (1A, 23, 4ED) to the job parameter: pEmpId and use IN (#pEmpId#) in the WHERE clause.
by relati
Wed Jul 22, 2009 12:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: partition symbols
Replies: 5
Views: 3698

Re: partition symbols

Is this the only symbol that is not showing up OR none of the symbols are showing up?
by relati
Mon Jul 06, 2009 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequential File Stage in Parallel and Server
Replies: 10
Views: 7380

DD,

Here's a work around if you can manipulate the source file outside of DataStage. Replace """ with " or nothing in the source file, save it, and try importing the data again.
by relati
Wed Sep 17, 2008 11:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not find input field "sqlcode"
Replies: 7
Views: 2857

Kumar,

I am running into the same issue and trying to resolve it. Were you able to find a resolution yet?
by relati
Thu Aug 07, 2008 10:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invalid chracter from codepage UTF-8 to Unicode
Replies: 2
Views: 3431

Re: Invalid chracter from codepage UTF-8 to Unicode

I am running into a similar one (Unicode to UTF-8) but couldn't find any relevant posts except yours.

Did you find any more information on the error?
by relati
Fri Jul 18, 2008 10:38 am
Forum: IBM QualityStage
Topic: MNS Table Not Found
Replies: 5
Views: 4263

Re: MNS Table Not Found

Here's a work around. Basically, deleting the MNS stage and recreating it resolved the issue.
by relati
Tue Jul 15, 2008 1:58 pm
Forum: IBM QualityStage
Topic: MNS Table Not Found
Replies: 5
Views: 4263

Re: MNS Table Not Found

Thanks for the quick response. We will pursue it with IBM support.
by relati
Tue Jul 15, 2008 1:31 pm
Forum: IBM QualityStage
Topic: MNS Table Not Found
Replies: 5
Views: 4263

Re: MNS Table Not Found

We are running into the same set of errors and are trying to figure out what could have caused it. Have you had any luck yet ?
by relati
Fri Jun 06, 2008 10:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Non-pipe (or non-virtual data set) with .v in its name error
Replies: 3
Views: 8715

Kanyaviyasari -- Are you using any Job Parameters?
by relati
Wed Jun 04, 2008 3:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find max date
Replies: 7
Views: 3151

Re: How to find max date

OK, then you can compare them without converting and pick the max.
by relati
Wed Jun 04, 2008 3:14 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to find max date
Replies: 7
Views: 3151

Re: How to find max date

What is the date format in the Input fields?
by relati
Wed Jan 09, 2008 11:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: getting this fatal=ORCHESTRATE step execution terminating du
Replies: 3
Views: 7106

I have seen such an error when the number of warnings have reached the maximum limit. If you are indeed seeing a lot of warnings, then either correct them or change the setting to unlimited warnings and try again.
by relati
Tue Jan 08, 2008 3:19 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Null Hadling - Server Jobs
Replies: 2
Views: 3848

In response to your first question: The following functions should work in Server: IsNull NullToEmpty NullToZero and you could make use of "Not" and "IsNull" together to get the same functionality of "IsNotNull". I don't believe the rest are available in Server. Hope th...