Search found 42189 matches

by chulett
Thu Jul 12, 2007 7:08 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: How to fined remove duplicate data?
Replies: 6
Views: 2026

Please post in the correct forum, this is not certainly not a FAQ. Guys - either ask someone to post in the correct forum and then move on or just provide the answers. Doing both doesn't incent any kind of corrective behaviour. I'd suggest you inform them they are in the wrong forum and let them kn...
by chulett
Thu Jul 12, 2007 7:00 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Infinite loop implementaion in Server Job
Replies: 8
Views: 1876

Re: Infinite loop implementaion in Server Job

ArijitS wrote:I want to design a job with infinite loop.

No, you don't. Why don't we start by you explaining the problem you are trying to solve instead?
by chulett
Thu Jul 12, 2007 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Wait-for-file should run continuously
Replies: 19
Views: 6809

First thought - the concept of anything running 'continuously' was dropped in the last handful of posts made in 2006 so there really isn't any problem here to solve. I understand we're off to 'What If' land, however. Secondly, there's no 'exclusive lock' that I recall. You can open up and purge the ...
by chulett
Wed Jul 11, 2007 11:51 pm
Forum: General
Topic: DSN in UNIX for using in ODBC Stage
Replies: 6
Views: 2492

Sorry, I was thinking of another stage. If you click on the Help button and then on the DSN on the help page, it will tell you where those values must be defined:

This lists all the ODBC data sources defined in the Windows registry for Windows servers or the uvodbc.config file for UNIX servers.
by chulett
Wed Jul 11, 2007 11:45 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Surrogate Key Assignment
Replies: 16
Views: 21218

More of a 'reset' than a 'set', per se, but perhaps it will help:

Code: Select all

UPDATE SDKSequences USING DICT VOC SET F1 = '?' WHERE @ID = 'YourSequenceName';

YourSequenceName is the 'key' to reset.

? is the value to reset it to.
by chulett
Wed Jul 11, 2007 7:34 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding Job Parameters to All Jobs
Replies: 6
Views: 1166

Hmm... ok, didn't realize that. Will Parameter Navigator do what the OP asks?
by chulett
Wed Jul 11, 2007 5:21 pm
Forum: Site/Forum
Topic: Poll Ideas
Replies: 18
Views: 9593

eostic wrote:This software is capable of polls, I believe.

Yes, definitely. And I tease Roy about this at times, because he is our resident Poll King. :wink:
by chulett
Wed Jul 11, 2007 12:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Timestamp Comparision
Replies: 3
Views: 1687

Get them into ISO format - depending on if they have a time component or not, either:

YYYY-MM-DD
YYYY-MM-DD HH24:MI:SS

One or the other, not a combination. Then they can be compared directly using your normal operators.
by chulett
Wed Jul 11, 2007 11:52 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: RIGHT/LEFT Justify
Replies: 8
Views: 4966

I want the fields to be stored in the database as right justified... Um... why? One generally doesn't worry about 'justification' inside a database. Perhaps if we were talking about a flat file with specific requirements on string fields, but since we're not... You need to do this or just want to d...
by chulett
Wed Jul 11, 2007 10:44 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Adding Job Parameters to All Jobs
Replies: 6
Views: 1166

Parameter Manager.

The KBA Job Control Utilities.
by chulett
Wed Jul 11, 2007 8:34 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Exposing jobs to webservice
Replies: 6
Views: 1511

Seems to me there's a difference between 'exposing jobs' to a Web service versus as a Web service, yet you've seemed to use both interchangeably. Which of the two are you actually asking about? Or is it both?
by chulett
Wed Jul 11, 2007 8:31 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File stage
Replies: 11
Views: 2800

That can work as well. I tend to forget out the 'Link' stages, the Collector will allow the creation of your single writer process. I find the extra overhead of needing to use the 'Sort/Merge' option if you care about the output order to not be worth it, however. But that's a personal preference. Us...
by chulett
Wed Jul 11, 2007 8:22 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Way to implement queries btw two different source systems
Replies: 5
Views: 1076

Well... there you go. 8)
by chulett
Wed Jul 11, 2007 8:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File stage
Replies: 11
Views: 2800

That's what I was afraid of. You need to understand that sequential files need to be accessed sequentially, it's the nature of the beast. This means while a sequential file can support multiple reader processes, it can only support a single writer process. This is not a 'DataStage restriction', it i...
by chulett
Wed Jul 11, 2007 7:32 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Sequential File stage
Replies: 11
Views: 2800

Not nearly enough information. :?

How did you setup the stage to 'read 4 files'?