Search found 54 matches

by johnthomas
Wed Dec 27, 2006 5:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute Command
Replies: 3
Views: 1932

xyz.sh: CONNECT: not found.
xyz.sh: DELETE: not found.
xyz.sh: COMMIT: not found.

In the shell script are you executing these ,SQL commands within the command center environment ??
by johnthomas
Tue Dec 26, 2006 8:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer in Parallel job
Replies: 24
Views: 8003

suman , As per your reply "server routine is used only if there is no value found for a particular field " .This could be achieved using switch and merge stage . Also since you include a server job in a sequencer job along with parallel job , i would go with like ray has commented "do...
by johnthomas
Fri Dec 22, 2006 6:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Basic Transformer in Parallel job
Replies: 24
Views: 8003

try using shared container instead for calling the server routine from a transformer
by johnthomas
Fri Dec 22, 2006 6:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Constraint and Rejects
Replies: 8
Views: 5004

Good suggestion chullett . I guess that is more appropriate in his case. He can use this approach in case all records rejected are not getting processed . I prefer the other approach since i need to process some of the records which are also rejected , so that we can report those as data which has d...
by johnthomas
Thu Dec 21, 2006 8:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Transformer Constraint and Rejects
Replies: 8
Views: 5004

One way is not to have a reject link ,but to have the reject critireon as the constraint in one of the output links .That will work . create a stage flag1. Have the expression return 0 if false otherwise return 1 eg: IF cond1 or (cond2 =2 and cond3=3) then 1 else 0 For the 4 output link write constr...
by johnthomas
Thu Dec 21, 2006 2:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Files created with Partitioning = Entire
Replies: 4
Views: 2684

I would suggest you use HASH partition since it will partition the lookup data based on the keys you specify. If you set to auto there is guarantee that the input value and the corresponding lookup data will be in the same node . If youspecify entire same lookup data will be duplicated one for each ...
by johnthomas
Thu Dec 21, 2006 1:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: assign multiple derivations in a transformer
Replies: 4
Views: 1542

I dont think the assignment statement will be valid .write seperate derivations for each variables else you should be getting the expression in
red color :x
by johnthomas
Thu Dec 21, 2006 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: select privileges
Replies: 7
Views: 3342

Try to get the select privleages as advised by dsguru2b . But in some situations we need to disable the constraints and enable the constraints later. You have to decide which is one is the best based on your specific
problem . 8)
by johnthomas
Thu Dec 21, 2006 9:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: select privileges
Replies: 7
Views: 3342

try disabling all the constraints on the target tables and select diasable constraints to false in the enterprise stage
by johnthomas
Tue Dec 19, 2006 3:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture rejects in Oracle Enterprise with load option?
Replies: 5
Views: 2476

please look into this directory where sqlldr log is stored .This is the
default directory

/var/dstage/Ascential/DataStage/Scratch
by johnthomas
Tue Dec 19, 2006 3:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cleaning the Scratch space
Replies: 9
Views: 10665

Hi Ray,

What i have noticed is lookup data is stored in this directory
/var/dstage/Ascential/DataStage/Datasets
and they get deleted after the job is complete . Any idea
where the dataset which is used by sqlldr is getting stored??

john
by johnthomas
Tue Dec 19, 2006 3:09 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting to an oracle table using oracle enterprise stage!
Replies: 5
Views: 2159

HINTS

You may need the 32 oracle client installed in your server . Also
check your environment setting in
/var/dstage/Ascential/DataStage/DSEngine/dsenv
by johnthomas
Tue Dec 19, 2006 10:47 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Capture rejects in Oracle Enterprise with load option?
Replies: 5
Views: 2476

I dont think you can have a reject link Oracle enterprise stage with load option . Try to create a reject link, it will say that it cannot create it because of lack of "output reject records property".You can always look into scratch directory to find why the data was not loaded
by johnthomas
Tue Dec 19, 2006 10:13 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Cleaning the Scratch space
Replies: 9
Views: 10665

What i have noted ,it is the control files and log files for the enterprise stage which is stored here . If a job is running which is using this control file it will create issues . As far as i know i know there should not be any problem deleting these files(control and log files) if there is no job...
by johnthomas
Mon Dec 18, 2006 12:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: regarding peculiar error
Replies: 4
Views: 962

This error is because you are Appending data to a table which has the same key values defined in the constraint .If you truncate the target table and load the data this error should not occur