Search found 42189 matches

by chulett
Fri Jun 29, 2012 5:31 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Issue deleting account-based hashed file
Replies: 3
Views: 1823

Similar != same. Please start a new post when you have an issue. ps. I've split you out and linked you back to the post you chose.

Delete the underlying assets as well, the Dictionary file you noted and the hashed file itself.
by chulett
Fri Jun 29, 2012 3:22 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Seeking a best solution in DataStage
Replies: 28
Views: 22304

Please don't encourage him.

:wink:
by chulett
Fri Jun 29, 2012 3:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Record Formation
Replies: 3
Views: 1544

So... what are your thoughts on this? What have you tried so far? To me it looks like a normal horizontal pivot with an extra check for repeated values that should be constrained out of the flow. All except for the last one where it makes it look like you need to sort the output before the duplicate...
by chulett
Fri Jun 29, 2012 8:32 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not locate operator definition, wrapper
Replies: 12
Views: 4928

I'll be the first to admit I have zero experience with SQL Server and I don't see any documentation for that stage in my 8.5 docs. However, it certainly couldn't hurt to try whatever you'd like to try to see if it helps. Hopefully someone familiar with SQL Server access on a UNIX server can chime in...
by chulett
Fri Jun 29, 2012 8:07 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not locate operator definition, wrapper
Replies: 12
Views: 4928

As noted, I do not believe there is an SQL Server stage in a UNIX DataStage server which is further confirmed by your error message: "Operator sqlsrvrread does not exist in the registry". You'll need to remove whatever remains of that stage from the job and replace it with whatever would w...
by chulett
Fri Jun 29, 2012 7:23 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Could not locate operator definition, wrapper
Replies: 12
Views: 4928

The point being made is that there is no SQL Server stage equivalent on the UNIX side, it is a Windows only product. You'll need to use a different stage, like ODBC.
by chulett
Fri Jun 29, 2012 7:19 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: warning
Replies: 6
Views: 5358

Why do we have two topics on this one issue? :?

:!: Pick one and stick with it. If we continue to thrash back and forth, I'll lock one. Eeny... Meeny... Miny...
by chulett
Fri Jun 29, 2012 7:17 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fixed width
Replies: 8
Views: 2564

<corrected>
by chulett
Fri Jun 29, 2012 7:14 am
Forum: General
Topic: Resetting Jobs From Command Prompt
Replies: 5
Views: 2951

Yes, one of the dsjob run modes is RESET.
by chulett
Thu Jun 28, 2012 3:18 pm
Forum: IBM<sup>®</sup> Infosphere DataStage Server Edition
Topic: Hashed file cleanup
Replies: 2
Views: 1525

You don't need to clear them, any deleted hashed files will simply be recreated the next time the job runs that writes to them. Yes, even if that option isn't specifically checked.
by chulett
Thu Jun 28, 2012 1:06 pm
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: fixed width
Replies: 8
Views: 2564

You can't use VARCHAR in a fixed-width file, it maketh no sense. Switch it to a CHAR.
by chulett
Thu Jun 28, 2012 10:26 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Carriage Return in transformer
Replies: 3
Views: 1583

Leave it blank, which (essentially) makes it a constant.
by chulett
Thu Jun 28, 2012 9:48 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Using Carriage Return in transformer
Replies: 3
Views: 1583

Stage variable svCR, set Intial Value to CHAR(13) and then concatenate the stage variable into your strings. You sure you don't need a LF or CR/LF pair instead?
by chulett
Thu Jun 28, 2012 9:01 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header and trailer records
Replies: 3
Views: 1557

You can use those functions as long as you are careful of the partitioning. Or read the record as one long string and parse out the individual fields after stripping the header/footer records, perhaps with a substring check.
by chulett
Thu Jun 28, 2012 7:42 am
Forum: IBM<sup>®</sup> DataStage Enterprise Edition (Formerly Parallel Extender/PX)
Topic: Header and trailer records
Replies: 3
Views: 1557

Typically one would do that by recognizing them and not passing them out via a constraint. Usually the first few characters can identify them, is that the case for you?