Search found 6797 matches

by DSguru2B
Wed Jun 13, 2007 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Sequence Abort after 129 iteration
Replies: 7
Views: 1977

Away from the topic at hand, we should have an FAQ entry that contains info on all these patches, along with error messages, so that search could turn it up. Just a thought.
by DSguru2B
Wed Jun 13, 2007 7:39 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Data transfer from a dataset to a oracle table
Replies: 10
Views: 2063

Care to share the error message with us ???
by DSguru2B
Wed Jun 13, 2007 7:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ds_uvput() - Write failed for record id
Replies: 4
Views: 3501

Interesting info. Have to lock this one away in my favorites chest.
by DSguru2B
Wed Jun 13, 2007 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pl/sql in oracle plugin
Replies: 15
Views: 4783

You will have to incorporate that pl/sql script into a shell script, kinda like a "here" script. Search the forum or on the net for examples of an "here".
See this example where Ray describes a "here" script for ftp.
by DSguru2B
Tue Jun 12, 2007 2:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pl/sql in oracle plugin
Replies: 15
Views: 4783

Sure. You can wrap your pl/sql in a script and execute that script. This way you can capture your return as well.
I am not sure if multiple commands can be run. I doubt it.
by DSguru2B
Tue Jun 12, 2007 1:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: pl/sql in oracle plugin
Replies: 15
Views: 4783

I am afraid not. But you can create a procedure out of your pl/sql and call the stored proc. from within datastage.
by DSguru2B
Tue Jun 12, 2007 11:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Date Validation
Replies: 5
Views: 1317

Have you looked at IsValid() function?
by DSguru2B
Tue Jun 12, 2007 8:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Undefined symbol: .DSOpenProjectEx
Replies: 9
Views: 4733

Instead of including the entire path of dsapi.h, try including just dsapi.h
by DSguru2B
Tue Jun 12, 2007 8:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: removing *s
Replies: 13
Views: 2941

Durga wrote:client want us to remove everything after 100 including 100 and (

Ok, now that sounds like a rule to me.
How about this

Code: Select all

TRIM(CONVERT("(", "", Field(in.Col, "100", 1)))
by DSguru2B
Tue Jun 12, 2007 7:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Oracle OCI stage
Replies: 6
Views: 1618

Are you able to select the date from sql developer? What is the length of your date field, as defined in your table?
by DSguru2B
Tue Jun 12, 2007 7:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: removing *s
Replies: 13
Views: 2941

You need to tell us what rule to apply. According to what I see, from your examples, you want to get everything before the opening paranthesis "(". But then I see a record that has no paranthesis. You need to provide us with the proper rule, and we will guide you towards the code.
by DSguru2B
Tue Jun 12, 2007 7:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Enable orachadmin
Replies: 4
Views: 1935

Your dsenv file should have the path of shared library set to $APT_ORCHHOME/lib.
Then you need to run the orchadmin command by running the following

Code: Select all

cd $APT_ORCHHOME/bin
orchadmin delete $Path/xxx.ds
by DSguru2B
Mon Jun 11, 2007 7:48 pm
Forum:
Topic: How do you define "data lineage"
Replies: 12
Views: 6459

A well documented source to target mapping does contain all this info. Maybe not to the extent of trimming the fields where required but the key transformations. I guess my answer was incomplete. The lineage tends to occur in different places. Most of it in the mapping doc, some in the job's documen...
by DSguru2B
Mon Jun 11, 2007 7:42 pm
Forum: General
Topic: Primary Key for Staging Tables
Replies: 5
Views: 3661

It really depends upon what you are using the staging tables for. It also depends upon where the staging layer comes in. Right in the begining of the cycle before transformations or after transformations and right before loading the target. If your source has duplicates and you need to retain them, ...