Search found 4605 matches

by kduke
Fri May 20, 2005 4:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can't connect to Datastage server
Replies: 6
Views: 1227

There should be no limit on password length. If you type in a server name like dsdev. This has to be resolved by your machine or your domain name server. If you go to cmd in DOS and ping your server to see what the ip is and do the same on the other machine then compare them. Also try to telnet to t...
by kduke
Fri May 20, 2005 1:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can't connect to Datastage server
Replies: 6
Views: 1227

Your default group should be dstage. Also it could be a network issue. Different domain servers.
by kduke
Fri May 20, 2005 1:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: is there any wrong in routine
Replies: 16
Views: 3517

I would use () to isolate the OR in the IF statement.
by kduke
Fri May 20, 2005 7:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to rename a category
Replies: 19
Views: 4728

You can do a SQL update to DS_JOBS and do the same thing. Ray does not want you to go around the product like that. It is a wise thing to not do these things or at least do them when you are the only one logged in.
by kduke
Tue May 17, 2005 1:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file lookup
Replies: 1
Views: 568

Sri You need to pass the value back in an argument in the routine. It will give you a warning saying you are changing the value of an argument when you compile the routine but it is okay. So in the sequence you need to call this routine in a routine acivity. The parameter for the following job activ...
by kduke
Tue May 17, 2005 9:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Exported vars, can b used with scripts used in DataStage?
Replies: 1
Views: 464

No. Not without adding it to the environment variables within the project. The jobs run as phantoms which mean they connect to DataStage separately from the process that started it.
by kduke
Tue May 17, 2005 8:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Start and End time of a job
Replies: 12
Views: 3831

You can call this routine in a job's transform.
by kduke
Tue May 17, 2005 6:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Jobs within Sequence job got aborted, but Sequece didnt.
Replies: 2
Views: 745

This has been covered a lot so do a search. You need to search for exception handler and UtilityAbortToLog routine.
by kduke
Tue May 17, 2005 5:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: From XML file get Rowcount
Replies: 1
Views: 1092

If you download EtlStats from my tips page then there is a job named DSJobReportDb which parses row counts from the XML file produced by the dsjob command. This might save you some time. The dsjob command can run without the XML and give you a simple report. It might be easier to parse.
by kduke
Mon May 16, 2005 8:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to rename a category
Replies: 19
Views: 4728

Hacking is fun. You hack too.
by kduke
Mon May 16, 2005 8:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob returns -9999
Replies: 2
Views: 832

What are the values of the shell variables?
by kduke
Thu May 12, 2005 9:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Stage Filter in sequentil file stage command line arguments
Replies: 7
Views: 1733

The sort command needs a separator. It cannot use column names. There is a sort filter example on ADN. Download it and figure it out. Also there are lots of posts on this so search for them.
by kduke
Thu May 12, 2005 8:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to achieve cross multiplication?
Replies: 4
Views: 868

Srikanth

You could put the lookups in hash files and do 5 lookups. Hard code the key values to the column names. I would do this in a function. Initialize the stage variables with one read for each column. Then the lookups are only done once.