Search found 92 matches

by vinnz
Fri Jun 21, 2013 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading no of files
Replies: 5
Views: 2223

Are you expecting your input files to come in ad-hoc while your job is executing? If not, you could concatenate your files using operating system commands prior to processing using a command stage in the sequence.
by vinnz
Thu Feb 24, 2011 4:32 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: EXTRACT Numbers only
Replies: 8
Views: 5133

Please search the forum. You could use a BASIC transformer or alternatively use the convert function
by vinnz
Wed Dec 01, 2010 2:39 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file issue
Replies: 11
Views: 6463

You said one transformer - are the target file and the hashed file being populated from the same transformer? In that case, the first time a new key value is encountered it would not already be in the hashed file and will get written to the hashed file & target at the same time. The fields that ...
by vinnz
Tue Nov 30, 2010 2:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: FTP enterprise stage error
Replies: 11
Views: 7563

suryadev, as suggested by Andy - you should try command line ftp from your test UNIX machine. Google for 'unix command line ftp' and you should get all the examples you need.
by vinnz
Tue Nov 30, 2010 2:08 pm
Forum: General
Topic: Routine DSSendMail did not finish OK, return code = '-21'
Replies: 13
Views: 10842

Did you check the contents of the generated command file ? Please check any paths in the following command file are correct, and if necessary adjust the 'dssendmail_template.txt' file in the project directory. Contents of command file: C:\IBM\InformationServer\Server\DSEngine\bin\dssmtpmail.exe -fil...
by vinnz
Tue Nov 30, 2010 12:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OConv issue
Replies: 4
Views: 2929

As craig suggested, use something like the below assuming your data is the first field in the space delimited string and there are no leading spaces

Code: Select all

Oconv(Iconv(Field(myDate,' ',1), "D/MDY"), "D-YMD[4,2,2]")
by vinnz
Tue Nov 02, 2010 2:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Don't want to round off
Replies: 3
Views: 3197

Please post some examples and the derivations that you used.
by vinnz
Wed Oct 13, 2010 11:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: INTERVIEW QUEST
Replies: 4
Views: 6058

29. how do u reduce warnings
Now that cant be an actual interview question :lol:
by vinnz
Tue Oct 12, 2010 6:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Picking non-null values from Key matched pair
Replies: 1
Views: 1386

I suppose I could also split up the pair, rename columns on one link, join the records back on the key and then compare each of the values in a downstream transformer/modify stage. Would that be the best way to do it?
by vinnz
Tue Oct 12, 2010 5:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Picking non-null values from Key matched pair
Replies: 1
Views: 1386

Picking non-null values from Key matched pair

Hello, We currently get pairs of records from an external source where one is sort of a primary record and the other is secondary and we need to dedupe then based on key columns. We would need to pick a value from the secondary record iff there isnt any present on the primary record. An example is b...
by vinnz
Fri Jul 23, 2010 9:36 am
Forum: General
Topic: Unable to execute shell script from DataStage
Replies: 5
Views: 4876

Is there anything specific in your .profile that allows your script to be executed manually? I am not sure if your profile is sourced when you kick off any script through ExecSH. You may have to add some environment variables to dsenv. People here may be able to help a bit more if you posted your sc...
by vinnz
Thu Jun 10, 2010 3:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: OCI,0: (aptoci.C:460). Message: ORA-01722: invalid number
Replies: 7
Views: 4188

When your job aborts, what is the generated SQL and error that are posted in the log?
by vinnz
Wed Jun 09, 2010 1:46 pm
Forum: General
Topic: Date columns in parallel job behaving peculiarly
Replies: 8
Views: 3735

Any metadata differences between the column(s) being dropped and the ones that are not? Are the rest of the columns getting the right values or are they getting skewed/mis-mapped? Do you have any message handlers defined in your production environment?