Search found 472 matches

by tonystark622
Thu Sep 18, 2003 11:45 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: PGP Encryption
Replies: 1
Views: 1321

You could certainly run an external program to PGP encrypt it (using ExecSh or ExecDOS) from withing DataStage. As 1) an after stage routine, 2) an after job routine, 3) from a Job Sequencer or batch job).

Good Luck,
Tony
by tonystark622
Thu Sep 11, 2003 7:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Access Oracle from Datastage on Solaris
Replies: 4
Views: 1625

Louise, The Oracle client must be installed and configured correctly on the Solaris server on which DataStage is running. In addition, the directories containing the Oracle libraries must be added to some Environment variables in the 'dsenv' file. The 'dsenv' file is in the ../DataStage/DSEngine dir...
by tonystark622
Mon Sep 08, 2003 6:58 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: ExecCommand in Sequences
Replies: 11
Views: 2703

Craig, You're probably aware of this, but incase you're not... I just noticed that I can use Job Parameters in different stages in a Job Sequencer, but I can't put pound signs ('#') around them... ROOT_PATH : "/" : PROJECT_PATH: "/config_files/JobControl.cfg" ROOT_PATH and PROJEC...
by tonystark622
Thu Sep 04, 2003 9:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: I don not see Palallel Jobs
Replies: 2
Views: 565

Chetan, I suspect that Parallel Extender was not installed when the server was installed. Parallel extender doesn't not automatically get installed with DataStage server. If your company bought parallel extender, I believe that you can install it without wiping out your current DataStage jobs, etc.,...
by tonystark622
Fri Aug 29, 2003 2:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Optimistic job description
Replies: 5
Views: 1563

heh! I see stuff like this all the time and it cracks me up. Just shows that the customer's requirements may be "negotiable". Have a good weekend, Vincent!

Tony
by tonystark622
Tue Aug 26, 2003 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job is hanging at runtime
Replies: 2
Views: 1379

Srinivas,

If you do not have the same number of rows returning from each link to the collector, it will hang waiting for the "next" link to process.

Hope this helps,
Tony
by tonystark622
Fri Aug 22, 2003 1:33 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Organizing hash files
Replies: 3
Views: 1264

Kenneth, I hadn't considered a batch job. That would take care of it and I could handle all the conditions that make the other approach somewhat brittle. Am I thinking correctly that having several developers put hash files under the project directory is just asking for trouble (unless someone coord...
by tonystark622
Fri Aug 22, 2003 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Organizing hash files
Replies: 3
Views: 1264

Organizing hash files

I would like to be able to access a hash file with the UV stage, but have the hash file in a directory other than a project directory. I know that when I create a hash file, I can put it in another directory by using the "Use directory path" option. However, if I do this, I cannot access t...
by tonystark622
Wed Aug 20, 2003 9:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: UV secondary indexes
Replies: 17
Views: 3826

Emma, When I ran into this need, I created an extra field on the hash file that was a "composite" index, i.e. it contained the contents of both "key" fields, concatenated together and separated by some character (I used a tilde). So creating the field looked something like this: ...
by tonystark622
Tue Aug 19, 2003 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance Issue
Replies: 5
Views: 1319

Abhishek Sharma, You can write the data to a sequential file and use the bulk load stage or sqlloader to load the data into Oracle. Are you doing any lookups in your job (server job, not PX)? If so, are they live database connections or hash files? Live database lookups can slow your job down signif...
by tonystark622
Wed Aug 13, 2003 9:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Versioning of jobs
Replies: 7
Views: 2717

Guillermo,

Have you used the 'release job', 'package job(s)', 'install package' functionality in Manager? This can be useful in these situations.

Tony
by tonystark622
Wed Aug 13, 2003 7:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: nls_put_fixedwidth() - NLS mapping error
Replies: 3
Views: 2038

Can you see what the '?' chars are? I did a hex dump and saw that they were char(25) (hex 19). I never did figure out where the char(25) was coming from. Those columns were empty in the input flat file. I handled it something like this: In the column derivation I had a transform NullToSpace NullToSp...
by tonystark622
Tue Aug 12, 2003 4:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: nls_put_fixedwidth() - NLS mapping error
Replies: 3
Views: 2038

What I found was that I had some columns that were NULL. I was putting them into a hash file and reading them back out. OracleOCI8 -> Transformer -> hash -> Transformer -> sequential file I would get errors writing to the sequential file. I would NOT get these errors if I just wrote the input data i...
by tonystark622
Thu Aug 07, 2003 10:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of stage (Solved)
Replies: 14
Views: 5460

In the Columns tab on the Input tab of the Aggregator stage you should see a column in the grid marked Sort. Put a 1,2,3,4, etc in this field to designate the sort order.

hope this helps,
Tony
by tonystark622
Tue Aug 05, 2003 4:28 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: key expression in transformer
Replies: 7
Views: 2398

Stephan, You could create one new field - it would contain the contents of the two columns (separated by something like a tilde). This could be done when you create the hash file. Then build two new indexes. One on the two column key field and one on the single column that you need to loosen to. You...