Search found 4605 matches

by kduke
Thu Sep 21, 2006 12:28 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of stages in a project
Replies: 7
Views: 1428

Columns more closely relates to lines of code. Do a search on complexity. We have had several discussions on it.
by kduke
Thu Sep 21, 2006 12:26 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Comparision of Hash and OCI lookup
Replies: 5
Views: 1920

Either works. It is a matter of preferrence. It is also a performance issue. Hashed files are faster but they take some time to build. If you add up the overall times for both then that should be your deciding factor. The fewer rows in the dimension the faster it loads. So I would say until you get ...
by kduke
Thu Sep 21, 2006 7:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of stages in a project
Replies: 7
Views: 1428

Mike is correct. You may want to count links, columns, routines and whatever else that takes time. Columns would be very difficult.
by kduke
Thu Sep 21, 2006 7:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: OpenOffice compatibility
Replies: 4
Views: 897

I would change these jobs to read csv files. Save the spreadsheets as csv files. Make your life easier.
by kduke
Thu Sep 21, 2006 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Dsjbob syntax - please help
Replies: 2
Views: 1094

There are examples. There are complete shell scripts with examples. Not sure why you are doing an eval.

Try this:

Code: Select all

$DsjobPath/dsjob -server $UX_SERVER -user $UX_USER -password $UX_PWD -run -mode NORMAL -param PRM_TRT_DT="$TREAT_DT_END" -jobstatus $PROJECT $SEQ 
by kduke
Thu Sep 21, 2006 7:13 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to ensure a hash file is 64bits.
Replies: 9
Views: 3055

Good to know.
by kduke
Thu Sep 21, 2006 7:12 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to call the DS Routine in batch job?
Replies: 8
Views: 2238

Job control is valid as well as batch job.
by kduke
Wed Sep 20, 2006 8:25 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Number of stages in a project
Replies: 7
Views: 1428

Code: Select all

Select 
   Count(*) As Cnt
From
   DS_JOBS
Where
   NAME NOT LIKE '\%'
;


Code: Select all

Select 
   Count(*) As Cnt
From
   DS_JOBOBJECTS
Where
   OLETYPE LIKE '%Stage'
;
by kduke
Wed Sep 20, 2006 2:08 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Ownership of UNIX objects created with datastage
Replies: 1
Views: 464

DataStage is setup normally so all developers are in one UNIX group like dstage including dsadm. This group needs to read and write to each others files so the umask needs to be 002. The group id is set on these directories so that each user in this group can delete the other users files. So there i...
by kduke
Wed Sep 20, 2006 1:55 pm
Forum: General
Topic: Sequential file to XML Output
Replies: 9
Views: 7397

I would pick server because he is on Windows but his profile also says parallel.
by kduke
Wed Sep 20, 2006 1:51 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Problem with multiple instance jobs
Replies: 2
Views: 652

Please post your code. It looks like a syntax issue.
by kduke
Wed Sep 20, 2006 1:49 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: No proper output while running routine
Replies: 4
Views: 1352

Please edit your post and put code tags around your program so we can see the indentation.
by kduke
Wed Sep 20, 2006 7:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Usage of a hash-file
Replies: 4
Views: 1315

The report is called DsHashFilesFind.sql in EtlStats. You can run it with job GenHtmlFromSqlDriver. You need to put the hashed file name in parameter Replacements. Here is the SQL to run at TCL if you like: select DS_JOBOBJECTS.OLETYPE AS STAGE_TYPE, DS_JOBS.NAME AS JOB_NAME FMT '35L', DS_JOBOBJECTS...
by kduke
Wed Sep 20, 2006 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: difference between two jobs
Replies: 2
Views: 1282

MetaStage is supposed to have a job diff. HAWK is supposed to have a much better diff. You can do it in Reporting Assistant with an Access report if you want to build your own.
by kduke
Wed Sep 20, 2006 7:42 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Can Hash File have more than one keys?
Replies: 6
Views: 1586

The default is 768.