Search found 6797 matches

by DSguru2B
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

So Craig, by resetting the job that job will run again when the sequence is fired ?
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 :roll:
by DSguru2B
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.
by DSguru2B
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

ecclesr , please start a new thread. I know your problem is the same as the OP but you guys are on different paltforms and hence the solution will be different.
by DSguru2B
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...
by DSguru2B
Tue Jun 13, 2006 6:40 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Duplicate Lookup Values
Replies: 7
Views: 2232

Better yet, reverse sort it and pass it through the hashed file. You dont need to make your design more complicated just to get a last record in your hashed file.
by DSguru2B
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

Take a look at the Index() function or the Matches operand. That will get you your desired result.
by DSguru2B
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

You dont even need to write a whole shell for it. Take a look at DSExecute() routine. Pass in the test() command with either a -z or -n to check if the file is empty. And if it is empty return 1 else 0. Use this DSExecute() as the derivation of the required column of the hashed file.
by DSguru2B
Mon Jun 12, 2006 4:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date
Replies: 17
Views: 4570

Yes you need to hardcode it. Try it out. I know for sure it works in server jobs, but try it and let me know. Thats what even Ray was wondering if it worked in a px job.
You are right, you need to provide
#path#Msg.XML#DSJobStartDate#
See if it works.
by DSguru2B
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...
by DSguru2B
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...
by DSguru2B
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...
by DSguru2B
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 ...
by DSguru2B
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 ...
by DSguru2B
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

Search for the word Netezza. I think there are a couple of posts besides yours out there. You will find a hand full to be in the same boat as you.
by DSguru2B
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 ...