Search found 6797 matches
- 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...
- 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...
- 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
- Sat Feb 17, 2007 10:14 am
- Forum: General
- Topic: Problem while running Transformer Stage
- Replies: 14
- Views: 5571
- 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.
- 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
- 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.
- 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
- 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 ...
- 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
- 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.
- 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
- 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 ...
- 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
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.
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.
- 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