Search found 53125 matches

by ray.wurlod
Wed Dec 19, 2007 3:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DATA STAGE DESIGNER CONNECTION ERROR
Replies: 6
Views: 1952

Is the DataStage RPC daemon (dsrpcd) running on your DataStage server machine?

Code: Select all

ps -ef | grep dsrpcd | grep -v grep
by ray.wurlod
Wed Dec 19, 2007 3:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Need little bit clarification on usage of Truncate and Load
Replies: 2
Views: 1059

Truncate is a non-transactional operation that is very fast. As Craig notes, it occurs first and is irreversible.
by ray.wurlod
Wed Dec 19, 2007 3:30 pm
Forum: General
Topic: WebSphere MQ Connector Message Deletion
Replies: 13
Views: 5665

Welcome aboard.

This question has been addressed in the past; you can use Search to track it down. Essentially, though, the easiest way is to define another, temporary, MQ series queue and move the messages to that from the input queue.
by ray.wurlod
Wed Dec 19, 2007 4:52 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: attaching 0 before an integer
Replies: 5
Views: 1311

Fmt() is a BASIC function and thus not available in parallel Transformer stage. As Arnd says, integers do not have leading zeroes; they are stored internally in binary format. Therefore, if you need leading zeroes, you also need an appropriate data type (a string of some kind). But ask yourself whet...
by ray.wurlod
Wed Dec 19, 2007 4:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File Reject link
Replies: 12
Views: 6151

Is this for parallel job (as your job type is marked) or for server job (as per the forum in which the question is posted)?
by ray.wurlod
Wed Dec 19, 2007 4:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Server Routine
Replies: 6
Views: 2099

Re: Server Routine

vinita@hsbc wrote:First i have to check whether the file is there in Directory or not.

What else do you have to do?
by ray.wurlod
Wed Dec 19, 2007 1:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: switching between different environments
Replies: 2
Views: 850

If you use environment variables as job parameters, set the job parameter default value to the special value $PROJDEF so that its value is picked up from what was defined in the execution project's Administrator client.
by ray.wurlod
Wed Dec 19, 2007 1:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: how to implement a loop function
Replies: 14
Views: 3974

Derive each of the output columns as something like

Code: Select all

If @INROWNUM = 4 Then Stu Else 0

I am assuming here that Stu is a field name, even though you used the word "type".
by ray.wurlod
Wed Dec 19, 2007 1:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: IDoc Extract Configurations
Replies: 2
Views: 884

I think you need to read the manuals that come with the SAP R/3 Load PACK. Most of us don't have these manuals.
by ray.wurlod
Wed Dec 19, 2007 1:10 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Purpose of setting Nullable property as 'No'??
Replies: 18
Views: 2912

Do you have a reject link on your Sequential File stage - the one that reads the file?
by ray.wurlod
Wed Dec 19, 2007 1:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Bad numLogicalFiles: 0
Replies: 5
Views: 1804

None at all, because you have provided too little information. What is your job design?
by ray.wurlod
Wed Dec 19, 2007 1:05 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Regarding VOC File
Replies: 8
Views: 3950

VOC is a database table in the Repository database that contains the vocabulary (all the command names, routine names, table names and so on) used in that project. Each project has a separate VOC. Q-pointers are a way of referring to a table in a different project. They are not, in general, used in ...
by ray.wurlod
Wed Dec 19, 2007 1:02 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: NLS type and Project default (ISO-8859-1)
Replies: 1
Views: 595

Not unless you want to process a different character set or locale.
by ray.wurlod
Wed Dec 19, 2007 1:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Looksup with SQL Server nchar&nvarchar
Replies: 1
Views: 562

Import the SQL Server table definition and use whatever is imported.
by ray.wurlod
Wed Dec 19, 2007 12:59 am
Forum: General
Topic: After Job subroutine, DSGetLinkInfo()
Replies: 13
Views: 11429

You can only pass them through InputArg, separated by some delimiter character (space will do). You then parse InputArg in your routine and call DSGetLinkInfo() as many times as there are links named in InputArg.