Search found 6797 matches

by DSguru2B
Thu Jan 04, 2007 10:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Telnet Before Command" sporadically not running c
Replies: 12
Views: 4187

Tell me about the log that the shell script creates. When the shell doesnt execute, or you think it does not execute, is there any entry in the unix shell's log? If there is nothing, what does the director's log say.
by DSguru2B
Thu Jan 04, 2007 9:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: "Telnet Before Command" sporadically not running c
Replies: 12
Views: 4187

Does the script run from command line? May i ask why are you executing the script in "Telnet Before Command" and why not in the before job subroutine "ExecSH"?
by DSguru2B
Thu Jan 04, 2007 8:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Writing to a Sequential file
Replies: 12
Views: 2856

So that means the job was created on a windows server and is now being used on a unix server.
by DSguru2B
Thu Jan 04, 2007 7:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Format
Replies: 11
Views: 2549

I was gonna, but you beat me to it :wink:
by DSguru2B
Thu Jan 04, 2007 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer in Parallel job
Replies: 24
Views: 7040

Yes. You are correct. Its just a function. You can have a main and do the testing from command line, but once all the testing is done, you need to remove the main() function. Also make sure that no input arguments of the C function are defined as const. It does not work with datastage.
by DSguru2B
Thu Jan 04, 2007 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: HowTo extract data from binary file?
Replies: 15
Views: 4933

Ask her to ndm the file (ftp the file) in ascii mode to you. That can be done.
by DSguru2B
Thu Jan 04, 2007 7:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Scheduling a job with input file frequency unknown
Replies: 3
Views: 1753

Or if you are using an enterprise scheduler like Control-M or Tivoli, they have a file watcher in place. You can utilize that as well.
by DSguru2B
Thu Jan 04, 2007 7:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to capture duplicate reject row in the sequential file
Replies: 8
Views: 3047

Check out this post. In this post Craig elaborates a method thats taught by IBM to capture duplicates.
by DSguru2B
Thu Jan 04, 2007 7:24 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: calling shell script form datastage
Replies: 6
Views: 5790

Does the script execute from command line ? Try giving

Code: Select all

sh /home/devinput/test.sh
by DSguru2B
Thu Jan 04, 2007 7:21 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FAILURE OF ABAP EXTRACT HERE
Replies: 2
Views: 1058

Welcome Aboard :P
Most of the errors that developers encounter have been covered here before. This site has a search facility which is very robust and helpful. Do an exact search on keywords 'Mismatch in number of column'.
by DSguru2B
Wed Jan 03, 2007 9:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date Format
Replies: 11
Views: 2549

Code: Select all

OConv(in.Date,"MCN") 

OR

Code: Select all

DIGITS(in.Date)
by DSguru2B
Wed Jan 03, 2007 9:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding utility hashlookup
Replies: 8
Views: 1820

Pay close attention to Ray's comment. Just because you have it, does'nt mean you 'have to have to' use it. Just source the odbc, do a lookup on the hashed file using the conventional design via transformer
by DSguru2B
Wed Jan 03, 2007 3:52 pm
Forum: General
Topic: dynamic file name
Replies: 6
Views: 2527

It wont work Whale. A job parameter cannot be set within the job. It needs to be set before the job is fired. It can definately be done before starting the job. The OP is sitting on unix, so the special character can be read and stored in a file, the contents of that file can be passed as a paramete...
by DSguru2B
Wed Jan 03, 2007 3:49 pm
Forum: General
Topic: dynamic file name
Replies: 6
Views: 2527

Can be done in two jobs. Find and store that special character, in a file or UerSatus. In your second job, define a parameter, while defining the parameter, the default value will be a routine which will make a call to the user status or read it from whereever you stored it. Tie the jobs together vi...
by DSguru2B
Wed Jan 03, 2007 3:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding routine activity
Replies: 15
Views: 5228

Did you compile your routine. Did you test it out before using it in the job?