Search found 4605 matches

by kduke
Thu Sep 14, 2006 9:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Universe Stage Query problem
Replies: 2
Views: 1314

The name is KIM. You must create the dictionary items. When you unzipped EtlStats then there should of been a folder called SqlScripts. There are a bunch of examples on how to create these dictionary items. There should be one called zDictCustom.sql in ColDicts folder. It contains this code. INSERT ...
by kduke
Thu Sep 14, 2006 8:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: New KgdGenHtml zip posted
Replies: 13
Views: 4831

New KgdGenHtml zip posted

I posted a new zip file for KgdGenHtml. It has source code on all but 2 routines. JobReport was not written by me. Tony Curcio wrote it and I do not have source. Maybe he will post it. Nice job Tony by the way. The other routine without code is KgdGenHtmlFromSqlRtn. I am not teaching you guys how to...
by kduke
Thu Sep 14, 2006 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Terminate a Job in Job control
Replies: 2
Views: 1006

DSStopJob() is the API call to stop a job.
by kduke
Thu Sep 14, 2006 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Updating a specific column
Replies: 3
Views: 1098

If you look at the generated SQL then you will see that it will only do an UPDATE ... WHERE KEY1 = ...

You should be safe.
by kduke
Wed Sep 13, 2006 9:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Method used to convert server jobs to parallel jobs ?
Replies: 6
Views: 2523

I think Ray's point was to not redesign. It was to think in a new way. There is not a one to one comparison between how to do something in PX versus Server. It is a whole new set of stages and concepts. Somethings you cannot replace with a concept in PX. The whole purpose of the Transition Lab is to...
by kduke
Wed Sep 13, 2006 9:02 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: issue with mail syntax in unix
Replies: 3
Views: 1091

mailx -s "$SUBJECT" $USERS

Works fine for me.
by kduke
Wed Sep 13, 2006 9:00 pm
Forum: General
Topic: Install Summary. Issues with compiling transformer stage.
Replies: 4
Views: 3685

XP Pro is not a supported platform.
by kduke
Wed Sep 13, 2006 3:20 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fetch job Stats
Replies: 8
Views: 2137

EtlStats has a job named DSJobReportDb. It is in a folder called EtlStats\ETL_Row_Counts. It has a before job ExecDOS command: #dsjobcmd# #projName# #jobName# XML >KimD\#jobName#.xml Where in DOS dsjobcmd="..\..\Engine\bin\dsjob -report" If you have UNIX then this needs to change to a ExecSH command...
by kduke
Wed Sep 13, 2006 3:07 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Migrating From 7.5.2 to 7.5.1A
Replies: 2
Views: 674

Not a good idea in my mind. When you upgrade then you need to upgrade all servers soon. You need to stop development until all servers or upgraded.
by kduke
Wed Sep 13, 2006 3:04 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Extraction Dates
Replies: 14
Views: 4078

Q1 has been answered. Q2 use both todays date and the max date in your audit table. Q3 use max date + 1 till today -1 because today is probably not complete. Q4 You need a record in your audit table for each source. Insert this record only after today is done. A lot of people have a record like this...
by kduke
Wed Sep 13, 2006 11:48 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to write to SQL-database in a routine?
Replies: 6
Views: 2365

The whole purpose of DataStage is to do this for you. You lose a lot of the beauty of DataStage when you go around it. The only reason to do this is to do a pure update. Please explain why you feel you need to go around DataStage.
by kduke
Wed Sep 13, 2006 11:43 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Insert Timestamp ("YYYY:MM:DD HH:MM:SS") in hashta
Replies: 12
Views: 4259

It is so much easier to make all the columns varchar on a hashed file. Deal with timestamps only when writing to a real table.
by kduke
Wed Sep 13, 2006 7:09 am
Forum: General
Topic: Accessing Universe from Unix
Replies: 16
Views: 10066

Does your DataStage Administrator work?
by kduke
Tue Sep 12, 2006 12:52 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: ETLStats question
Replies: 9
Views: 2547

You need to telnet into to your DataStage server. Ken posted the code to get to a TCL prompt. export DSHOME=`cat /.dshome` cd $DSHOME export PATH=$PATH:$DSHOME/bin . ./dsenv dssh The > is the TCL prompt. You need to Quit to get out of the DataStage engine. Next LOGTO MyProject I would do: PTERM CASE...
by kduke
Tue Sep 12, 2006 12:44 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Deleting logs of multiple jobs simultaneously
Replies: 6
Views: 1416

There are people who do this but if a job is running and you clear the log file it is just not smart. The phantom process is updating this table and rows disappear. If everyone is off the system and you do this then it is probably safe. The RT_LOGnnn files have surrogate keys. The next available key...