Search found 31 matches

by jenkinsrob
Sun Nov 27, 2005 7:14 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Compare 76 inbound fields with 76 fields of table
Replies: 7
Views: 3717

Hi Jayaram, Perform the lookup based on your 4 key fields and read all of the fields (Source and Lookup) into your job. Concatenate all the fields from your source record together into a stage variable (remembering to handle NULLS on each field). Then use the crc32 or checksum function on your conca...
by jenkinsrob
Sun Nov 27, 2005 7:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log for Multiple instance
Replies: 14
Views: 4626

You can change the settings for how often your job logs are purged from the Administrator.
by jenkinsrob
Sun Nov 27, 2005 5:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Log for Multiple instance
Replies: 14
Views: 4626

I find it useful to parameterize the invocation id of multi-instance jobs so that each instance appears separately in Director.
by jenkinsrob
Thu Nov 24, 2005 7:40 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Summing up Financial Year to Date data 1 April to Mar 31
Replies: 9
Views: 3833

DaMouse,

There are certain members of DSXchange who take a lot of time to share their considerable knowledge with other users of this site. Kenneth Bland is one such member.

Perhaps you should take his advise less personally because then you might learn something...
by jenkinsrob
Wed Nov 23, 2005 7:30 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Validating all fields of a row & send errors to ErrFile/
Replies: 7
Views: 2359

If you have 3 errors on the same row in your source file do you want three rows in your Oracle table or 1 row detailing the 3 source errors??
by jenkinsrob
Wed Nov 23, 2005 5:05 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Attach datetime to file after succesful completion of job
Replies: 6
Views: 3086

If you are using a mv command in an After-Job Subroutine you can do the following:

Code: Select all


mv <Source_Dir>/<Your_File> <Target_Dir>/<Your_File>`date '+%Y-%m-%d:%H:%M:%S'`

The ExecSH option should be selected.
by jenkinsrob
Wed Nov 23, 2005 4:13 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Reading a fixed length flat file- no delimiter
Replies: 2
Views: 1074

You should be able to handle this with the Sequential File Stage.

Set all your datatypes to CHAR and specify the length of each column in the file.
by jenkinsrob
Mon Nov 21, 2005 11:51 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fatal Error Invalid character encountered in table
Replies: 2
Views: 1859

If you are using the LOAD option then Datastage will be using SQL Loader to insert records into the DB. If you check your logs then you should find reference to a SQL Loader Log file called something like ora.23480.494029.0.log This file will be located on the resource scratchdisk defined in your Co...
by jenkinsrob
Mon Nov 21, 2005 11:42 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job Parameter Compilation Error
Replies: 8
Views: 2211

We are using 7.5.1 Server and Client and have experienced the same problem with Trigger Conditions in Job Sequencers.

I have found that simply closing Designer and Reopening it solves this problem.

Strange... :?
by jenkinsrob
Thu Nov 17, 2005 8:54 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: KeyMgtGetNextValueConcurrent(), Server Container, PX Job
Replies: 6
Views: 2565

If you dont need the key value elsewhere in your etl process and only care that it is a unique value then you should consider using a trigger on the table into which you are inserting the data...
by jenkinsrob
Thu Nov 17, 2005 5:58 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: generate zeros based on input
Replies: 4
Views: 1221

Try the following code in a Stage Variable in your transformer

Code: Select all


<Field>:Str("0", 6 - Len(<Field>))

by jenkinsrob
Thu Nov 17, 2005 4:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Parallel Job compiles on one desktop but not any others
Replies: 4
Views: 3186

Are you sure that you have exactly the same version of the client software as others in your team??

I had the same problem the other day whereby I was able to compile a job on my machine (Client 7.5.1) but it wouldn't compile on another machine running client 7.5.1a
by jenkinsrob
Wed Nov 16, 2005 4:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Job Doesn't trigger the Exception Handler when it aborts
Replies: 4
Views: 2516

You need to check the 'Automatically handle activities that fail' checkbox in the job properties of your seqences.
by jenkinsrob
Tue Nov 15, 2005 5:39 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: date formats in Paralle extender
Replies: 2
Views: 1589

What is you source??

You can either read the date as a string and chop out the /'s and rearrange to the YYYYMMDD format. Then use StringToDate(<YourDate>,'%yyyy%mm%dd') to get it into a date datatype

Or

Do DateToString() Then Rearrange Then do StringToDate()
by jenkinsrob
Tue May 25, 2004 8:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Abnormal Termination
Replies: 4
Views: 1877

Its definitely not a coding error - this job has been running on a daily basis for over 3 months now and we have never had this error before... We are also getting this error in other jobs and I think it might be a space issue on the file system but i'm not sure which stuff it is safe to delete othe...