Search found 6797 matches

by DSguru2B
Thu Jan 11, 2007 7:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: String Handling
Replies: 2
Views: 1110

Use Dcount and Field. Something like

Code: Select all

Field(InLink.RecIn, "^", DCOUNT(In.Col,"^"))
by DSguru2B
Thu Jan 11, 2007 6:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding DSUtility
Replies: 38
Views: 5659

Nothing out of the box. You have to code it.
by DSguru2B
Thu Jan 11, 2007 6:32 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove record having special characters
Replies: 16
Views: 4745

Yea but still not a good approach. If he has other characters and not a "/" it will pass through undetected.
by DSguru2B
Thu Jan 11, 2007 4:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove record having special characters
Replies: 16
Views: 4745

Wont work for him. He needs more characters to be tested on then just a "/".
by DSguru2B
Thu Jan 11, 2007 3:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: routine with readseq and writeseq
Replies: 7
Views: 2001

I say go with Ken's method instead of playing with readseq and openseq. All you need to do is check for a record in the file. FUNCTION myDate(inPath,outPath) inCmd = "type ":inPath CALL DSExecute("NT", inCmd,ScreenOutput,ReturnCode) fDate=ScreenOutput<1> sDate=OCO...
by DSguru2B
Thu Jan 11, 2007 3:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage PX Install Issue
Replies: 8
Views: 5873

You mean in the .profile. Thats absurd and really strange. :roll:
by DSguru2B
Thu Jan 11, 2007 3:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Regarding Parameters
Replies: 29
Views: 5829

I_Server_Whale wrote:Refer to the Server Job Developer Guide pdf manual.


Look for complete sytax there. lparams will list all the params the job is using and not the value for that param. You need the option -paraminfo with dsjob.

Code: Select all

dsjob -paraminfo <Projectname> <JobName> <ParameterName>
by DSguru2B
Thu Jan 11, 2007 3:19 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer logic
Replies: 6
Views: 1806

O yea no matches in px. errr....Hard to switch between job types, especially after a long day. :oops:
by DSguru2B
Thu Jan 11, 2007 3:17 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to remove record having special characters
Replies: 16
Views: 4745

Look at the ICONV function with conversion code "MCP".
by DSguru2B
Thu Jan 11, 2007 3:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer logic
Replies: 6
Views: 1806

Use the Matches function to direct the data down a reject link and !(not) of reject link to your good link. Or better yet, the index function.
Something like

Code: Select all

INDEX(in.col, "/",1) > 0

for the reject link and =0 for the good link.
by DSguru2B
Thu Jan 11, 2007 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: phantom on oracle base after a job abort
Replies: 9
Views: 1876

Read this post for more clarification.
by DSguru2B
Thu Jan 11, 2007 9:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DB2 stage Error
Replies: 3
Views: 1021

Its just DATE('YYYY-MM-DD'). Refer here
by DSguru2B
Thu Jan 11, 2007 9:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: phantom on oracle base after a job abort
Replies: 9
Views: 1876

A phantom is nothing but the background process for DataStage. If you are seeing phantom after doing a ps and greping on your id then you will see that and its normal. However, if you are seeing phantom messages in yellow in the datastage log. That is something to worry about. What you see at the un...
by DSguru2B
Thu Jan 11, 2007 8:46 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: phantom on oracle base after a job abort
Replies: 9
Views: 1876

Its like a parent thread and a child thread. The job is the parent thread with db connection as a child. With the parent being killed, now you still have a live child thread. Thats the problem. Tell your dba that killing me will not stop this from happening. Just take him/her out to lunch. Correctio...
by DSguru2B
Thu Jan 11, 2007 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to append the column
Replies: 8
Views: 2742

Annotations my friends.