Search found 262 matches

by asitagrawal
Tue Feb 19, 2008 5:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Delete custom routine exported by mistake as read-only
Replies: 7
Views: 4114

If you still have the .dsx file (i.e the exported file containing the routines)... then search for ReadOnly phrase... . . OLEType "CRoutine" Readonly "0" Category "EPM89_Routines\\Generic" . . Change the value "0" to "1" for ReadOnly prameter... and ...
by asitagrawal
Tue Feb 19, 2008 4:47 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Renaming a link breaks a transformer
Replies: 7
Views: 2589

I think.. when you rename the input link.. the key expression for the first field changes..but for the remaining fields..it does not... rite ? I also experience this in DataStage 7x , Server, Windows... Its a know bug from Ascential.. I will post the link of the post I found on the forum for this......
by asitagrawal
Tue Feb 19, 2008 4:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hash file not matching
Replies: 4
Views: 1910

While writing the Hashed file use TRIM function to remove any extra spaces from left and right.. atleast for the key fields.
While writing the Key Expression, use TRIM function in the same manner... so your key expression would be...

Code: Select all

TRIM(SeqFile.single_column[1285,10],'','B').
HTH :)
by asitagrawal
Tue Feb 19, 2008 4:39 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: eliminate warning messages in Datastage server edition
Replies: 4
Views: 2242

I agree with Ray's suggestion...

Analyse the cause of DataStage warnings which you are receiving now... Handle them... and if later any warning occurss then it would be a genuine error.
by asitagrawal
Tue Feb 19, 2008 4:36 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Lots of warning because of transformation
Replies: 4
Views: 2061

Time to mark the topic as Resolved please :)
by asitagrawal
Thu Feb 14, 2008 6:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute a routine into a command stage
Replies: 16
Views: 9614

Possibly..what Ray is suggesting is ..to dump a NULL into the seq file...anyhow you mentioned that the file is being deleted at the end ...so whats the worry ?
by asitagrawal
Thu Feb 14, 2008 4:33 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute a routine into a command stage
Replies: 16
Views: 9614

Ray has pointed out correctly that the command stage executes a Command not a DataStage routine... Also, I wonder if we can have a design, where there is an Input Stage, a transformer , BUT no output !! (This, I am saying, becuase the seq file in your current design is being considered as Superfluou...
by asitagrawal
Thu Feb 14, 2008 4:20 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rollback Option in DataStage
Replies: 10
Views: 8940

"Array Size" is the number of rows to be processed at the same time... "Transaction size" is the number of rows after whicha COMMIT needs to be issued...

Ideally..Transaction Size a multiple of Array Size.
by asitagrawal
Wed Feb 13, 2008 9:35 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute a routine into a command stage
Replies: 16
Views: 9614

Also, Once a value , fetched from the SQL server 2k5, has already been stored in a hashed file... you can use UtilityHashLookup to retrieve that value again and again....
by asitagrawal
Wed Feb 13, 2008 9:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute a routine into a command stage
Replies: 16
Views: 9614

I have one approach for this: 1. Job1: Store the value fetched from SQL server 2k5, into a hashed file, keyed by single key and some constant value, say "Dummy". 2. Routine Stage - R1: R1 will use UtilityHashLookup routine, to fetch the value back from the Hashedfile (here provide key valu...
by asitagrawal
Wed Feb 13, 2008 8:18 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Concatenating multiple rows from the same column
Replies: 11
Views: 6703

Like this approach too.... Fantastic !! :idea:
by asitagrawal
Wed Feb 13, 2008 7:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Rollback Option in DataStage
Replies: 10
Views: 8940

I agree with ArndW's suggestion...using TRANSACTION_SIZE of 0 is the best option for rollbacks... so if the job aborts due to any reason...then the data will not be committed. Also, I would suggest to load the child table first..and only when it is successfully loaded, proceed to load the parent tab...
by asitagrawal
Wed Feb 13, 2008 6:25 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning in transformer
Replies: 27
Views: 11023

Also, try running the job with a different input data set...
by asitagrawal
Wed Feb 13, 2008 5:34 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Warning in transformer
Replies: 27
Views: 11023

And , inside transformer ? What processing is happening on the data fetched, before being written to the seq file ?
by asitagrawal
Wed Feb 13, 2008 5:30 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Execute a routine into a command stage
Replies: 16
Views: 9614

Re: Execute a routine into a command stage

.... I have to set a value selected from the database into the user status. I retrieve the value (a single value) from an odbc stage, via a query on sql server 2k5. I need to make this value available to all the sequencer this job belong to ...... ...all the sequencer... or ... all the sequences .....