Search found 42189 matches

by chulett
Thu Jul 21, 2011 2:24 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Corrupted hashed files after server crash
Replies: 7
Views: 5219

And in my experience I've found them to be quite resilient and really only saw "corruption" for issues like (lack of) disk space, going over the dreaded 2GB barrier with 32bit addressing or by writing funky data to them. Otherwise, solid. Like I said, different strokes.
by chulett
Thu Jul 21, 2011 11:46 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Lookup failing on table with 260k rows
Replies: 2
Views: 864

Post your actual unedited error message.
by chulett
Thu Jul 21, 2011 10:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Corrupted hashed files after server crash
Replies: 7
Views: 5219

When you create the hashed file/s you are better off deleting and recreating them (if possible) for this (amongst other) reason. Whereas in my experience, deleting and recreating them each time has been at the root of this issue. I tended to stick with "Clear" unless I had a good reason t...
by chulett
Thu Jul 21, 2011 10:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Corrupted hashed files after server crash
Replies: 7
Views: 5219

daignault wrote:Backing up a Type30 causes the ".Type30" to go missing.
That would depend entirely on how one backs it up, yes? :wink:
by chulett
Thu Jul 21, 2011 10:37 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Problem loading Date Fields to DB2 from Oracle
Replies: 6
Views: 6066

My first question (as one that is not a DB2'er) would be - what does a DB2 date need to look like? And what DB2 stage are you using?
by chulett
Thu Jul 21, 2011 7:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need Logic
Replies: 3
Views: 1421

I would look into setting up the data so you could then perform a horizontal pivot. For example:

1,gg,3 -> 1,gg,3,gg,3,gg,3
2,hh,2 -> 2,hh,2,hh,2

Set up the max number of columns and then pivot the result.
by chulett
Wed Jul 20, 2011 10:35 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Connecting Excel ODBC failed
Replies: 5
Views: 3037

From what I recall, they would need to be System DSNs.
by chulett
Wed Jul 20, 2011 3:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Need help on grouping and selecting the first record
Replies: 7
Views: 1840

There should be a NullToEmpty() transform and perhaps a NullToValue() one as well, wrap each element that could be null with one. An empty string will work fine whereas a null will not, that or another value that won't show up on its lonesome in your data - I've used a '?' or a '*' in the past to ma...
by chulett
Wed Jul 20, 2011 3:50 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle Enterprise stage error
Replies: 1
Views: 648

Post the actual, unedited errors.
by chulett
Wed Jul 20, 2011 3:48 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: sql server NVARCHAR
Replies: 4
Views: 2630

Do we get any clues as to the nature of the problem?
by chulett
Wed Jul 20, 2011 3:47 pm
Forum: General
Topic: Scheduling the dependant jobs from different projects
Replies: 2
Views: 819

... make sure you use one of the wait options, "-jobstatus" would be preferred here in my humble opinion.
by chulett
Wed Jul 20, 2011 9:51 am
Forum: General
Topic: Command line interface to multiple job compile?
Replies: 2
Views: 1375

The compiler is dscc and an exact search here for that will turn up the syntax and issues people have seen with it.
by chulett
Wed Jul 20, 2011 8:13 am
Forum: General
Topic: Removing user from datastage
Replies: 3
Views: 1223

In your version they are just UNIX users, so remove the user from the DataStage server.
by chulett
Wed Jul 20, 2011 7:15 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Oracle connector
Replies: 4
Views: 4375

After SQL would be too late.

You need to look into the following APT variables:

$APT_ORAUPSERT_COMMIT_TIME_INTERVAL
$APT_ORAUPSERT_COMMIT_ROW_INTERVAL
by chulett
Wed Jul 20, 2011 7:09 am
Forum: General
Topic: DSGetLastErrorMsg
Replies: 1
Views: 1153

Read the definition of that particular function, it is not for gathering log information but rather for checking the return value of other function calls.

What exactly are you trying to accomplish? If you are trying to retrieve information from job logs, there are other specific functions for that.