Search found 6797 matches

by DSguru2B
Sat Feb 17, 2007 10:36 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Encrypted password
Replies: 6
Views: 4192

Re: Encrypted password

Is there a way we can decrypt the encrypted value and encrypt back again before sending it to Oracle? Or is there a work around for the above scenario. If you encrypt the value yourself, you need to have its twin process to decrypt the value. If the password was defined as a job parameter with type...
by DSguru2B
Sat Feb 17, 2007 10:30 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Server shared container on MPP
Replies: 7
Views: 1619

I think, the reason lies in the very architecture of the two systems and the nature of a shared container. SMP uses a single shared memory irrespective of how many cpus are connected to it. The result of the shared container resides in the shared memory and whatever cpu requires the shared contraine...
by DSguru2B
Sat Feb 17, 2007 10:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Promote Jobs from DEV to TEST
Replies: 15
Views: 4871

Why dont you export the executables as well, if you want to refrain from compiling all the jobs/routines again?
by DSguru2B
Sat Feb 17, 2007 10:14 am
Forum: General
Topic: Problem while running Transformer Stage
Replies: 14
Views: 5571

I know, it has happened a lot.
Next, I dont know, lets see whos phrase I use next :wink:
by DSguru2B
Sat Feb 17, 2007 9:56 am
Forum: General
Topic: Problem while running Transformer Stage
Replies: 14
Views: 5571

kamal kishore wrote:Hi Brian Kernighan,


Wow, he called me Brian Kernighan.
Read the manuals. Its all in there. Or better yet, search here, this has been discussed here before.
by DSguru2B
Fri Feb 16, 2007 2:41 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C-routine in DSEE
Replies: 3
Views: 813

Depends upon what compiler you have. I have aCC so i just typed
aCC +Z routine.c
by DSguru2B
Fri Feb 16, 2007 1:57 pm
Forum: General
Topic: Problem while running Transformer Stage
Replies: 14
Views: 5571

If you job is compiling then its not a compiler issue. Try a force compile and then run a job. Refer to thispost.
by DSguru2B
Fri Feb 16, 2007 1:43 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Teradata_Enterprise issue
Replies: 4
Views: 945

Does your password have any special characters like ($) ?
by DSguru2B
Fri Feb 16, 2007 1:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: File pattern warning in Sequential file
Replies: 9
Views: 1654

Try the following in execute command stage to check if any files with a particular patter exist. ls <<filedir>> | grep aaam_classif | wc -l where filedir is the directory where the files are. You can run that in execute command stage. If the result is greater than 0, process your job, else send out ...
by DSguru2B
Fri Feb 16, 2007 1:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: TeraData MultiLoad stage issue
Replies: 1
Views: 804

Welcome Aboard :)
See if this posthelps.
by DSguru2B
Fri Feb 16, 2007 1:26 pm
Forum: General
Topic: Problem while running Transformer Stage
Replies: 14
Views: 5571

kamal kishore wrote:I had installed C++ and then also i'm getting the same error can anyone tell what are the environment variables that are need to be set.

Compile the job as ArndW requested.
Four environment variables need to be set also, namely
APT_LINKER
APT_LINEROPT
APT_COMPILER
APT_COMPILEROPT.
by DSguru2B
Fri Feb 16, 2007 1:23 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: C-routine in DSEE
Replies: 3
Views: 813

You write the code and compile it at the unix level to create the object file (.o). Then give the path to that object file while creating the routine definition.
by DSguru2B
Fri Feb 16, 2007 12:12 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: optimum way to delete/insert
Replies: 5
Views: 1027

If you already have a hashed file with distinct values then yes, go for that option. Also, you need distinct values from table A, do a lookup against table B, get all the keys that exist and pass it to the delete statement. OR you can do a lookup on table B and get all the records from table B that ...
by DSguru2B
Fri Feb 16, 2007 12:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: optimum way to delete/insert
Replies: 5
Views: 1027

One target stage with before sql

Code: Select all

DELETE FROM TABLE B 
where B.KEY IN ( SELECT A.KEY from TABLE A)

update option set to "Insert rows without clearing". Source will be your TABLE A.
But that is going to take time for 2M records.
You need to go for TRUNCATE and BULK loads.
by DSguru2B
Fri Feb 16, 2007 11:53 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parameterize the job name in the Job Activity stage?
Replies: 5
Views: 1397

narasimha wrote:Check the sdk routine "UtilityRunJob" (Not sure if it exists in the PX edition)

That routine can run any job, provided its called from within a server job or a Basic routine.