Search found 592 matches

by JoshGeorge
Fri Sep 14, 2007 11:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem while sorting
Replies: 4
Views: 2079

Make sure

:arrow: Before and after datasets have identical layouts.

:arrow: In the input tab of your Change Capture stage you have used the same partition on the same partition keys. Also your sorting keys are the same and in the same order.
by JoshGeorge
Fri Sep 14, 2007 9:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Multiple repetition path
Replies: 1
Views: 1057

See Ernie's post on this. You can see that HERE
by JoshGeorge
Fri Sep 14, 2007 8:46 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: XMLPack - XML Output Stage Validation Size Restriction
Replies: 3
Views: 1247

If you do not validate the document against XSD schema does this error appear? Is this happening only for this job or are you getting this error message in any other jobs? (Can be space/buffer/cache related). Set APT_DEFAULT_TRANSPORT_BLOCK_SIZE to the double of maximum possible message size expecte...
by JoshGeorge
Fri Sep 14, 2007 8:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comilation error on $APT_CONFIG_FILE in sequence
Replies: 5
Views: 1847

Check in the Administrator if you have specified a config file as value for $APT_CONFIG_FILE. Check if there is a similar parameter specified as user defined parameter in Administrator. If $APT_CONFIG_FILE is specified in Administrator and that is the config file you want to use, you can set the job...
by JoshGeorge
Tue Sep 11, 2007 4:14 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How delete Datasets
Replies: 4
Views: 1653

Your dsenv file should have the path of shared library set to $APT_ORCHHOME/lib and also you must have APT_CONFIG_FILE set (Pointing to the same configuration file you used to create the Data Set). Then run the orchadmin command
cd $APT_ORCHHOME/bin
orchadmin rm $Path/FileName.ds
by JoshGeorge
Tue Sep 11, 2007 2:06 am
Forum: General
Topic: capturing Rejections from Oracle enterprise stage
Replies: 8
Views: 4509

I think the same topic is available in FAQ section by the same Author (Vincent).
Refer this LINK
by JoshGeorge
Tue Sep 11, 2007 12:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Comparing timestamps in a PX job
Replies: 6
Views: 3028

Re: Comparing timestamps in a PX job

As noted, you can compare dates or timestamps directly.
Date1=Date2

or

Timestamp1=Timestamp2

If they are different you will get the Status:0
If they are same you will get the Status:1
Rajesh_kr82 wrote:I have two timestamps and i want to compare them in a PX job.
by JoshGeorge
Mon Sep 10, 2007 10:43 pm
Forum: General
Topic: Sequential File Stage Reader
Replies: 2
Views: 1291

In the filter option put the below code

Code: Select all

sed -e '1d'  -e '2d'
by JoshGeorge
Mon Sep 10, 2007 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Re - Pivoting
Replies: 3
Views: 1491

Oops typed it wrong. As noted, search should be on 'vertical pivot'. Link I posted previously should give you the solution.
by JoshGeorge
Mon Sep 10, 2007 6:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Re - Pivoting
Replies: 3
Views: 1491

Do a search for 'horizontal pivot' and 'horizontal pivot' in the forum. Refer THIS link especially for similar one.
by JoshGeorge
Mon Sep 10, 2007 5:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Joining Columns with Different Column Names
Replies: 4
Views: 4719

Re: Joining Columns with Different Column Names

No, because join stage expects all the input links to have the same column name/s to consider for join key/s. Rename to one common name from one of the previous stages or as noted earlier introduce a new stage like copy stage for renaming. If any database stages are involved use alias. join using jo...
by JoshGeorge
Mon Sep 10, 2007 5:33 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date format
Replies: 2
Views: 1516

Re: Date format

Code you specified also is finally making a string, so if you just want to modify , you can use substring function TimestampToString(StringToTimestamp(from_funnel.EFCTE_CLCLD_DTTM, "%yyyy%mm%dd %hh:%nn"), "%yyyy-%mm-%dd %hh:%nn:%ss")[1,10] or else rewrite the code with conversion...
by JoshGeorge
Sun Sep 09, 2007 6:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error when loading Teradata Table
Replies: 4
Views: 1244

So that confirms this is a conversion related issue only. If you are extracting from the same table and some jobs are running fine, what differently are you using in the failing jobs? A different target table with different datatype? You are converting Char to decimal and then to integer, trim the s...
by JoshGeorge
Sat Sep 08, 2007 8:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to Capture rejects through Oracle Load Option
Replies: 7
Views: 1891

APT_ORA_WRITE_FILES will allow you to specify a file (not a directory) from where you can execute sqlldr. The post referred above was later discussed in another thread and clarified.
Pls. find the same HERE
DSguru2B :

Checkout csrazdan's reply in this post.
by JoshGeorge
Thu Sep 06, 2007 6:16 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Substring extraction
Replies: 6
Views: 3381

Yeah, modify stage dosen't like job parameter substituted in its operator calls.
JoshGeorge wrote:Substring syntax looks alrite for me.
OutputField=substring [startPosition,len] (InputField)
or is this not the right syntax? :roll: Passing job parameter into that syntax can be the issue?[/quote]