Search found 53125 matches
- Thu Sep 28, 2006 5:50 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Error handling
- Replies: 2
- Views: 1118
- Thu Sep 28, 2006 5:49 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Sequence values as 0000-9999,AA-ZZ & Space in same colum
- Replies: 1
- Views: 1141
- Thu Sep 28, 2006 5:47 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Performance Issue
- Replies: 8
- Views: 3362
- Thu Sep 28, 2006 5:42 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DataStage Job 1946 Phantom 732 -- Meaning of Error Messages
- Replies: 11
- Views: 7605
- Thu Sep 28, 2006 12:31 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to make one sequence wait for job in other seq
- Replies: 1
- Views: 858
- Wed Sep 27, 2006 10:59 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: How to Insert and Delete the rows in the same Table
- Replies: 8
- Views: 2538
Supply only the key column(s) on the link that looks after DELETE operations. Use user-defined SQL of the form
Code: Select all
DELETE FROM tablename WHERE keycol = '?';- Wed Sep 27, 2006 7:43 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Reset set of Sequence Variables
- Replies: 2
- Views: 1024
Is there some regularity to the names? Do you want to reset them all to the same value? If yes, then it's standard SQL.
Code: Select all
UPDATE SDKSequences USING DICT VOC SET F1 = 'New_Value' WHERE @ID IN ('Sequence_Name1', 'SequenceName2', 'SequenceName3'); - Wed Sep 27, 2006 7:41 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Update table taking too long.
- Replies: 8
- Views: 3852
- Wed Sep 27, 2006 7:38 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Field(Orders.RecIn,"","",2) = RecType
- Replies: 8
- Views: 3755
- Wed Sep 27, 2006 3:54 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Inner Join, Combine: When checking operator: Dropping compon
- Replies: 3
- Views: 3602
- Wed Sep 27, 2006 3:53 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Field(Orders.RecIn,"","",2) = RecType
- Replies: 8
- Views: 3755
- Wed Sep 27, 2006 3:50 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Language for coding builop
- Replies: 1
- Views: 879
- Wed Sep 27, 2006 3:48 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Unix user group setup for Datastage implementation
- Replies: 13
- Views: 7076
- Wed Sep 27, 2006 3:45 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DSR.ADMIN error- while logging in Administrator
- Replies: 3
- Views: 1410
First check the Permissions tab in Administrator. The message suggests that the non-dsadm user is not in any group to which the Developer role is assigned. I think the other messages are spurious; the fact that you can log in via the Administrator client suggests that DataStage is set up OK; do you ...
- Wed Sep 27, 2006 3:41 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Hash file Error
- Replies: 9
- Views: 2014
The warning can safely be ignored. It informs you that a point has been reached where the hashed file will not fit in the write cache, and that therefore the hashed file writes will go to disk. Disabling use of the write cache will slow things, of course, but will prevent the warning. The write cach...