Search found 4605 matches

by kduke
Fri Aug 12, 2005 2:05 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SCP problem (Command Stage)
Replies: 7
Views: 3905

Sounds cool.
by kduke
Fri Aug 12, 2005 9:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SCP problem (Command Stage)
Replies: 7
Views: 3905

Yes it will run under the user you start the job as. When you run a Command stage then it starts in the directory of the project. If you run a pwd command it should tell you what directory it is attached to. Look in the log. The output of your command should be in there. Make you command echo results.
by kduke
Fri Aug 12, 2005 9:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: SCP problem (Command Stage)
Replies: 7
Views: 3905

You can always shell out and run pwd. The best way is @WHO will give the Project namd. The path to the project is located in UV.ACCOUNT.

LIST DICT UV.ACCOUNT
by kduke
Fri Aug 12, 2005 8:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Sequencer Issue
Replies: 2
Views: 698

This feature started working in Ds7.1. You need to upgrade.
by kduke
Fri Aug 12, 2005 8:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Production data extarction issue
Replies: 6
Views: 1199

Another good reason is control. If you do it yourself then you can control when and where.
by kduke
Fri Aug 12, 2005 12:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To run all the jobs in a project from command prompt
Replies: 5
Views: 1324

Someone burned Ray?
by kduke
Thu Aug 11, 2005 5:01 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Production data extarction issue
Replies: 6
Views: 1199

Depends on how much money you have. If you have enough money to mirror your entire database more than once then it changes everything. You can then break one set of mirrors and unmount them from one machine like production and then mount them to test. This is very fast and very cool. You can do simi...
by kduke
Thu Aug 11, 2005 4:56 pm
Forum: Data Integration
Topic: etl/data mapping
Replies: 3
Views: 5544

Is this homework or a job interview question?
by kduke
Thu Aug 11, 2005 4:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Locking for Key Management
Replies: 19
Views: 4166

Why are you reading the whole file?
by kduke
Thu Aug 11, 2005 9:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Locking for Key Management
Replies: 19
Views: 4166

I think I understand. You are looking for gaps in your surrogate keys and want to fill them in. Ken Bland posted a nice solution to this before. I would search for that solution. I don't think you want to do this in multiple instances. You are probably correct in trying to lock the file to look for ...
by kduke
Thu Aug 11, 2005 8:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I-DESCRIPTOR
Replies: 4
Views: 1016

Sunshine Arnd is probably correct but it looks like this file is read only at the OS level. You need to fix that. I would also change the REVISE into ED. REVISE DICT HASH_EMPLOYEES USING ENTER.DICT ED DICT HASH_EMPLOYEES NumTimes10 If Num is field 2 then change Arnd's code into 1 - "I" 2 -...
by kduke
Thu Aug 11, 2005 1:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: To run all the jobs in a project from command prompt
Replies: 5
Views: 1324

That should shutdown any system. Nice.
by kduke
Wed Aug 10, 2005 9:27 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to use oracle hints in datastage
Replies: 10
Views: 5513

Post the code and the syntax error. Not enough information here. It should work based on what you have stated.
by kduke
Wed Aug 10, 2005 9:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: File Locking for Key Management
Replies: 19
Views: 4166

Every time your call this routine it adds one to the value and writes it back. This means that 2 threads can call this routine and both will get different values to write to 2 different keys. So they should not overwrite each other. Let us say instance A calls routine and gets 1 back. Next thread 2 ...
by kduke
Wed Aug 10, 2005 9:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: determining job parameters at runtime
Replies: 7
Views: 2236

The routine is called for every record. It will add one to the value and rturn that so you can assign it to your surrogate key.