Search found 42189 matches

by chulett
Thu Sep 08, 2011 8:44 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: XML Stage Abnormal termination of stage transformer_name de
Replies: 9
Views: 4305

What have you done to try and fix it in the last month? Was your official support provider able to help narrow it down at all, provide any patch?
by chulett
Thu Sep 08, 2011 6:10 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: orchadmin copy command
Replies: 8
Views: 8881

He's a thinker, that James fella. :wink:
by chulett
Thu Sep 08, 2011 6:06 pm
Forum: General
Topic: validating number of files
Replies: 14
Views: 3262

As am I. Note that I put 'single' in quotes on purpose as you can run multiple commands from ExecSH with proper statement terminators. For example: first_command && second_command I'll routinely do something like that to first cd to a directory and then run commands on the contents of that d...
by chulett
Thu Sep 08, 2011 11:37 am
Forum: General
Topic: validating number of files
Replies: 14
Views: 3262

If all your script does is execute a 'single' command then there's no need for a script, just execute it directly via ExecSH.
by chulett
Thu Sep 08, 2011 9:06 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to compare Two Timestamps
Replies: 5
Views: 2246

It sounds like you've got your timestamps backwards. Look for other functions to convert the result to a time, they are all documented so you shouldn't really need someone else to look them up for you.
by chulett
Thu Sep 08, 2011 8:49 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: sequential file warning
Replies: 2
Views: 1069

For a fixed-width sequential file column, how else would you represent it?
by chulett
Thu Sep 08, 2011 7:44 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to compare Two Timestamps
Replies: 5
Views: 2246

Start with SecondsSinceFromTimestamp().
by chulett
Thu Sep 08, 2011 6:59 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Trim of varchar
Replies: 6
Views: 3026

You can still have trailing characters (including spaces) in a varchar that need to be removed, but don't fall into the trap of trying to trim trailing spaces from a char.
by chulett
Thu Sep 08, 2011 6:56 am
Forum: General
Topic: To get the logs for all the jobs
Replies: 4
Views: 1386

Yes, several. Let's start with the standard response: search the forums for ETLStats, a package that Kim Duke gives away from his website. You'll also find other discussions on rolling your own using either the DSGet* functions or their dsjob equivalents, depending on where you want to implement thi...
by chulett
Wed Sep 07, 2011 10:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasets vs. Sequential File
Replies: 5
Views: 1731

Hmmm... I wonder what the heck I was thinking of then? :?
by chulett
Wed Sep 07, 2011 10:55 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Load all Hashed file into memory
Replies: 26
Views: 9620

I'm really curious what the goal is here and I'm wondering if all this curious energy isn't being misdirected. I get the impression you may not understand the use of "shared cache"... from what I recall from my play time with it many years ago, it is a way to cache hashed files into memory...
by chulett
Wed Sep 07, 2011 5:36 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datasets vs. Sequential File
Replies: 5
Views: 1731

Or perhaps it's new in the 8.x world... or perhaps I was wrong. From memory, I thought that you were not allowed to append to datasets.
by chulett
Wed Sep 07, 2011 5:31 pm
Forum: General
Topic: SQL Server 2008
Replies: 2
Views: 1311

Clarify what you mean by from "DataStage Sequence". What exactly are you running and how exactly are you running it?
by chulett
Wed Sep 07, 2011 12:57 pm
Forum: General
Topic: migration from 7.5 to 8.5
Replies: 3
Views: 1154

The product ships with a Migration Guide, everything you need to know should be in there.
by chulett
Wed Sep 07, 2011 12:56 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Updating Table with millions of records
Replies: 5
Views: 1998

Other than doing conventional updates, your non-plsql option (unless something new has come along I haven't heard of yet) is to leverage Oracle's MERGE functionality, which is basically their "upsert". Bulk load your changes as inserts into a work table and then issue the "merge"...