Search found 42189 matches

by chulett
Fri Jul 14, 2006 7:07 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: CRC Info
Replies: 14
Views: 4751

You will get a unique number (checksum) for each input. This is used for several purpose, for example, duplicate check, dedupliacation, Surrogate key generation, lookup.... You can easily get more information by doing a search on the same keyword. A unique number fo each input? Nope. Useful for sur...
by chulett
Fri Jul 14, 2006 7:03 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Transforming a delimited file into a non delimited file
Replies: 10
Views: 1563

A 'nondelimited one field file' could also be generated as a 'Fixed Width' file simply by checking that option. Same thing. You'll still need to set the quote character to '000'.

Or as noted, specifically concatenate all fields into one big one.
by chulett
Fri Jul 14, 2006 6:57 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Runnig a script in datastage
Replies: 17
Views: 4144

mdtauseefhussain wrote:i tried with concatenating %h%m%s

Yes, exactly - case sensitive. Who said anything about using '%h%m%s'? :P
by chulett
Fri Jul 14, 2006 6:54 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Dynamic File
Replies: 4
Views: 1184

Re: Dynamic File

It is working fine ,but i try to open or to move the file i am getting the error Encountered 1 error during the transfer How exactly are you 'opening' or 'moving' the file? At this point you are done with DataStage so you need to take your problem to your SAs, your SysAdmins. Tell them what's going...
by chulett
Thu Jul 13, 2006 11:23 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use the new value as job parameter for a loop
Replies: 15
Views: 5309

Does the date need to be a job parameter? Or can the counter be the job parameter and you use it to lookup the date inside the job? If it needs to be a parameter, then look into the User Variables Stage and its documentation - that's exactly what it's for. Or write a job that takes the counter and l...
by chulett
Thu Jul 13, 2006 11:17 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Invocation ID
Replies: 21
Views: 3718

Do i need to select multiple instance for the two jobs along with the sequencer If the same job (of any type, server or sequence) needs to run more than one 'copy' at a time, then you need to 'select multiple instance' for it... whatever 'it' is. how to pass the parameters to the job. Have you trie...
by chulett
Thu Jul 13, 2006 11:09 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Runnig a script in datastage
Replies: 17
Views: 4144

mdtauseefhussain wrote:I need to concatenate time stamp along with the date

If you are trying to say that you don't know how to add a time portion to the already provided date solutions, it's just this:

Code: Select all

%H%M%S
by chulett
Thu Jul 13, 2006 10:56 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: use the new value as job parameter for a loop
Replies: 15
Views: 5309

How exactly have you done what you have done? Meaning how / where is this loop implemented? That will help drive the answers. If you are using the Loop stages in a Sequence job, why not pass in the current counter value as a parameter and use it against a hashed file that contains the 'BeginDate' fo...
by chulett
Thu Jul 13, 2006 9:43 pm
Forum: Site/Forum
Topic: Ascential DeveloperNet sunsetting this month
Replies: 20
Views: 10678

Guess the banishee just needs to outlive the banishers. :wink:
by chulett
Thu Jul 13, 2006 8:59 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: MS SQLSERVER stored procedure with message causing error
Replies: 4
Views: 2498

kcbland wrote:I'm an idiot, never mind, it's only for Oracle.

While the original version only supported Oracle, the version in 7.5.1A supports Oracle, DB2 and Sybase. So still no SQL-Server but not just Oracle no more. :wink:
by chulett
Thu Jul 13, 2006 8:47 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Datastage career question. Please advise.
Replies: 8
Views: 2351

Either Ray is a fan of Phil Mickelson... or he just said a dirty word - just ask him! :wink:
by chulett
Thu Jul 13, 2006 8:43 pm
Forum: Site/Forum
Topic: Ascential DeveloperNet sunsetting this month
Replies: 20
Views: 10678

Ascential DeveloperNet sunsetting this month

In case people weren't aware or hadn't noticed it on their 'front page': THE ASCENTIAL DEVELOPERNET WEB SITE WILL BE SUNSET AT THE END OF JULY 2006. THE CONTENT OF THESE FORUMS WILL BE MIGRATED TO THE IBM DEVELOPERWORKS USER FORUMS. REGISTRATION TO IBM DEVELOPERWORKS IS FREE OF CHARGE. TO ENSURE UNI...
by chulett
Thu Jul 13, 2006 8:39 pm
Forum: Enhancement Wish List
Topic: Configurable checkpoint and restart behaviour
Replies: 5
Views: 3302

Why would you post your Sequence job code? For the points? If anyone wants to see something like that, simply check the 'Code' tab of any Sequence job in your library. And I agree with Ray - it's generated code for goodness sake, not all that pretty but certainly not 'out of control'. Or all that ha...
by chulett
Thu Jul 13, 2006 11:38 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: slow changing dimensions Type 2
Replies: 22
Views: 6022

You... could. It (the database work) would run much slower, however, so keep that in mind. All that really buys you that I can see is the fact that your hashed file would be in sync with your database in the event of an abort, and it changes your restart/recovery process. I prefer to not do it that ...
by chulett
Thu Jul 13, 2006 10:51 am
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: slow changing dimensions Type 2
Replies: 22
Views: 6022

There's no reason to 'commit for each insert'.