Search found 4605 matches

by kduke
Tue Aug 02, 2005 9:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash Files
Replies: 2
Views: 953

Sure. It is built into the job. The job can clear hash files before loading them or DELETE and CREATE. This is very effective. You can even size the hash file properly which will speed up loading the hash file.
by kduke
Tue Aug 02, 2005 9:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Get the List of Jobs in a text file
Replies: 13
Views: 3706

There are 2 things going on here. You can run these commands under the control of the Universe shell (uvsh) or Korn (ksh) or Bourne shell (sh). Code: $DSHOME/bin/uvsh "select * from DS_JOBS" > /tmp/deletemeplease.txt Has to be under the control of ksh. Once you run uv as a separate command then you ...
by kduke
Mon Aug 01, 2005 12:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: command line example to Import .dsx files
Replies: 4
Views: 1346

You could do it manually dir -1 *dsx >files.txt

Edit files.txt and add the import command to each line.
by kduke
Mon Aug 01, 2005 8:49 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: De-encrypting parameters
Replies: 8
Views: 1994

IBM would not be happy if someone published a way to decrypt these values.
by kduke
Thu Jul 28, 2005 11:02 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined SQL behaves differently in 7.5.1A
Replies: 16
Views: 3702

I agree with Craig. I have done this in the past and it ignored the single line and worked as expected in PLSQL.
by kduke
Thu Jul 28, 2005 8:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-Defined SQL behaves differently in 7.5.1A
Replies: 16
Views: 3702

Remove the -- comment and you tell us what happens.
by kduke
Thu Jul 28, 2005 12:53 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob call from PC to AIX
Replies: 10
Views: 4907

There is a hosts file that looks up IP addresses. It is usually in C:\WINDOWS\system32\drivers\etc. If you have an entry like 10.10.10.10 kimhp kimlaptop Then kimhp and kimlaptop get transformed into 10.10.10.10. ping 10.10.10.10 ping kimhp ping kimlaptop Are all doing the same thing. The ping comma...
by kduke
Thu Jul 28, 2005 11:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: User-defined SQL for LookUp
Replies: 4
Views: 1495

I would take your select and create a temp table with it. Import the metadata. Change the metadata so the fields that need prompts for are keys. Build your ODBC or OCI lookup then switch it to user defined. This will save lots of time.

Do you know how to CREATE TABLE using a SELECT statement?
by kduke
Thu Jul 28, 2005 10:56 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No output from ExecSH routine
Replies: 4
Views: 1741

Post your code.
by kduke
Thu Jul 28, 2005 10:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: dsjob call from PC to AIX
Replies: 10
Views: 4907

Your syntax looks correct. Maybe your server is not in your PC host file or your password is incorrect.
by kduke
Wed Jul 27, 2005 11:47 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: unable to find 3 dll files necessary to run DS job
Replies: 6
Views: 2073

Why not use dsjob?
by kduke
Wed Jul 27, 2005 4:07 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling a function in a batch script
Replies: 3
Views: 1410

No you cannot. A routine can only be called from a BASIC program or using DsObjects.dll. A job is a BASIC program. So a job would work. The problem is you need to know a lot more about Universe to do this. In the old Universe world we would create BASIC libraries. We would store this in Type 19 hash...
by kduke
Wed Jul 27, 2005 2:59 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difficult situation
Replies: 3
Views: 1415

I am not sure you will get a response on this. It sounds like an interview question. It is too generic to have a good answer. Everything was difficult in the begining. Not sure too many things are difficult now except managing people's expectations. People are the problem now probably always were th...
by kduke
Wed Jul 27, 2005 10:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: cutter script to get table definitons from DSX ?
Replies: 2
Views: 762

Write your own. DSX files are not that complicated. Here is one in BASIC. Modify it. * ----------------------------------------------------------------- * KgdParseDSX(Path, FileName, JobsToSkip, CatOnlySw, DebugSw) * Decription: Parse DSX File. * Written by: Kim Duke * ----------------------...