Search found 6797 matches

by DSguru2B
Fri Mar 23, 2007 8:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling a routine from a Before/After Subroutine
Replies: 6
Views: 1450

Well you need to build the user defined routine as a before/after job subroutine instead of a transform routine. Thats the first thing. Then it should show up in the drop down list of before/after job subroutines.
by DSguru2B
Fri Mar 23, 2007 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: What is run time column propagation ?
Replies: 7
Views: 1660

Always, for server jobs. For px jobs, if any transformation is required with rcp turned on, then yes, else no.
by DSguru2B
Fri Mar 23, 2007 7:26 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: De-Duplication of Invoice data
Replies: 9
Views: 3436

Technically speaking, if the 1-5 records are the duplicates, then it doesnt matter if you compare the 1st record to the 5th or the 4th to the 5th. Thats why you need to sort the data on the key your which requires de-duping.
by DSguru2B
Fri Mar 23, 2007 7:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Compilation error on the transformer
Replies: 14
Views: 5661

About the APT_COMPILER and APT_LINKER values, make sure that the path for the compiler is correct. Your admin should be able to verify that for you.
Currently you just have g++. You need the fully qualified path.
by DSguru2B
Fri Mar 23, 2007 7:20 am
Forum: General
Topic: Dynamism in DataStage
Replies: 13
Views: 4537

RCP is not present in server jobs.
by DSguru2B
Thu Mar 22, 2007 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: 7 Key column Lookup
Replies: 11
Views: 2110

Nulls as keys is not a good idea in a hashed file. Massage the file prehand to replace nulls to some other value.
by DSguru2B
Thu Mar 22, 2007 12:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion Function
Replies: 15
Views: 4539

You should be fine. Because I dont think the basic transformer really cares. Are you getting the right data without any warnings?
If the answer is yes then you can mark this as a workaround as it really is'nt a solution.
by DSguru2B
Thu Mar 22, 2007 12:48 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Passing value to environmental variable
Replies: 2
Views: 687

You dont need to go the "environment variable" route for this. Write your value to a file. Write a small routine that reads the contents of the file using DSExecute() by doing a cat. Call that routine in the job activity in the derivation of "a" job parameter. This way whatever is present in the fil...
by DSguru2B
Thu Mar 22, 2007 12:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion Function
Replies: 15
Views: 4539

Send a few records to peek stage. FMT() function should work. Did you use it exactly as I asked you to use it?
by DSguru2B
Thu Mar 22, 2007 11:29 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion Function
Replies: 15
Views: 4539

Where are you loading the data?
by DSguru2B
Thu Mar 22, 2007 11:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: change data detection
Replies: 9
Views: 1707

Do a join on all the columns. Or someone has to identify keys for you to capture change.
by DSguru2B
Thu Mar 22, 2007 10:16 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Incorrect values retrieved from Oracle
Replies: 8
Views: 3115

What if you change the BIGINT to integer within Oracle Enterprise stage. Does that fix your problem?
by DSguru2B
Thu Mar 22, 2007 10:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Between function
Replies: 3
Views: 902

No between function. You can use logical operators to do that.
by DSguru2B
Thu Mar 22, 2007 10:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Conversion Function
Replies: 15
Views: 4539

If your using basic transformer to do that then you can use the following

Code: Select all

FMT(in.col,"8'0'R") 
by DSguru2B
Thu Mar 22, 2007 10:08 am
Forum: General
Topic: Parameterizing output of Job
Replies: 9
Views: 2872

Go with point 1. How will you go about getting that done? Well that depends upon how you will be controlling the process. Is it via job sequence or via a shell script?