Search found 42189 matches

by chulett
Tue Jan 30, 2007 8:28 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reference link get the first row of the reference table
Replies: 29
Views: 4178

This is exactly why I asked you to post your sql. by the way, the reference table is from a SQL Select statement like . SELECT RA_HCUSTOMERS.CUSTOMER_ID, RA_HCUSTOMERS.CUSTOMER_NUMBER, RA_ADDRESSES_MORG.ADDRESS_ID FROM RA_HCUSTOMERS, RA_ADDRESSES_MORG WHERE RA_ADDRESSES_MORG.PARTY_ID (+) = RA_HCUSTO...
by chulett
Tue Jan 30, 2007 8:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How can i inport a dll in datastage designer
Replies: 10
Views: 3728

Re: How can i inport a dll in datastage designer

PeterPol wrote:But they (IBM) have told me that I can use external dll's in Designer without using the original source.....

Did they not also tell you how to do this? :?
by chulett
Tue Jan 30, 2007 8:21 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Date subtraction into seconds
Replies: 7
Views: 1332

You could also find any post by kcbland register at his site and download their free utilities. One of which does this timestamp difference.
by chulett
Mon Jan 29, 2007 11:40 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Reference link get the first row of the reference table
Replies: 29
Views: 4178

Post your Oracle reference SQL. Is it generated or user defined?
by chulett
Mon Jan 29, 2007 5:26 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle Control M Character
Replies: 17
Views: 5321

ray.wurlod wrote:Last time I looked (7.5.1), "DOS format" was not available for record delimiter when running on UNIX platform. Otherwise I would have cited that as the appropriate technique.

Wasn't that what I quoted from the Developer's Guide? :?
by chulett
Mon Jan 29, 2007 3:14 pm
Forum: General
Topic: receiving notification when a job fails
Replies: 7
Views: 3235

I observed that as well and didn't feel it was relevant. Is not the General forum where (amongst other things) Sequence job questions are 'supposed' to go? Maybe we need a 'Sequence' job type choice...

Roy, feel free to snip all the chit chat when you move this - where ever it ends up. :wink:
by chulett
Mon Jan 29, 2007 2:54 pm
Forum: General
Topic: receiving notification when a job fails
Replies: 7
Views: 3235

Nothing parallel about this question.

(does Roy even care where we say to move them? I would guess he just uses his own good judgement [I do Both])
by chulett
Mon Jan 29, 2007 1:08 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: How to handle Control M Character
Replies: 17
Views: 5321

^M is a <CR> and indicates DOS style record terminators.
by chulett
Mon Jan 29, 2007 12:55 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Purging logs
Replies: 9
Views: 2124

Yes. You can. Go to DS Administrator, select your project and click on the "Properties" button. In first tab "General", you can specify the purge settings you want. Both of you making this suggestion fail to note that it is only applied to new jobs created after the 'global' change. It doesn't auto...
by chulett
Mon Jan 29, 2007 11:17 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage date in sql query
Replies: 10
Views: 5415

DSJobStartDate would, perhaps, be a better choice. :wink:
by chulett
Mon Jan 29, 2007 10:22 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Job parallel error
Replies: 2
Views: 975

An Exact match search for "check that 'gdb' and 'sed' are installed and on your PATH" gets me 8 hits, suggest you go through them, see if any help.
by chulett
Mon Jan 29, 2007 10:02 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: datastage date in sql query
Replies: 10
Views: 5415

Re: datastage date in sql query

I don't want to use the oracle sysdate date because our database server have a dummy date. I don't even want to know what that means. You've basically got it, just need the to_date: SELECT ROWID, TO_CHAR(DATA_LOAD, 'YYYY-MM-DD HH24:MI:SS') FROM Table_Employee where data_load > TO_DATE('...
by chulett
Mon Jan 29, 2007 9:29 am
Forum: General
Topic: Pass Parameters through Autosys to DS
Replies: 9
Views: 8223

How are you getting the filenames now? If it is some flavor of automagic, won't it simply pick up with the last file it failed on? :?
by chulett
Mon Jan 29, 2007 7:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Calling stored procedure.
Replies: 14
Views: 7848

I'm just curious... are you doing this as a learning exercise? Is that just a made up example or the actual SP you are trying to run? :?

I'm wondering why you wouldn't simply encapsulate the 'functionality' of that SP directly into your job?
by chulett
Mon Jan 29, 2007 12:23 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed File Problems with large record set
Replies: 10
Views: 1868

The hash file is a lookup of itself. I don't know about anyone else, but I'd appreciate a clarification as to what this statement means. The 'trim' would help get past the classic 'lookup doesn't work' problem - the keys don't match because of extraneous whitespace in one or both values. People loa...