Search found 4605 matches
- 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
- 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 ...
- 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
- Thu Sep 21, 2006 7:25 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: OpenOffice compatibility
- Replies: 4
- Views: 897
- 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:
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
- 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
- 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
- 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'
;
- 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...
- Wed Sep 20, 2006 1:55 pm
- Forum: General
- Topic: Sequential file to XML Output
- Replies: 9
- Views: 7397
- 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
- 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
- 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...
- 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
- 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