Search found 4605 matches

by kduke
Thu Feb 09, 2006 7:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: DWH Tools
Replies: 17
Views: 4144

Profile Stage,Data Stage,Meta Stage,Quality Stage


Should be ProfileStage, DataStage, MetaStage, QualityStage .
by kduke
Wed Feb 08, 2006 11:00 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg DS_Audit
Replies: 15
Views: 3499

You could use vi if you are on UNIX. UV.VI instead of ED. ED has help. Just type HELP or ?. It is like any line editor. Use I to insert until you type a blank line. C/KIM/KEN/99 Will change the first KIM on a line to KEN on the next 99 lines. EX Will exit. FI Will FILE or save your record. T Will go...
by kduke
Wed Feb 08, 2006 7:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Audit DS jobs
Replies: 6
Views: 2519

Code: Select all

SELECT * FROM DS_AUDIT WHERE DTM > EVAL "OCONV(@DATE-1, 'D/MDY[2,2,4]')"
by kduke
Wed Feb 08, 2006 7:10 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Export Jobs
Replies: 3
Views: 958

I have posted SQL and BASIC code which will show you the jobs within a sequence. All you need to do combine this with dsxeport.exe.
by kduke
Wed Feb 08, 2006 7:03 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg DS_Audit
Replies: 15
Views: 3499

Exactly, there are no shortcuts for learning this properly. If I make a mistake at this level then I know how to fix it. You better do full exports before playing around at this level.
by kduke
Wed Feb 08, 2006 7:41 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg DS_Audit
Replies: 15
Views: 3499

ED is a line editor. You have to learn this editor's commands. You can also use SETFILE.
by kduke
Wed Feb 08, 2006 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reg DS_Audit
Replies: 15
Views: 3499

You have to trick it. You have to create a q-pointer to access a repository table. This means you need to learn more about Universe. A q-pointer is a Universe equivalent of a synonym. It is a VOC entry. at TCL: ED VOC Q_DS_AUDIT 1: Q 2: 3: DS_AUDIT Should look like above. Once you have a q-pointer t...
by kduke
Mon Feb 06, 2006 3:37 pm
Forum: Site/Forum
Topic: Revealing Premium content for the post made upto 28 Feb 06.
Replies: 9
Views: 3996

Besides there is no way Dennis will ever make that much money or even recoop the money he has already spent on developing this site and maintaining it.
by kduke
Thu Feb 02, 2006 12:28 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trigger type in sequencer
Replies: 5
Views: 1408

Craig

You did a search for sequencer. What was Ray's signature time before last?
by kduke
Wed Feb 01, 2006 8:19 pm
Forum: Site/Forum
Topic: My Charter Membership!!
Replies: 19
Views: 9996

But not Starbucks.
by kduke
Wed Feb 01, 2006 7:27 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Is DB Client required for Configuring DSN on ETL Server?
Replies: 5
Views: 1911

Yes, you always need the client loaded. The DataStage server becomes a client to the database during loading or retrieving data.
by kduke
Tue Jan 31, 2006 6:27 pm
Forum: Site/Forum
Topic: Premium Content
Replies: 26
Views: 13824

Thanks. I sure would like to know which one people use the most. I have changed almost all of them. When things slow down I will update my tips page. Still think we should give extra utilities to premium members. Let me know what you think. I sure will give a discount on my products. Should update ...
by kduke
Tue Jan 31, 2006 6:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Assign a value to the job parameter in the job itself.
Replies: 3
Views: 842

Balaji is correct you cannot assign a parameter in one job. You need to break this up into 2 jobs. Normally you would do this in a batch job. A batch job is one with only job control code. In 7.5.1 you can use a routine activity and return its arguments and assign them to variables. These can be use...
by kduke
Tue Jan 31, 2006 6:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: READU threshold reached
Replies: 14
Views: 3769

Are you calling a routine with a readu in it? If not then I would say it is in the transaction size or array size if those exist in a UV stage.

Why are you updating a UV stage? I can see a advantage of reading from a UV stage but not writing to one.
by kduke
Mon Jan 30, 2006 7:27 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading Sequence parameter from a File/database
Replies: 5
Views: 1143

Select it into a hash file with a job. Use either UtilityHashRead or the get next surrogate key routine to develop your own routine.