Search found 4605 matches

by kduke
Wed Sep 22, 2004 12:43 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Password Validation
Replies: 15
Views: 4066

What version of UNIX? Just curious. I want to try it here.
by kduke
Wed Sep 22, 2004 12:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column combinations-Cartesian product
Replies: 8
Views: 2450

I would do the same thing in BASIC. SELECT into a new hash file. Just run it from a before routine instead of using a UV stage. You could use ExecTCL is you want.
by kduke
Wed Sep 22, 2004 7:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal termination of DataStage.
Replies: 15
Views: 8945

We use a Oracle 8 client with a Oracle 9 database. Works flawlessly.
by kduke
Wed Sep 22, 2004 7:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Column combinations-Cartesian product
Replies: 8
Views: 2450

So here I wanted the data in the following way with out using any ODBC / Database Stages. I mean I dont have any stage where I can write SELECT statement. This is not true. You can use a UV stage against a hash file. That is what it was designed to do. Explain to me why this would not work or it is...
by kduke
Tue Sep 21, 2004 3:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Clear a Hashed File Outside of Datastage Job?
Replies: 37
Views: 15718

I told you wrong it is "CLEAR.FILE MyHashFileName". This will work in a before job routine.
by kduke
Tue Sep 21, 2004 3:29 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file Key column specification
Replies: 1
Views: 423

Older versions of DataStage required the metadata to always be in the same order. Newer releases has fixed this. Yes they can be scattered 3,5,7 or whatever.
by kduke
Tue Sep 21, 2004 2:37 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to Clear a Hashed File Outside of Datastage Job?
Replies: 37
Views: 15718

There is a check box to clear the file. If the hash file is local to the project the ExecTCL("CLEARFILE MyHashFile"). This routine can be in a before job or called in a sequence. It is included in the SDK.
by kduke
Tue Sep 21, 2004 2:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: On request jobs
Replies: 10
Views: 2112

Keith is probably right but you can run dsjob anytime you want. You could execute it from the other application or write a simple VB front end or a batch file. Do a search there are some cool batch files and shell scripts posted to do a lot of the work for you.
by kduke
Tue Sep 21, 2004 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DS_JOBS corrupted
Replies: 8
Views: 7874

I problem was in the index. I would get everyone out of DataStage and run DS.TOOLS and reindex your files. Usually if you corrupted one file then others are corrupted and you do not know it. Sometimes Universe can repair these on the fly but you may get bad results. Lets say it can repair an index b...
by kduke
Tue Sep 21, 2004 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Count command
Replies: 3
Views: 1268

You cannot do a LOGTO because that can break your connection to the project. Do a search on SETFILE, SET-FILE or SET.FILE. You can create VOC pointers with SETFILE. It would be easy to remove tose afterwards. SETFILE will create Q-pointers to hash files in other projects to you can count hem as well...
by kduke
Tue Sep 21, 2004 8:05 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Composite keys in hashed files
Replies: 7
Views: 2520

If you create a composite key in a job then the separator is @TM. There are ways around this but that is the default. So your key should be: Key = KeyField1 : @TM : KeyField2 This has been covered lots of times but maybe under "compound keys" or "muti-part keys". Might be hard to search for. Ray has...
by kduke
Tue Sep 21, 2004 7:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to use XMLInput and XMLOutput Stage in DataStage PX 7.0
Replies: 1
Views: 1086

I posted EtlStats on my web site and on ADN. It uses dsjob -report Project Job XML to get row counts, start and stop times. Do a search I explained it several times. It was based on another post on ADN called DSJobReport. You could download that as well. It is not as complicated. You do not need to ...
by kduke
Tue Sep 21, 2004 7:50 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Gartner Magic Quadrant for ETL, 2H04
Replies: 1
Views: 613

Vincent

Thanks. Very cool.
by kduke
Fri Sep 17, 2004 1:22 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynmically Creating Job Parameter
Replies: 7
Views: 2265

Ray has explained this before. I am not sure I remember all the details why but you cannot change a parameter value in job control. I think the reason was the connection was already established to all the dabases in the stages before job control was executed. You have to create a batch job and feed ...
by kduke
Thu Sep 16, 2004 12:54 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Accessing hash files in a directory
Replies: 4
Views: 900

You can you use the search command on the VOC and look for that directory or

Code: Select all

LIST VOC WITH F2 LIKE DirName...