Search found 42189 matches

by chulett
Thu Jan 03, 2008 8:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Distinct Value
Replies: 2
Views: 1492

First off, if this is going to an Aggregator then you don't want nulls as they will make the end result null. So this instead, I would think: Vsr_no = if IsNull(source.SR_NUMBER) then 0 else 1 I'm a little fuzzy on exactly what 'distinct' information you are looking for. Are you trying to ge...
by chulett
Thu Jan 03, 2008 3:25 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: compilation dscc
Replies: 4
Views: 1154

How are you planning on compiling anything without the source being available? As you noted in your first post, that doesn't really make any sense.
by chulett
Thu Jan 03, 2008 3:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Run jobs from command line
Replies: 15
Views: 6741

Because "they" decided they should be treated the same.
by chulett
Thu Jan 03, 2008 10:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: question on returned status code
Replies: 4
Views: 993

First place to check:

$DSHOME/include/dsapi.h

I'm honestly not sure how you tell the different between "Aborted" and "Aborted/Restartable".
by chulett
Thu Jan 03, 2008 9:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with webservices pack
Replies: 2
Views: 689

I would think the short answer is 'no' and that that burden lies squarely on the shoulders of the web service. :?
by chulett
Thu Jan 03, 2008 8:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Update Sequence number as part of the job sequence
Replies: 16
Views: 4366

rajendharreddy wrote:Can I reset the value from the job sequence?

Sure. A custom routine with DSExecute and "UV" springs to mind.
by chulett
Thu Jan 03, 2008 8:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regular Expressions
Replies: 3
Views: 888

As Ray notes, the short answer is 'yes' but you'd need to post specific questions to get specific answers.
by chulett
Thu Jan 03, 2008 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while inserting data into oracle table
Replies: 4
Views: 1383

Double-check your data types in each database. SQL Server doesn't have a 'varchar2' as far as I know and the error implies that your Oracle target column is a LONG not a VARCHAR2.
by chulett
Thu Jan 03, 2008 8:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Can we filter the records while reading Sequential File?
Replies: 7
Views: 2167

There's nothing you can do to not read the column names in an effort to 'improve performance'. Something, be it a O/S function or something internal to DataStage will need to read everything and filter out just the bits you need. Inside DataStage, seems to me you can use the Field() function to spli...
by chulett
Thu Jan 03, 2008 8:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XML_Input_0,0: Error occurred in call to ORPHCallActivePlugi
Replies: 2
Views: 1532

Suggest you search the forums for ORPHCallActivePluginInitialize and see if any of those posts help first.
by chulett
Thu Jan 03, 2008 8:13 am
Forum: General
Topic: troube with sending a mail to multiple email addresses
Replies: 7
Views: 2022

If a comma and a semi-colon didn't work, try a single space.
by chulett
Wed Jan 02, 2008 2:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with Job sequencer
Replies: 7
Views: 1212

With 'test'.

Code: Select all

test -s filename

Returns true if the file exists and is greater than zero bytes in size, otherwise it returns false. Reverse the check with the bang:

Code: Select all

test ! -s filename

Returns true if the file doesn't exist or exists and is zero bytes in size.
by chulett
Wed Jan 02, 2008 1:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue with Job sequencer
Replies: 7
Views: 1212

Rather than awk the entire file, a simple conditional expression could be used to check the file. For example:

Code: Select all

-s file        True if file exists and has size greater than zero.
by chulett
Wed Jan 02, 2008 1:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob (status code)
Replies: 21
Views: 11245

So, feel free to not ignore the last paragraph in my reply. :wink:
by chulett
Wed Jan 02, 2008 12:46 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob (status code)
Replies: 21
Views: 11245

Sorry, misread what was going on here. Please feel free to ignore.