Isnt the checkpoint history recorded by the sequence ? and if you mean resetting the sequence thats as good as compiling and again will inturn lose the checkpointed history. Me confused
Search found 6797 matches
- Tue Jun 13, 2006 7:19 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to remove checkpoint on a job automatically.
- Replies: 5
- Views: 2010
- Tue Jun 13, 2006 7:00 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: error in DRDBMS
- Replies: 1
- Views: 1068
Re: error in DRDBMS
sudhakar_viswa wrote:Hi,
Invalid timestamp value in getInputFieldAsString()for field '9'
sudhakar
The hint is right there in the warning message. The timestamp is invalid. Try to investigate into it and see why its invalid.
- Tue Jun 13, 2006 6:54 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Invalid arguments in scripts
- Replies: 25
- Views: 8081
- Tue Jun 13, 2006 6:45 am
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: How to remove checkpoint on a job automatically.
- Replies: 5
- Views: 2010
There is no way to do that. The only way to do it is to recompile the sequence which will clear all checkpoints. The best way to handle such a situation is to abort the job when a single warning occurs. You can do that by passing the warning limit in your command dsjob -run -warn 1...... OR better y...
- Tue Jun 13, 2006 6:40 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Duplicate Lookup Values
- Replies: 7
- Views: 2232
- Tue Jun 13, 2006 6:37 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: check whether the string in between strings or not
- Replies: 3
- Views: 736
- Tue Jun 13, 2006 6:33 am
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: if FileB is not empty propagate FileA
- Replies: 33
- Views: 4705
- Mon Jun 12, 2006 4:42 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: date
- Replies: 17
- Views: 4570
- Mon Jun 12, 2006 2:49 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 UDB Bulk Stage - Performance Issue
- Replies: 57
- Views: 14878
AHA. The answer to your problem might be right there. How the load works is that it drops the indices and rebuilds them. If you dont have privilege to do that then there is a good possiblilty that your job hangs. They really dont seem to match but ask your DBA to give you that privilege for just a t...
- Mon Jun 12, 2006 2:23 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 UDB Bulk Stage - Performance Issue
- Replies: 57
- Views: 14878
Its "Load Intermediate" am sorry for the typo. Again a typo. Its Load Immediate and not Intermediate. You need to rest buddy. Tomorrow's another day Why your job finishes successfully when Load Immediate is set to No is because it doesnt load. It actually just builds the INPUTDATA.DAT file, the CMD...
- Mon Jun 12, 2006 2:18 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Efficient way of design
- Replies: 4
- Views: 918
There are a couple of different ways you can try. If the meta data of all the five files is identical then: 1) Make your job Multi-instance and execute 5 instances for the 5 files 2) do a cat of the five files at the unix level and combine them into one file 3) Reference all the five files by five s...
- Mon Jun 12, 2006 2:03 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: Please help in deciphering Server transformer expression
- Replies: 2
- Views: 1201
Read the DS manual. Or go to the routine itself in your repository view and read the description. Here, this is directly from the routine's description Short Description : Convert an ASCII COBOL PIC 9(n) data type into a number Long Description : COBOL PIC 9 in ASCII is in reality the same thing as ...
- Mon Jun 12, 2006 1:55 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 UDB Bulk Stage - Performance Issue
- Replies: 57
- Views: 14878
But what i noticed is that changing 'Intermediate files' What option is that. The only option i see over here with the word 'Intermediate' is 'Remove Intermediate Datafile'. That option is to remove the INPUTDATA.DAT file that it creates once the load is done. Whether the job works or not, that is ...
- Mon Jun 12, 2006 1:26 pm
- Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
- Topic: Anyone else with Netezza and DataStage?
- Replies: 18
- Views: 19772
- Mon Jun 12, 2006 1:01 pm
- Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
- Topic: DB2 UDB Bulk Stage - Performance Issue
- Replies: 57
- Views: 14878
O no. The job is running fine but did you actually take a look at the table whether the records got loaded ? I seriously doubt it. Load immediate (not intermediate) setting to NO means the data gets copied to INPUTDATA.DAT for delayed loading. Then the bat file is used to load the data. Setting the ...