Search found 4605 matches
- Tue Jul 10, 2007 7:02 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Table count to a Parameter
- Replies: 4
- Views: 1188
- Mon Jul 09, 2007 2:35 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Promoting Auto-purge settings
- Replies: 2
- Views: 1197
- Fri Jul 06, 2007 10:00 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequencers in server jobs
- Replies: 4
- Views: 1125
- Thu Jul 05, 2007 4:08 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: what is the max value in key management next value
- Replies: 5
- Views: 2086
I am not sure what the maximum value is but I bet you are getting duplicates because your SDKSequeces hashed file is out of sync with the database. I think you should always reseed these values from the target database. I included a job to do this in EtlStats. Select max(#jpColumnName#) from #jpTabl...
- Thu Jul 05, 2007 11:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Get the stage name in all jobs
- Replies: 4
- Views: 1452
Code: Select all
Select
NAME as StageName
From
DS_JOBOBJECTS
Where
OLETYPE LILE '%Stage'
;
Should get you close.
- Thu Jul 05, 2007 11:14 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error calling subroutine: DSR_SCHEDULE
- Replies: 7
- Views: 2310
- Thu Jul 05, 2007 11:05 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: The DSJ.JOBELAPSED bug
- Replies: 4
- Views: 1162
- Thu Jul 05, 2007 11:00 am
- Forum: General
- Topic: Problem creating indexes!
- Replies: 4
- Views: 1313
If you edit your VOC entry for this hashed file then there should 3 lines. ED VOC DS_AUDIT 3 lines long. ----: P 0001: F Ardent DataStage Repository file 0002: DS_AUDIT 0003: D_DS_AUDIT Bottom at line 3. ----: EX Line 1 says it is a F-pointer or file pointer. Line 2 is the DATA side of this hashed f...
- Wed Jul 04, 2007 9:12 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: IsValid Function
- Replies: 16
- Views: 6086
- Wed Jul 04, 2007 12:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Table creation in Universe Database
- Replies: 5
- Views: 1133
There are lots of jobs in EtlStats which extract job metadata from DS_JOBS and DS_JOBOBJECTS. The row counts are stored in hashed files as well as tables. I have created restartable code based on whats in the hashed files. If you look for a successful completion on today then skip the job that type ...
- Wed Jul 04, 2007 8:06 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DIff between static and dynamic hashed file
- Replies: 1
- Views: 574
- Wed Jul 04, 2007 7:54 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Passing multiple lines to BAPI table parameter
- Replies: 4
- Views: 2251
- Tue Jul 03, 2007 9:29 pm
- Forum: Site/Forum
- Topic: When will the Site be back to normal?
- Replies: 6
- Views: 4596
- Tue Jul 03, 2007 9:27 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem connects to SQL Server 2005
- Replies: 4
- Views: 1357
- Tue Jul 03, 2007 9:25 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Impact of high values of Modulus / Separation
- Replies: 11
- Views: 2177
He is telling you 32 is large. Are your records 3,000 chars long? That is 5 or 6 records in 16KB. There are lots of posts on HASH.HELP and the other one for dynamic files. The name slipped my mind right now. Sizing hashed files is a lot of extra work most of us do not want to add because the next pe...