Search found 6797 matches

by DSguru2B
Wed May 30, 2007 10:45 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: null value to timestamp
Replies: 6
Views: 4714

What function(s) are you using to change string to timestamp and for null handling?
by DSguru2B
Wed May 30, 2007 10:40 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Paremetrize the columns in a DB stage.
Replies: 7
Views: 1764

Sorry buddy. You cannot parametrize column names. No method that I know of. You will have to explicity define column names and keys.
by DSguru2B
Wed May 30, 2007 10:38 am
Forum: General
Topic: Performance altered by links in transformer
Replies: 2
Views: 838

Unload your dimension tables (surrogate key and natural key(s) only) in seperate hashed files. Do a lookup against these hashed files instead of going directly against the database. You should see a boost in performance.
by DSguru2B
Wed May 30, 2007 10:35 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Fluctuating Performance from Enterprise ODBC stage
Replies: 9
Views: 2161

The poor select performance might be due to 'back pressure' from your target database stage. If you replace your target with a dataset, you will see that the select will increase exponentially.
by DSguru2B
Wed May 30, 2007 9:18 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Message Digest function in Datastage
Replies: 5
Views: 1791

Welcome Aboard :)
In a parallel job, I highly doubt it. But in server job CRC() function can be used for this purpose.
by DSguru2B
Wed May 30, 2007 9:16 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: record propagation
Replies: 3
Views: 920

Welcome Aboard :)
You need to read each record as a single column and depending upon the range, duplicate them. You need to write your own routine to do this. Roy has a great FAQ entry on how to generate rows with a single row. Check here.
by DSguru2B
Wed May 30, 2007 8:14 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: StringToDate function
Replies: 2
Views: 2466

StringToDate() is a parallel job function and not a server job function. Use ICONV/OCONV to get your desired result. If your date is already in YY-MM-DD format and that is what you require then leave it as it is. Server jobs are not fussy about datatypes. You can directly map a varchar to a date fie...
by DSguru2B
Wed May 30, 2007 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: : The section leader died Fatal Error
Replies: 2
Views: 5620

Do a Search on all terms on keyworlds "The section leader on died".
by DSguru2B
Wed May 30, 2007 8:01 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Performance from 86 rows to 1 row per second
Replies: 11
Views: 4254

So what solved your problem? Did you seperate the update and insert streams or just dropped the indices and recreated them after the load?
by DSguru2B
Wed May 30, 2007 8:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issues Loading csv file into a Oracle Database
Replies: 7
Views: 1611

I believe the following should work. Test it out before you stick to it.

Code: Select all

sed '/**DISCLOSURE**/;/^*$/d'
by DSguru2B
Wed May 30, 2007 7:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Unable to import orchestrate schema definition from database
Replies: 6
Views: 1190

No. Dont change anything. It actually is cat `/.dshome`. That was a typo on my end. Anywho, I dont see ORACLE_HOME set in your dsenv file. cat `/.dshome` is not for oracle home.
by DSguru2B
Wed May 30, 2007 7:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: To Eliminate Double Quotes from the Source file
Replies: 12
Views: 3105

Great. You can mark the post as "Resolved" then.
by DSguru2B
Tue May 29, 2007 11:12 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup Stage - Rejection List
Replies: 2
Views: 730

You can pass your stream through either a modify stage and use handle_null() or use IsNull() in transformer.
by DSguru2B
Tue May 29, 2007 11:11 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: parallel job dummy stage
Replies: 4
Views: 873

Not possible. If this is for debugging then cut and paste the "half" of the job in a new job or make a copy of your present job and delete the half you dont want to execute.
NOTE: This is where modular jobs really shine.
by DSguru2B
Tue May 29, 2007 11:09 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: invocation id
Replies: 6
Views: 1208

Learn about multiple instance jobs in server developer guide. Job Invocations are used in multiple instance jobs.