Search found 15603 matches

by ArndW
Tue May 13, 2008 6:03 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: mod stage
Replies: 3
Views: 2250

How can you convert a number such as 537276302 into a string with a maximum length of 2 characters?
by ArndW
Tue May 13, 2008 5:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Data Stage ProcessId
Replies: 4
Views: 1186

A DataStage server job may have more than one process. Are you certain you really wish to store this information as it would be of limited use. The user number is also stored in director log for a given run.
by ArndW
Tue May 13, 2008 5:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Parameter
Replies: 9
Views: 1869

Ray - cool, I never knew you could change the prompting behaviour there!
by ArndW
Tue May 13, 2008 5:30 am
Forum: General
Topic: LooKing Up Dynamically
Replies: 3
Views: 1032

I would use a database table and a sparse lookup unless performance limitations prevent you from doing that.
by ArndW
Tue May 13, 2008 4:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compatibility of Datastage 8.0 to Datastage 7.5.2
Replies: 6
Views: 1914

No, the DataStage clients have never been backwards- or forwards- compatible and will only work with their specific Version server counterparts.
by ArndW
Tue May 13, 2008 4:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Parameter
Replies: 9
Views: 1869

When you start a job from the director you will always get that window. If you start a job using the "dsjob" command then any parameter values you don't explicitly set will use the design-time defaults.
by ArndW
Tue May 13, 2008 4:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Indexes in datastage?
Replies: 3
Views: 1074

You posted in Server, but asked about a Parallel-only stage. Which product are you using?
by ArndW
Tue May 13, 2008 3:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Indexes in datastage?
Replies: 3
Views: 1074

Which database, which stage? Indices are a database internal thing of which DS Server has no idea; but many stages allow before and after SQL to be added to the job, where such actions can be performed.
by ArndW
Tue May 13, 2008 3:55 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using variable name as source file path
Replies: 9
Views: 1778

Use "#VAR#". Better yet, use the builtin drop-down menus to let you choose the parameter value, that way you cannot mis-spell the case-sensitive parameter names.
by ArndW
Tue May 13, 2008 3:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Using variable name as source file path
Replies: 9
Views: 1778

It is not only possible, but recommended to put such types of information into parameters.
by ArndW
Tue May 13, 2008 2:32 am
Forum: General
Topic: Update to SDKSequences hungs
Replies: 7
Views: 4260

This is happening because some other process holds a lock on the record in the file. If you don't know which one that could be, use another command windows or the TCL prompt and issue "LIST.READU EVERY", this is a bit complex to read but, particularly if your system isn't busy, you should be able to...
by ArndW
Tue May 13, 2008 1:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: DataStage PX and MQ Client
Replies: 11
Views: 4336

Is anyone here currently using Hawk with MQ Series? If so, how do you access a queue using only the MQ Client, (with no server installed.) Is this even possible? We are using MQ with HAWK both with real-time components, the Oracle UOW operator and a customer MQ UOW operator at this installation. Al...
by ArndW
Tue May 13, 2008 1:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Issue with single quote in Job parameter.
Replies: 16
Views: 17445

minhajuddin - you never answered on whether the eCase was "fixed" or not.
by ArndW
Tue May 13, 2008 1:38 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequencer Conditional flow not happenening
Replies: 6
Views: 1566

I'll ask the question again - what was the output of the command activity. Please paste it, without editing.
by ArndW
Tue May 13, 2008 1:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup key value in a delimited string with a lookup stage
Replies: 5
Views: 1203

Ensure that the Big.RTEString is terminated with a trailing comma, then the command

Code: Select all

Index(Big.RTEstring,Small_RTE_String,1)
should return a 0 when the string is not found, otherwise a positive integer value.