Sequences in SDKSequences do not get reset automatically.
Somewhere in your processing a process (routine?) is being invoked to reset the sequence.
Another possibility is that someone at your site has deleted or cleared the SDKSequences hashed file.
Search found 53125 matches
- Thu Nov 16, 2006 7:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: sequnce got resetted
- Replies: 1
- Views: 785
- Thu Nov 16, 2006 7:29 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Problem in Sequence
- Replies: 4
- Views: 1078
- Thu Nov 16, 2006 7:28 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Format Delimiter ascii 168 (¿)
- Replies: 11
- Views: 5165
- Thu Nov 16, 2006 7:26 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: script error
- Replies: 2
- Views: 789
And you will also need a "here script" to tell the FTP command when its commands list is exhausted, to effect graceful return to your script. For example
Code: Select all
ftp << end_of_commands
open...
username...
etc...
bye
end_of_commands
result=$?- Thu Nov 16, 2006 7:21 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: pass parameter to DSSendmail Subroutine
- Replies: 8
- Views: 2194
- Thu Nov 16, 2006 7:18 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: The property window of job activity stage
- Replies: 11
- Views: 2538
- Thu Nov 16, 2006 7:16 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: passing parameter to stored procedure stage
- Replies: 2
- Views: 3685
- Thu Nov 16, 2006 7:14 am
- Forum: General
- Topic: Job Server dosent started
- Replies: 8
- Views: 4596
You (or the UNIX Administrator) need to monitor the operating system, with particular emphasis on CPU (%Idle), memory (PF/S) and disk space. You have to do this at short intervals when the problem is occurring, but you also need baseline averages collected over longer periods of time with which to c...
- Wed Nov 15, 2006 9:19 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: lookup space problem
- Replies: 14
- Views: 5226
- Wed Nov 15, 2006 6:00 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Deriving Row Count on Windows
- Replies: 2
- Views: 2387
Curious. C:\Documents and Settings\Ray>help find find -- find files within file tree Usage: find directory ... expression Operators: ! not -a and -o or Primaries: -acl user-pattern[:[+-=]access-mask] user-pattern appears in ACL with appropriate permissions -atime # accessed # days ago -cpio cpio-fil...
- Wed Nov 15, 2006 5:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Creating Routines in Parallel Extender
- Replies: 2
- Views: 1035
- Wed Nov 15, 2006 5:25 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Surrogate key generation, update and use within a single job
- Replies: 2
- Views: 1354
Welcome aboard. :D The good news is that the technique is exactly the same in parallel jobs. Split the stream into inserts and updates, and generate surrogate key values accordingly (though you have a Surrogate Key Generator stage to help with the latter). What you do need to ensure is that the look...
- Wed Nov 15, 2006 5:22 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Concatenation Date and Time
- Replies: 4
- Views: 1269
Welcome aboard. :D One of the features of server jobs is that there are no data types, so you can use apparently weird constructions. In your case, you can strip and assemble the string data directly. But what precisely do you want to be the output format? Perhaps an ISO 8601 standard timestamp (YYY...
- Wed Nov 15, 2006 5:19 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Fails to clear Inprocess row buffer.
- Replies: 1
- Views: 955
- Wed Nov 15, 2006 5:16 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Deriving Row Count on Windows
- Replies: 2
- Views: 2387
The DOS find command is used to find files within a tree - not characters within a file. Type in find /? in a CMD shell for more information. The DOS findstr command does not have a counting capability. You ARE going to be up for processing the file. Fastest is probably a generic job that reads the ...