Search found 71 matches

by Yuan_Edward
Wed May 14, 2008 12:54 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job sequence issue need help
Replies: 7
Views: 3409

Re: Job sequence issue need help

mandyli wrote:Hi

I would like Trigger the Job whether job status 1 or 2.

What is actual expression for this ?

Thanks
Man
I guess it will be something like this:

JobActivity1.$JobStatus = DSJS.RUNOK Or JobActivity1.$JobStatus = DSJS.RUNWARN

JobActivity1 is the Job Activity Stage name.
by Yuan_Edward
Sun Mar 30, 2008 5:49 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to increase the number of nodes in Parallel Job
Replies: 3
Views: 1974

Re: How to increase the number of nodes in Parallel Job

The Job is reading data from Oracle Database in a parallel Job and its speed is 600 rows per second. Can anyone tell me as to should i increase the number of records read per minute. and how should i increase the number of nodes in parallel Job. Thanks Ashish Gupta +919922892057 I observed that Ora...
by Yuan_Edward
Sun Mar 30, 2008 5:21 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage - Load and Upsert
Replies: 10
Views: 6334

Re: Oracle Enterprise stage - Load and Upsert

I am assuming that there are no constraints (primary/foreign/unique keys) except some checking constraints (e.g. some columns are non-nullable). In the Oracle Enterprise stage, did you specify the option DISABLE CONSTRAINTS to FALSE? If you set it to TRUE, Oracle will spend some time enabling the no...
by Yuan_Edward
Thu Mar 27, 2008 10:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage - Load and Upsert
Replies: 10
Views: 6334

Re: Oracle Enterprise stage - Load and Upsert

what value did you assign to $APT_ORACLE_LOAD_OPTIONS? Is that table partitioned? Are there any constraints/indexes on that table and how did you maintain the indexes/constraints during loading? How many records are to be loaded and how many records exist in that table? =============================...
by Yuan_Edward
Thu Mar 27, 2008 7:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Temporary table creation
Replies: 5
Views: 2927

Re: Oracle Temporary table creation

Have you ever tried to use DECIMAL(10), DECIMAL(5), DECIMAL(2) instead of NUMBERIC.
albasir wrote:
So, i am using the following datatypes in the DS job

NUMERIC (10)
NUMERIC(5)
NUMERIC(2)


Thanks
by Yuan_Edward
Thu Sep 20, 2007 1:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Any way to put parameter?
Replies: 8
Views: 3573

Re: Any way to put parameter?

Is a job parameter better than an environment variable for this case?
Mhasan wrote:if we have many number of source systems ... is there anyway (or routine who can serve the purpose)
by Yuan_Edward
Thu Sep 20, 2007 1:24 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Any way to put parameter?
Replies: 8
Views: 3573

Set the value of the environment variables in your job to $PROJDEF, if the value of the environment variable is subsequently changed (e.g. you can change the value in DS Administrator), the job will pick up the new value without the need for recompiling. Not sure if this is what you are after. =====...
by Yuan_Edward
Wed Sep 19, 2007 10:31 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connect by functionality in DataStage
Replies: 8
Views: 3074

Well, in our project, the only reason that we want to do it in DataStage could be, I guess, we want to utilize the parallel processing capability of DataStage to handle huge volume of data. Database like Oracle does have parallel processing ability but it is not as flexible as DS. Exactly. So, why t...
by Yuan_Edward
Wed Sep 19, 2007 10:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connect by functionality in DataStage
Replies: 8
Views: 3074

Do you guys think a parallel routine could achieve this? I will have a similiar requirement in our project.
kduke wrote:We did it in DataStage by running a job over and over until it selected 0 rows. What a mess. It is sort like drilling down one level at a time.
by Yuan_Edward
Wed Sep 19, 2007 6:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Have you a trick for : Field not like list of value
Replies: 13
Views: 7326

Or if you can afford the cost of Basic Transformer, the server built-in routine MatchField does the trick:) If you can do this in UNIX or Oracle (Oracle supports regular expression), pattern matching may help. Or you could call shell commands in your job somehow, e.g. echo yourfield | grep -c -e &qu...
by Yuan_Edward
Wed Sep 19, 2007 5:27 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Have you a trick for : Field not like list of value
Replies: 13
Views: 7326

If you can do this in UNIX or Oracle (Oracle supports regular expression), pattern matching may help. Or you could call shell commands in your job somehow, e.g. echo yourfield | grep -c -e "word1|word2..." Or you could write a parallel routine to achieve this. Hi ArndW, I think this is not...
by Yuan_Edward
Thu Aug 23, 2007 2:08 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel routines
Replies: 13
Views: 6828

Re: Parallel routines

It may be an issue with the compiler/linker options. Are you using dynamic or static library? Anyway the object file optin will always work :) . I would recommend to use the same compiler options as DataStage (APT_COMPILEOPT) when you compile the C++ codes into the object file. I am trying to write ...
by Yuan_Edward
Thu Aug 23, 2007 1:55 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Load Problem
Replies: 15
Views: 6717

Did you set the environment variable APT_ORACLE_LOAD_DELIMITED in your job? Also are there any double quotes in the input data? What error did you get in the sqlldr log? Can you post the sqlldr log file? Sounds like there might be a bug when DataStage creates the load file and doesn't inherit the ex...
by Yuan_Edward
Tue Aug 21, 2007 9:18 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: checking for file availability in a folder
Replies: 6
Views: 2534

Re: Sequence has both parallel and server jobs

I would run a shell script as a backgroup process to check the existing of the file and then trigger the DataStage to run if detected. as i said earlier, a file is dropped in the folder by another program anytime of the day and i should 1st check if any file has come into the respective folder, if s...
by Yuan_Edward
Tue Aug 21, 2007 9:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Error while loading data
Replies: 6
Views: 2157

Check the APT configuration file of your job and the scratch disk should be the location for Oracle sqlldr logs. Thanks for your reply I don't know where can i find this oracle log.. Please let me know if you have any idea.. Thanks. And what does the Oracle error log file contain? That will tell you...